Skip to content

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")
ParameterTypeDefaultDescription
querystringrequiredPlain English question about the codebase
Query patternRoutes to
”what calls X” / “who uses X”code_callers
”find X function” / “show X class”code_searchcode_get
”project structure” / “overview”code_structure or code_summary
”where is env var X”code_env
”what does X call”code_callees
  • 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