repo-navigator
Objective
Route work to the correct files and verification commands in under 60 seconds.
Fast Start
- •Read
docs/agentic/AGENT-START.md. - •Map request to layer:
- •
src/shared: reusable primitives and architecture policy - •
src/core: runtime logic, orchestration, memory - •
src/bot: Discord adapters, handlers, commands - •
src/app: composition/bootstrap - •
src/scripts: operational checks and maintenance scripts
- •
- •Identify blast radius (imports, tests, docs, CI scripts).
- •Select verification depth:
- •Small/local change: focused test or check
- •Cross-layer or policy change: full
npm run check
Verification Matrix
- •Docs/index or link updates:
npm run docs:check - •Import/layer changes:
npm run arch:check - •Code changes with possible behavior impact:
npm run check
Guardrails
- •Preserve user-facing behavior unless explicitly requested.
- •Prefer existing conventions over new structure.
- •Keep edits minimal and reversible.
Output Contract
- •State chosen files, why they were selected, and which verification commands were run.
- •Call out assumptions when ownership was ambiguous.