code_quick
code_quick accepts a plain English question and automatically routes it to the most appropriate code graph tool. Use it when you are not sure which tool to call, or when you want a single entry point for ad-hoc queries.
code_quick(query="what calls processPayment")code_quick(query="find the login function")code_quick(query="show the User class")code_quick(query="project structure")code_quick(query="where is the JWT secret read")Parameters
Section titled “Parameters”| Parameter | Type | Default | Description |
|---|---|---|---|
query | string | required | Plain English question about the codebase |
How routing works
Section titled “How routing works”| Query pattern | Routes to |
|---|---|
| ”what calls X” / “who uses X” | code_callers |
| ”find X function” / “show X class” | code_search → code_get |
| ”project structure” / “overview” | code_structure or code_summary |
| ”where is env var X” | code_env |
| ”what does X call” | code_callees |
When to use
Section titled “When to use”- Exploratory questions where you are not sure of the right tool
- Fast lookups during a coding session without context-switching
- Teaching AI agents to query the graph without memorizing tool names