Loading...
Loading...
Query the code graph database to understand component relationships, dependencies, and change impact. Use when the user asks to "find callers", "check dependencies", "what uses this", "show relationships", "find serializers", or when reading code and needing to understand what depends on a component before modifications.
npx skill4agent add davila7/claude-code-templates graph-query# Install graph tools
git clone https://github.com/23blocks-OS/ai-maestro-plugins.git
cd ai-maestro-plugins && ./install-graph-tools.shRead file -> Query graph -> Then proceed| Command | Description |
|---|---|
| Describe a component or function |
| Find all callers of a function |
| Find all functions called by this function |
| Find related components |
| Find all components of a type |
| Find serializers for a model |
| Find model associations |
| Find call path between functions |
| Command | Description |
|---|---|
| Index or update the code graph |
graph-find-by-type.shmodelserializercontrollerservicejobconcerncomponenthook# After reading a model file
graph-describe.sh User
graph-find-serializers.sh User
graph-find-associations.sh User
# Before modifying a function
graph-find-callers.sh process_payment
graph-find-callees.sh process_payment
# Find call chain between components
graph-find-path.sh handleRequest sendResponse
# Index your codebase
graph-index-delta.sh /path/to/project