Trace
Claude Code plugin marketplace — skills, slash commands, and subagents for TypeScript tooling, codebase auditing, design exploration, and developer workflows
npx -y skills add fntune/skills --skill traceAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Map codebase dependencies with tree and reading order
SKILL.md
1.1 KB, 256 tokens by cl100k_base, as published. Nobody here has run it
/trace
Map codebase from entry points to leaves. Output dependency tree + numbered reading order.
Args
--entry-point- Start file (default: auto-detect main.py/app.py/index.ts)--filter- Limit to directory--depth- Max levels (default: unlimited)
Process
- Find entry points via Glob
- Extract imports via Grep (
^from|^import) - Build dependency graph
- Order: leaves first, entry points last
Output
Tree:
main.py
├── app.py
│ ├── handlers/api.py
│ │ └── agents/orchestrator.py
│ └── slack/events.py
└── config.py
Reading Order:
1. config.py settings
2. core/logging.py infrastructure
3. clients/bq.py external client
4. agents/base.py core logic
5. agents/bq/tools.py implementation
6. agents/orchestrator.py main agent
7. handlers/api.py HTTP layer
8. app.py entry point
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.