Purpose: Software development across all stacks
development/
├── navigation.md
├── ui-navigation.md # Specialized
├── backend-navigation.md # Specialized
├── fullstack-navigation.md # Specialized
│
├── principles/ # Universal (language-agnostic)
│ ├── navigation.md
│ ├── clean-code.md
│ └── api-design.md
│
├── frameworks/ # Full-stack frameworks
│ ├── navigation.md
│ └── tanstack-start/
│
├── ai/ # AI & Agents
│ ├── navigation.md
│ └── mastra-ai/
│
├── frontend/ # Client-side (future)
│ ├── navigation.md
│ ├── react/
│ ├── vue/
│ └── state-management/
│
├── backend/ # Server-side (future)
│ ├── navigation.md
│ ├── api-patterns/
│ ├── nodejs/
│ ├── python/
│ └── authentication/
│
├── data/ # Data layer (future)
│ ├── navigation.md
│ ├── sql-patterns/
│ ├── nosql-patterns/
│ └── orm-patterns/
│
├── integration/ # Connecting systems (future)
│ ├── navigation.md
│ ├── package-management/
│ ├── api-integration/
│ └── third-party-services/
│
└── infrastructure/ # DevOps (future)
├── navigation.md
├── docker/
└── ci-cd/
| Task | Path |
|---|---|
| UI/Frontend | ui-navigation.md |
| Backend/API | backend-navigation.md |
| Full-stack | fullstack-navigation.md |
| Clean code | principles/clean-code.md |
| API design | principles/api-design.md |
Principles → Universal development practices Frameworks → Full-stack frameworks (Tanstack Start, Next.js) AI → AI frameworks and agent runtimes (MAStra AI) Frontend → React, Vue, state management (future) Backend → APIs, Node.js, Python, auth (future) Data → SQL, NoSQL, ORMs (future) Integration → Packages, APIs, services (future) Infrastructure → Docker, CI/CD (future)
../core/standards/navigation.md../ui/navigation.md