code-intelligence
SolidRoute codebase-structure questions (who calls X, where used, what imports, change-impact) to a code-graph first, grep fallback. Triggers 'who calls', 'where is this used', 'call graph'.
Install
Quality Score: 81/100
Skill Content
Details
- Author
- event4u-app
- Repository
- event4u-app/agent-config
- Created
- 3 months ago
- Last Updated
- today
- Language
- TypeScript
- License
- MIT
Bundled in these plugins
Similar Skills
Semantically similar based on skill content — not just same category
graphify
Use for tracing how code connects across files - "how does A reach B", "is there a route from X to Y", "what sits between these two modules", "what breaks if I change X" - and for orienting in an unfamiliar or large repo. Builds a queryable call/import graph once (graphify update), then answers with graphify path, affected, explain and query against that graph. Do NOT use when one bounded grep or one Read already answers the question, or on a repo small enough to read into context. Maps CODE structure, not agent workflows.
graphtrail
Use when answering structural code questions in an indexed repo - who calls this, what does this call, what breaks if I change it, what changed between two versions. Reach for it BEFORE grep whenever the question is about relationships between symbols rather than text. Triggers include "who calls", "what uses", "blast radius", "impact of changing", "callers of", "what depends on", and reviewing a diff's structural effect.
code-graph
AST-based code graph for fast symbol lookup, dependency analysis, and blast radius via codebase-memory-mcp MCP server