What problem does it solve?
PROACTIVELY query the code graph database to understand relationships and impact of changes. Use this skill WHEN READING any file to understand context, when searching for files, when exploring the codebase, or when you need to understand what depends on a component. This is your primary tool for understanding code structure and avoiding breaking changes.
Core Features & Use Cases
- Immediate graph queries: After reading a code file, IMMEDIATELY query the graph to understand:
- What is this component/function?
- What depends on it? (callers, serializers, child classes)
- What does it depend on? (callees, parent classes, associations)
- Impact analysis: Surface callers, serializers, and associations to prevent breaking changes.
- Use Case: While exploring a module, run graph queries to map relationships before editing the code.
Quick Start
After reading app/models/user.rb, IMMEDIATELY run:
graph-describe.sh User
graph-find-callers.sh User
graph-find-serializers.sh User
graph-find-associations.sh User