Explore an Unfamiliar Codebase
Analyze the repository once:
nbx analyze .See the structure
Section titled “See the structure”nbx mapThe map groups code by functional communities and execution workflows, which is often more useful than starting from folders.
Search by behavior
Section titled “Search by behavior”nbx search "how authentication refresh works"Use a concrete behavior or task. Search returns the code paths and definitions that belong together.
Inspect the important symbol
Section titled “Inspect the important symbol”nbx def refreshTokennbx def shows the selected definition with its callers and dependencies. If several symbols share the name, add --file <path> or use the returned UID.
Use it with your agent
Section titled “Use it with your agent”Ask:
Use Noodlbox to map this codebase, identify the entry points for authentication, and explain the refresh flow before editing.