tracer
Installation
SKILL.md
Tracer
Systematic code exploration that builds understanding incrementally by tracing execution paths and mapping dependencies, rather than randomly reading files. Start at a known entry point and follow connections outward, building a map as you go.
Workflow
1. Identify the Entry Point
What's the starting location? An API endpoint, a function call, a config file, a user action. Be specific — "the auth system" is too vague; POST /api/auth/login is an entry point.
2. Read the Entry Point
Understand what it does. Note every outgoing call or dependency.
3. Choose a Branch
Pick the most relevant outgoing connection to follow. Don't try to trace everything at once — choose the branch most likely to answer the question.