You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .agents/skills/ctxt-antigravity-runtime/SKILL.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,7 @@ Use these commands first to inspect the shared contract and runtime surface:
29
29
30
30
```powershell
31
31
cargo run --bin ctxt -- --json self report
32
+
cargo run --bin ctxt -- --json startup readiness
32
33
cargo run --bin ctxt -- --json startup flow
33
34
cargo run --bin ctxt -- --json schema
34
35
cargo run --bin ctxt -- --json capabilities
@@ -98,6 +99,14 @@ The startup flow is a contract-only checklist. It does not run commands automati
98
99
99
100
Agents remain responsible for executing allowed commands one by one only when the active phase permits those commands. Use official docs only for architecture or best-practice claims.
100
101
102
+
# Startup Readiness Contract
103
+
104
+
Agents should call `ctxt --json startup readiness` before starting review workflow work.
105
+
106
+
Readiness is a contract-only report. It does not run commands automatically. `ready_for_review_workflow: true` does not imply external execution is allowed. `ready_for_external_execution: false` remains the hard boundary.
107
+
108
+
Use official docs only for architecture and best-practice claims.
Copy file name to clipboardExpand all lines: .agents/skills/ctxt-runtime/SKILL.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -64,6 +64,7 @@ Use these commands for safe, JSON-oriented runtime inspection:
64
64
65
65
```powershell
66
66
cargo run --bin ctxt -- --json self report
67
+
cargo run --bin ctxt -- --json startup readiness
67
68
cargo run --bin ctxt -- --json startup flow
68
69
cargo run --bin ctxt -- --json agent list
69
70
cargo run --bin ctxt -- --json agent discover
@@ -174,6 +175,14 @@ Agents should call `ctxt --json startup flow` to discover the safe session start
174
175
175
176
Agents remain responsible for executing allowed commands one by one only when the active phase permits those commands. Use official docs only for architecture or best-practice claims.
176
177
178
+
# Phase 5d Note
179
+
180
+
Phase 5d adds a deterministic startup readiness contract through `ctxt --json startup readiness`.
181
+
182
+
Agents should call `ctxt --json startup readiness` before starting review workflow work. Readiness is a contract-only report. It does not run commands automatically.
183
+
184
+
`ready_for_review_workflow: true` does not imply external execution is allowed. `ready_for_external_execution: false` remains the hard boundary. Use official docs only for architecture and best-practice claims.
185
+
177
186
# Cross-Agent Compatibility
178
187
179
188
Codex and Antigravity should both route through `ctxt`.
Copy file name to clipboardExpand all lines: docs/AGENT_RUNTIME_CLI.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -224,6 +224,16 @@ The startup flow is a contract-only checklist. It does not execute the flow, inv
224
224
225
225
External tools may use `ctxt --json startup flow` as a deterministic startup checklist. They remain responsible for executing allowed commands one by one only when the active phase permits those commands.
226
226
227
+
## Phase 5d Behavior
228
+
229
+
Phase 5d adds a deterministic startup readiness contract.
230
+
231
+
`ctxt --json startup readiness` returns a static readiness report for the deterministic review workflow. It reports that review workflow contracts are ready and that external execution remains disabled.
232
+
233
+
The readiness report is not an execution gate. It does not execute commands, invoke Codex CLI, invoke Antigravity CLI, invoke external agents, use network, execute subagents, apply proposals, apply review recommendations, or perform git writes.
234
+
235
+
External tools may use `ctxt --json startup readiness` to decide whether the deterministic review workflow is available. `ready_for_review_workflow: true` does not imply external execution is allowed; `ready_for_external_execution: false` remains the hard boundary.
236
+
227
237
## Future Phases
228
238
229
239
Later phases may add real Codex CLI or Antigravity CLI invocation behind explicit gates. Those phases should preserve the run artifact, keep JSON output machine-readable, and record provenance before and after external execution.
0 commit comments