.agents/skills/gepetto/references/section-index.md
Create <planning_dir>/sections/index.md to define implementation sections.
<planning_dir>/claude-plan.md - implementation plan<planning_dir>/sections/
└── index.md
index.md MUST start with a SECTION_MANIFEST block:
<!-- SECTION_MANIFEST
section-01-foundation
section-02-config
section-03-parser
section-04-api
END_MANIFEST -->
# Implementation Sections Index
... rest of human-readable content ...
section-NN-name (e.g., section-01-foundation)After the manifest block, include:
Table showing what blocks what:
| Section | Depends On | Blocks | Parallelizable |
|---------|------------|--------|----------------|
| section-01-foundation | - | section-02, section-03 | Yes |
| section-02-config | section-01 | section-04 | No |
| section-03-parser | section-01 | section-04 | Yes |
| section-04-api | section-02, section-03 | - | No |
Which sections can run in parallel:
1. section-01-foundation (no dependencies)
2. section-02-config, section-03-parser (parallel after section-01)
3. section-04-api (requires section-02 AND section-03)
Brief description of each section:
### section-01-foundation
Initial project setup and configuration.
### section-02-config
Configuration loading and validation.
<!-- SECTION_MANIFEST
section-01-foundation
section-02-core-libs
section-03-api-layer
section-04-frontend
section-05-integration
END_MANIFEST -->
# Implementation Sections Index
## Dependency Graph
| Section | Depends On | Blocks | Parallelizable |
|---------|------------|--------|----------------|
| section-01-foundation | - | all | Yes |
| section-02-core-libs | 01 | 03, 04 | No |
| section-03-api-layer | 02 | 05 | Yes |
| section-04-frontend | 02 | 05 | Yes |
| section-05-integration | 03, 04 | - | No |
## Execution Order
1. section-01-foundation (no dependencies)
2. section-02-core-libs (after 01)
3. section-03-api-layer, section-04-frontend (parallel after 02)
4. section-05-integration (final)
## Section Summaries
### section-01-foundation
Directory structure, config files, base setup.
### section-02-core-libs
Shared utilities and core libraries.
### section-03-api-layer
REST API endpoints and middleware.
### section-04-frontend
UI components and pages.
### section-05-integration
End-to-end integration and final wiring.