name: "tx-observability-traces" description: "Inspect queue health, diagnostics, dashboards, run traces, and recent failures. Use when working in Claude Code and the user needs tx commands from this area." metadata: short-description: "Inspect queue health, diagnostics, dashboards, run traces, and recent failures."
tx Observability And Traces
Use when the user is debugging tx behavior, stalled runs, or dashboard/API status.
Quick Start
tx diag doctortx trace listtx trace errors
Included Commands
tx dashboard: Start API server + dashboard and open in browsertx diag: Diagnosticstx diag dashboard: Start API server + dashboard UItx diag doctor: Run system health checkstx diag stats: Show queue metrics and health overviewtx doctor: System health checkstx stats: Show queue metrics and health overviewtx trace: Execution tracing for debugging run failurestx trace errors: Show recent errors across all runstx trace heartbeat: Update run heartbeat statetx trace list: Show recent runs with event countstx trace show: Show metrics events for a runtx trace stalled: List or reap stalled running runstx validate is a deprecated alias for 'tx doctor'.
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