CLI Command Reference

Every tracely360 command, grouped by intent. All commands are callable from your AI coding assistant as a slash command (/tracely360 …) and directly from the terminal (tracely360 …).

Build the graph

The AST pass always runs locally; the semantic pass uses your AI assistant's model API.

/tracely360
/tracely360 ./raw
/tracely360 ./raw --update
/tracely360 ./raw --mode deep
/tracely360 ./raw --cluster-only
/tracely360 ./raw --no-viz
/tracely360 ./raw --watch

Query the graph

Query commands work both from your AI assistant (slash command) and directly from the terminal — no assistant needed.

/tracely360 query "what connects attention to the optimizer?"
/tracely360 query "..." --dfs
/tracely360 query "..." --budget 1500
/tracely360 path "DigestAuth" "Response"
/tracely360 explain "SwinTransformer"
# Same commands from terminal (no assistant needed):
tracely360 query "show the auth flow"
tracely360 query "..." --graph path/to/graph.json

Add external sources

URL fetching is restricted to http/https, size- and time-bounded, and runs through containment checks.

/tracely360 add https://arxiv.org/abs/1706.03762
/tracely360 add https://x.com/karpathy/status/...
/tracely360 add https://... --author "Name"
/tracely360 add https://... --contributor "Name"

Export

/tracely360 ./raw --wiki
/tracely360 ./raw --obsidian
/tracely360 ./raw --svg
/tracely360 ./raw --graphml
/tracely360 ./raw --neo4j
/tracely360 ./raw --neo4j-push bolt://localhost:7687
/tracely360 ./raw --mcp

Keep the graph fresh

Git hooks auto-rebuild the AST graph after every commit and checkout. Works with Husky and custom core.hooksPath.

tracely360 hook install
tracely360 hook uninstall
tracely360 hook status
tracely360 watch

AI assistant installers

Each installer sets up the /tracely360 slash command for that platform. Matching uninstall commands exist for all.

tracely360 claude install
tracely360 codex install
tracely360 vscode install
tracely360 cursor install
tracely360 aider install
tracely360 opencode install
tracely360 claw install
tracely360 droid install
tracely360 gemini install
tracely360 trae install
tracely360 kiro install
tracely360 hermes install
tracely360 antigravity install

Optional extras & MCP server

pip install tracely360[mcp]
pip install tracely360[pdf]
pip install tracely360[video]
pip install tracely360[neo4j]
pip install tracely360[watch]
pip install tracely360[leiden]
pip install tracely360[all]
python -m tracely360.serve

Slash command vs CLI

All /tracely360 commands run inside your AI assistant and benefit from the assistant's context. The same commands as tracely360 … run directly in your terminal with no assistant in the loop — useful for scripting, CI/CD, and exploring the graph independently.