-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathroot_allowlist.yaml
More file actions
101 lines (101 loc) · 2.6 KB
/
Copy pathroot_allowlist.yaml
File metadata and controls
101 lines (101 loc) · 2.6 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
version: 1
canonical_tracked_entries:
- .clusterfuzzlite
- .devcontainer
- .env.example
- .github
- .gitignore
- .pre-commit-config.yaml
- AGENTS.md
- CHANGELOG.md
- CLAUDE.md
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- LICENSE
- NOTICE
- README.md
- SECURITY.md
- SUPPORT.md
- THIRD_PARTY_NOTICES.md
- apps
- contracts
- docs
- ops
- package-lock.json
- package.json
- packages
- pyproject.toml
- sitecustomize.py
- tests
- tooling
local_only_entries:
- .agents
- .env
- .runtime-cache
- .serena
local_only_tracking:
mode: fail-close
enforcement_target: git-tracked-surface
require_change_control_tracked_policy: true
entries:
- .agents
- .env
- .runtime-cache
- .serena
entry_purposes:
.agents: repo-local execution plans and governance control boards
.clusterfuzzlite: ClusterFuzzLite build and run entrypoints
.devcontainer: devcontainer and runtime image sources
.env: local-only runtime secret file that must remain untracked
.env.example: runtime env template
.github: CI workflows and automation
.gitignore: repository hygiene ignore contract
.pre-commit-config.yaml: local hook contract
.runtime-cache: the only repo-side runtime noise root
.serena: repo-local Serena caches and project metadata that must remain untracked
AGENTS.md: repo governance constitution
CHANGELOG.md: release history
CLAUDE.md: repo execution memory
CODE_OF_CONDUCT.md: public community behavior expectations
CONTRIBUTING.md: public contribution policy
LICENSE: repository license grant
NOTICE: public repository notice summary
README.md: public repo entry document
SECURITY.md: public security reporting policy
SUPPORT.md: public support boundary
THIRD_PARTY_NOTICES.md: third-party dependency and asset notices
apps: repo entry applications
contracts: machine-enforced contracts and governance truth
docs: repo-level human documentation
ops: operational collateral
package-lock.json: root workspace node lock
package.json: root workspace scripts
packages: domain/application/infrastructure/observability code
pyproject.toml: python package truth
sitecustomize.py: repo-wide Python runtime hygiene hook for machine-cache pycache redirection
tests: verification surfaces
tooling: scripts and tooling helpers
required_non_empty_dirs:
- apps
- contracts
- docs
- ops
- packages
- tests
- tooling
forbidden_runtime_roots:
- artifacts
- build
- coverage
- data
- dist
- htmlcov
- logs
forbidden_name_patterns:
- "*backup*"
- "*organized*"
- "*.log"
- "final*"
- "tmp*"
- "misc*"
- "demo*"