generate_roadmap
Packs ranked backlog into a quarterly roadmap markdown, respecting engineering capacity and a buffer, splitting into commitments and stretch goals.
Instructions
Pack the ranked backlog into a quarterly roadmap markdown, respecting an engineering capacity envelope (in engineer-months × 4 person-weeks) minus a buffer (default 20%). Uses a greedy score-per-effort packer — items with the highest RICE-per-pw ratio land first. Output is split into P0 commitments / P1 commitments / P2 stretch / Deferred / Capacity summary. Required: capacity_engineer_months (float), period (str like 'Q3 2026'). Optional: okr (str — pinned at top), method (default 'rice'), buffer_pct (default 20). Returns {markdown, scheduled[], deferred[], capacity_used_pw, capacity_total_pw, buffer_pw, method, period}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| capacity_engineer_months | Yes | ||
| period | Yes | ||
| okr | No | ||
| method | No | rice | |
| buffer_pct | No | ||
| status | No | ||
| label | No |