Skip to main content
tx-autonomy-controls Configure gates, guards, labels, verification, and retrospectives for bounded autonomy. Use when working in Codex and the user needs tx commands from this area.
跳到安装 Skills Marketplace 发现并探索由社区构建的 Agent Skills
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/jamesaphoenix/tx --skill tx-autonomy-controls命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
下载 Zip 下载中... 同仓库更多 Skills Turn a design spec into an explicit tx task graph with `tx decompose`, then refine the graph using normal tx task and dependency primitives.
Generate a detailed design document via `tx doc add design`. Covers architecture, interfaces, data model, invariants, failure modes, verification, and testing strategy. References plan via file path instead of embedding. Plan lives in ~/.claude/plans/<name>.md. Reads companion PRD automatically to map EARS requirements to invariants. Output lands in specs/design/<name>.md.
Generate a system overview spec via `tx doc add overview`. Produces an architectural overview covering problem, scope, components, data flows, and non-goals. References plan via file path instead of embedding. Plan lives in ~/.claude/plans/<name>.md. Output lands in specs/<name>.md with tx-managed frontmatter.
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 show
tx auto verify run <task-id>
tx auto gate status
Included Commands
tx auto: Bounded autonomy primitives
tx auto gate: Human-in-the-loop phase gates
tx auto guard: Task creation limits
tx auto label: Ready queue scoping labels
tx auto reflect: Session retrospective
tx auto verify: Machine-checkable done criteria
tx gate: Phase gates (approval checkpoints, pin wrapper)
tx gate approve: Approve a phase gate
tx gate check: Check gate approval state
tx gate create: Create a phase gate
tx gate list: List all gates
tx gate revoke: Revoke a phase gate
tx gate rm: Remove a gate
: Show gate state
tx gate status
tx guard: Task creation guards
tx guard clear: Clear guards
tx guard set: Set task creation guards
tx guard show: Show current guard configuration
tx label: Label management
tx label add: Create a label
tx label assign: Assign a label to a task
tx label delete: Delete a label
tx label list: List all labels
tx label remove: Delete a label (alias for "tx label delete")
tx label unassign: Remove a label from a task
tx reflect: Session retrospective
tx verify: Machine-checkable verification
tx verify clear: Remove verify command
tx verify run: Run verification
tx verify set: Attach a verify command
tx verify show: Show verify command
Full Help
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 rg command with an explicit directory
avoid partial paths like node_modul or unterminated quotes
replace grep -r with rg -n unless rg is unavailable
replace broad find probes with rg --files when you are really locating source files