docs: declare institutional architecture boundary

This commit is contained in:
2026-08-01 17:48:40 +02:00
parent 303f1556c2
commit c433434570
2 changed files with 19 additions and 1 deletions
+13
View File
@@ -20,6 +20,7 @@ from govoplan_core.core.modules import (
PermissionDefinition,
RoleTemplate,
)
from govoplan_core.core.provider_governance import declared_module_architecture
from govoplan_core.core.views import CAPABILITY_VIEWS_RESOLVER, ViewSurface
from govoplan_core.db.base import Base
from govoplan_views.backend.db import models as view_models
@@ -311,6 +312,18 @@ manifest = ModuleManifest(
order=18,
),
),
architecture=declared_module_architecture(
layer="governance_accountability",
kind="presentation",
maturity="vertical_slice",
documentation_ref="README.md",
test_ref="tests/test_views.py",
known_limits=("A View filters presentation only; modules still vary in the granularity of announced surfaces.",),
owned_concepts=("view definition", "view revision", "view assignment", "view selection"),
non_owned_concepts=("authorization", "module navigation", "workflow definition", "dashboard layout"),
recovery_docs=("README.md",),
security_docs=("README.md",),
),
)