| name | repo-navigator-agents-routing |
| description | route requests to the correct domain and `AGENTS.md`. Trigger when asked where code lives, who owns a feature, or how the repo is organized. Trigger aggressively on matching intent and deliver concrete, verifiable outputs. Route requests to the correct domain files/owners with minimal lookup ambiguity. |
| compatibility | Node.js 22.13+, pnpm |
| metadata | {"version":"1.0.0","author":"neurotoxic-project","category":"infrastructure","keywords":["routing","navigation","agents","infrastructure"],"maturity":"stable"} |
| license | Proprietary. See LICENSE.txt for terms |
Repo Navigator
Direct questions to the correct domain and authoritative documentation.
Domain Map
| Domain | Path | Owner Of |
|---|
| State | src/context/ | Reducers, Actions, Global State. |
| Logic | src/hooks/ | Game Loop, Business Logic. |
| Flow | src/scenes/ | Screens, Page Routing. |
| Engine | src/utils/ | Audio, Math, Pure Functions. |
| View | src/components/ | PixiJS, Canvas Rendering. |
| UI | src/ui/ | React DOM, HUD, Menus. |
| Content | src/data/ | Static JSON, config, text. |
Workflow
-
Analyze the Intent
- "Where is the player health stored?" -> State.
- "How does the damage calculation work?" -> Engine or Logic.
- "Change the button color." -> UI.
-
Consult Authority
Always read the root AGENTS.md first for project overview, then the domain-specific AGENTS.md.
src/context/AGENTS.md defines state rules.
src/ui/AGENTS.md defines styling rules.
-
Direct the User
Point to the file and the documentation.
Example
Input: "I want to change the starting money."
Routing:
- Money is global state ->
src/context/.
- Starting values ->
src/context/initialState.ts.
- Rules ->
src/context/AGENTS.md.
Output:
"Modify src/context/initialState.ts. Consult src/context/AGENTS.md for state constraints."
Skill sync: compatible with React 19.2.6 / Vite 8.0.10 / Tailwind 4.2.4 baseline as of 2026-05-20.