docs: declare institutional architecture boundary

This commit is contained in:
2026-08-01 17:48:32 +02:00
parent 41287f12a6
commit c78deab5b5
2 changed files with 19 additions and 2 deletions
+6
View File
@@ -1,5 +1,11 @@
# GovOPlaN Encryption Codex Guide
## Documentation Contract
- Treat documentation as part of every behavior change. Update this module's manifest-driven `DocumentationTopic` contributions for affected user and administrator behavior.
- Keep feature content here; `govoplan-docs` projects it without importing Encryption internals.
- Maintain a static user/admin baseline and run `/mnt/DATA/git/govoplan/tools/checks/check-manifest-shapes.py` after behavior or manifest changes.
## Scope
This repository owns optional cryptographic platform capabilities: vaults, key
+13 -2
View File
@@ -7,6 +7,7 @@ from govoplan_core.core.modules import (
PermissionDefinition,
RoleTemplate,
)
from govoplan_core.core.provider_governance import declared_module_architecture
MODULE_ID = "encryption"
@@ -118,12 +119,22 @@ manifest = ModuleManifest(
"explicitly exported, or cryptographically deleted."
),
layer="available",
documentation_types=("admin",),
audience=("administrator", "security_officer", "product_owner"),
documentation_types=("admin", "user"),
audience=("user", "administrator", "security_officer", "product_owner"),
related_modules=OPTIONAL_DEPENDENCIES,
order=100,
),
),
architecture=declared_module_architecture(
layer="institutional_foundation",
kind="foundation",
maturity="scaffold",
documentation_ref="docs/ENCRYPTION_BOUNDARY.md",
known_limits=("No production key vault, protected-content persistence, rotation worker, or recovery ceremony is implemented yet.",),
owned_concepts=("key vault", "content-protection envelope", "cryptographic recovery ceremony"),
non_owned_concepts=("domain content", "resource ownership", "account authentication"),
security_docs=("docs/ENCRYPTION_BOUNDARY.md",),
),
)