Purpose: How to create token-efficient, scannable navigation files
context-system/standards/mvi.md)Estimated time: 15-20 min per navigation file
Goal: 200-300 tokens per navigation file
How:
Goal: AI can find what it needs in <5 seconds
Format:
Include: ✅ Paths | ✅ Brief descriptions (3-5 words) | ✅ When to use Exclude: ❌ File contents | ❌ Detailed explanations | ❌ Duplicates
| Type | Path | Purpose |
|---|---|---|
| Category-level | {category}/navigation.md |
Overview of category |
| Subcategory-level | {category}/{sub}/navigation.md |
Files in subcategory |
| Specialized | {category}/{domain}-navigation.md |
Cross-cutting (e.g., ui-navigation.md) |
## Structure
openagents-repo/ ├── navigation.md ├── quick-start.md ├── concepts/ │ └── subagent-testing-modes.md ├── guides/ │ ├── adding-agent.md │ └── testing-agent.md └── lookup/
└── commands.md
Token count: ~50-100 tokens
## Quick Routes
| Task | Path |
|------|------|
| **Add agent** | `guides/adding-agent.md` |
| **Test agent** | `guides/testing-agent.md` |
| **Find files** | `lookup/file-locations.md` |
Guidelines: Use bold for tasks | Relative paths | 5-10 common tasks
## By Type
**Concepts** → Core ideas and principles
**Guides** → Step-by-step workflows
**Lookup** → Quick reference tables
**Errors** → Troubleshooting
## Related Context
- **Core Standards** → `../core/standards/navigation.md`
Target: 200-300 tokens
wc -w navigation.md # Multiply by 1.3 for token estimate
navigation-templates.md - Ready-to-use templates../standards/mvi.md - MVI principle../examples/navigation-examples.md - More examples