-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSE_MANIFEST.toml
More file actions
72 lines (56 loc) · 1.52 KB
/
SE_MANIFEST.toml
File metadata and controls
72 lines (56 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# ============================================================
# SE_MANIFEST.toml (Repository Declaration)
# ============================================================
schema = "se-manifest-2"
# === Identity ===
[meta]
# WHY: Minimal metadata; versioned separately via Git tags
name = "se-admin"
org = "structural-explainability"
status = "active"
version = "0.1.1"
[repo]
# WHY: Repo identity is defined structurally
class = "admin"
summary = "Administrative tooling and automation for the SE ecosystem."
# === Structural contract ===
[depends]
# WHY: Constitution is the root; no upstream dependencies
optional = []
required = ["se-constitution"]
[provides]
# WHY: Explicit artifact ownership (core to this repository)
artifacts = [
"scaffold",
"sync",
"validation-orchestration",
"workflows",
]
[scope]
# WHY: Keep this tight and structural
includes = [
"repository scaffolding",
"configuration propagation",
"cross-repository validation execution",
"shared workflow definitions",
]
excludes = [
"definition of structural primitives",
"definition of validation rules",
"domain semantics",
]
[validation]
entrypoint = "se_admin.cli:main"
# === Behavior / governance ===
[naming]
# WHY: Declares expected repo-family naming convention
pattern = "se-*"
[governance]
# WHY: Declares governing authority for this repository
authority = "structural-explainability"
# === External references ===
[citation]
cff = "CITATION.cff"
[traceability]
# WHY: Reserved for future identifier resolution
identifier_map = "none"