name: "tx-graph-utils" description: "Inspect graph anchors plus supporting utility and usage commands. Use when working in Codex and the user needs tx commands from this area." metadata: short-description: "Inspect graph anchors plus supporting utility and usage commands."
tx Graph And Utilities
Use when the user is repairing anchor graphs, checking CLI usage limits, or working with utility helpers.
Quick Start
tx graph:statustx graph:verifytx utils codex-usage
Included Commands
tx graph:invalidate: Manually invalidate an anchortx graph:pin: Pin an anchortx graph:prune: Hard delete old invalid anchorstx graph:restore: Restore a soft-deleted anchortx graph:status: Show graph health metricstx graph:unpin: Unpin an anchortx graph:verify: Verify anchor validitytx mcp-server: Start MCP servertx schema: Show machine-readable CLI command schemastx skills: Generate or sync installable tx skill bundlestx skills generate: Generate tx skill bundlestx skills sync: Sync generated tx skill bundles into a projecttx test:cache-stats: Show LLM cache statisticstx test:clear-cache: Clear LLM cache entriestx utils: Utility commands for external tool integrationtx utils claude-usage: Show Claude Code usagetx utils codex-usage: Show Codex usage
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