name: "tx-autonomy-controls" description: "Configure gates, guards, labels, verification, and retrospectives for bounded autonomy. Use when working in Codex and the user needs tx commands from this area." metadata: short-description: "Configure gates, guards, labels, verification, and retrospectives for bounded autonomy."
tx Autonomy Controls
Use when the user wants phase gates, verification hooks, or scoped ready queues.
Quick Start
tx auto guard showtx auto verify run <task-id>tx auto gate status
Included Commands
tx auto: Bounded autonomy primitivestx auto gate: Human-in-the-loop phase gatestx auto guard: Task creation limitstx auto label: Ready queue scoping labelstx auto reflect: Session retrospectivetx auto verify: Machine-checkable done criteriatx gate: Phase gates (approval checkpoints, pin wrapper)tx gate approve: Approve a phase gatetx gate check: Check gate approval statetx gate create: Create a phase gatetx gate list: List all gatestx gate revoke: Revoke a phase gatetx gate rm: Remove a gatetx gate status: Show gate statetx guard: Task creation guardstx guard clear: Clear guardstx guard set: Set task creation guardstx guard show: Show current guard configurationtx label: Label managementtx label add: Create a labeltx label assign: Assign a label to a tasktx label delete: Delete a labeltx label list: List all labelstx label remove: Delete a label (alias for "tx label delete")tx label unassign: Remove a label from a tasktx reflect: Session retrospectivetx verify: Machine-checkable verificationtx verify clear: Remove verify commandtx verify run: Run verificationtx verify set: Attach a verify commandtx verify show: Show verify command
Full Help
Read references/commands.md for the full generated CLI help text for this skill's commands.
Search And Shell Fixes
When working in Codex, prefer rg -n <pattern> <path> and rg --files <path> over broad grep -r or fragile find pipelines.
If a shell/search command fails because of malformed flags, truncated paths, or broken quotes:
- rerun it as a smaller
rgcommand with an explicit directory - avoid partial paths like
node_modulor unterminated quotes - replace
grep -rwithrg -nunlessrgis unavailable - replace broad
findprobes withrg --fileswhen you are really locating source files