name: "tx-core-loop" description: "Work the main tx queue: initialize, create tasks, inspect work, claim tasks, and complete them. Use when working in Codex and the user needs tx commands from this area." metadata: short-description: "Work the main tx queue: initialize, create tasks, inspect work, claim tasks, and complete them."
tx Core Loop
Use when the user is setting up tx or moving normal task work through the queue.
Quick Start
tx ready --limit 1 --jsontx show <task-id>tx done <task-id>
Included Commands
tx add: Create a new tasktx bulk: Batch operations on multiple taskstx claim: Claim a task for a worker with a leasetx claim release: Release a claim on a tasktx claim renew: Renew the lease on a claimtx delete: Delete a tasktx done: Mark task completetx help: Show helptx init: Initialize task databasetx list: List taskstx ready: List ready taskstx reset: Reset task to ready statustx show: Show task detailstx update: Update a task
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