name: "tx-workers-runtime" description: "Operate workers, daemons, coordinators, cycle scans, and hook installation paths. Use when working in Claude Code and the user needs tx commands from this area." metadata: short-description: "Operate workers, daemons, coordinators, cycle scans, and hook installation paths."
tx Workers And Runtime
Use when the user is orchestrating background workers, cycle scans, or long-running runtime processes.
Quick Start
tx worker statustx coordinator statustx cycle --help
Included Commands
tx coordinator: Worker coordination primitivestx coordinator reconcile: Force reconciliation passtx coordinator start: Start the coordinatortx coordinator status: Show coordinator statustx coordinator stop: Stop the coordinatortx cycle: Cycle-based issue discovery with sub-agent swarmstx daemon: Background daemon for learning extractiontx daemon list: List tracked projectstx daemon process: Process JSONL files for learning candidatestx daemon promote: Promote a candidate to learningtx daemon reject: Reject a learning candidatetx daemon review: List pending learning candidatestx daemon start: Start the background daemontx daemon status: Show daemon statustx daemon stop: Stop the background daemontx daemon track: Track a project for learning extractiontx daemon untrack: Stop tracking a projecttx hooks:install: Install post-commit hooktx hooks:status: Show git hook statustx hooks:uninstall: Remove post-commit hooktx worker: Worker process managementtx worker list: List all workerstx worker start: Start a worker processtx worker status: Show worker statustx worker stop: Stop a worker process
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 Claude Code, 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