@@ -8,6 +8,54 @@ It is not intent filtering.
88It is not prompt hygiene.
99It is an ** execution boundary** .
1010
11+ ## Why this is different
12+
13+ Most AI safety and governance systems operate before or after execution:
14+ - intent filtering
15+ - prompt analysis
16+ - policy scoring
17+ - post-hoc review
18+ - logs, traces, and dashboards
19+
20+ Authority Before Execution enforces governance at the only irreversible moment:
21+ execution time.
22+
23+ If authority is not present, valid, and in scope at the moment of execution,
24+ the action does not happen.
25+
26+ Not warned.
27+ Not flagged.
28+ Not reviewed later.
29+
30+ Blocked.
31+
32+ ---
33+
34+ ## Execution-time authority boundary
35+
36+ User intent
37+ ↓
38+ Agent reasoning
39+ ↓
40+ Proposal
41+ ↓
42+ +-----------------------------+
43+ | Authority Gate |
44+ | (execution boundary) |
45+ | |
46+ | - authority present? |
47+ | - scope valid? |
48+ | - not expired? |
49+ +-------------+---------------+
50+ |
51+ +-----+-----+
52+ | |
53+ PERMIT BLOCK
54+ | |
55+ Execute No state change
56+ Artifact Artifact
57+ Trace Trace
58+
1159---
1260
1361## Release Status
@@ -18,7 +66,7 @@ It is an **execution boundary**.
1866- Execution behavior is frozen (non-breaking changes only)
1967- Demo video will show the execution boundary in action
2068
21- This version exists to be ** run, inspected, and verified** .
69+ This version exists to be run, inspected, and verified by judges .
2270
2371---
2472
@@ -161,6 +209,8 @@ If authority is:
161209
162210The state transition is ** blocked** , deterministically, every time.
163211
212+ This is governance that cannot be bypassed by reasoning, intent, or omission. Only explicit authority at execution time permits action.
213+
164214## Repository layout (minimal by design)
165215
166216- ` core/ `
@@ -175,3 +225,16 @@ The state transition is **blocked**, deterministically, every time.
175225---
176226
177227** Judges first. Enforcement proven. Evidence included.**
228+
229+ ## Who this is for
230+
231+ This system is for teams running autonomous or semi-autonomous systems
232+ where execution cannot rely on intent, warnings, or post-hoc review.
233+
234+ - Platform teams operating agentic systems in production
235+ - Security teams enforcing change control without human bottlenecks
236+ - Infrastructure teams eliminating approval queues and escalations
237+ - Enterprises that require fail-closed execution guarantees
238+
239+ Authority Before Execution does not replace human judgment.
240+ It prevents invalid work from ever reaching humans in the first place.
0 commit comments