Purpose: Universal standards and workflows for all development
core/
├── navigation.md
├── context-system.md
├── essential-patterns.md
│
├── standards/
│ ├── navigation.md
│ ├── code-quality.md
│ ├── test-coverage.md
│ ├── documentation.md
│ ├── security-patterns.md
│ └── code-analysis.md
│
├── workflows/
│ ├── navigation.md
│ ├── code-review.md
│ ├── task-delegation.md
│ ├── feature-breakdown.md
│ ├── session-management.md
│ └── design-iteration.md
│
├── guides/
│ └── resuming-sessions.md # NEW: Multi-session task resumption
│
├── task-management/ # JSON-driven task tracking
│ ├── navigation.md
│ ├── standards/
│ │ └── task-schema.md
│ ├── guides/
│ │ ├── splitting-tasks.md
│ │ └── managing-tasks.md
│ └── lookup/
│ └── task-commands.md
│
├── system/
│ └── context-guide.md
│
└── context-system/
├── guides/
├── examples/
├── standards/
└── operations/
| Task | Path |
|---|---|
| Write code | standards/code-quality.md |
| Write tests | standards/test-coverage.md |
| Write docs | standards/documentation.md |
| Security patterns | standards/security-patterns.md |
| Review code | workflows/code-review.md |
| Delegate task | workflows/task-delegation.md |
| Break down feature | workflows/feature-breakdown.md |
| Resume session | guides/resuming-sessions.md |
| Manage tasks | task-management/navigation.md |
| Task CLI commands | task-management/lookup/task-commands.md |
| Context system | context-system.md |
Standards → Code quality, testing, docs, security (critical priority) Workflows → Review, delegation, task breakdown (high priority) Task Management → JSON-driven task tracking with CLI (high priority) System → Context management and guides (medium priority)
../development/navigation.md../openagents-repo/navigation.md