forge-orkes 0.10.0 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -57,15 +57,41 @@ If missing, create from `.forge/templates/requirements.yml`:
|
|
|
57
57
|
|
|
58
58
|
Never write to top-level `.forge/requirements.yml` -- that path is deprecated.
|
|
59
59
|
|
|
60
|
-
## Step 5: Create Roadmap
|
|
60
|
+
## Step 5: Create or Update Roadmap
|
|
61
61
|
|
|
62
|
-
|
|
62
|
+
`.forge/roadmap.yml` is **multi-milestone by design** -- see `.forge/templates/roadmap.yml`. Top-level `milestones:` lists each milestone with its phase numbers; top-level `phases:` lists every phase. Phase IDs are scoped per-milestone via the dir naming `m{milestone_id}-{phase_num}-{name}/`, so phase `id: 1` can exist in m50 and m51 without collision.
|
|
63
|
+
|
|
64
|
+
**Never overwrite existing roadmap content.** Read first, then route on three cases:
|
|
65
|
+
|
|
66
|
+
### Case A: `roadmap.yml` missing (Full only)
|
|
67
|
+
|
|
68
|
+
Create from `.forge/templates/roadmap.yml`:
|
|
63
69
|
1. Group by delivery boundaries
|
|
64
70
|
2. Inter-group dependencies
|
|
65
71
|
3. Phases (coherent, verifiable)
|
|
66
72
|
4. Every FR -> one phase, no orphans
|
|
67
73
|
5. Waves: independent=1, dependent=2+
|
|
68
74
|
|
|
75
|
+
### Case B: `roadmap.yml` exists, current milestone already in it
|
|
76
|
+
|
|
77
|
+
Verify the milestone entry under `milestones:` and its phases under `phases:` are present and consistent with `requirements/m{N}.yml`. Update phase entries in place if requirements changed. Do not touch other milestones.
|
|
78
|
+
|
|
79
|
+
### Case C: `roadmap.yml` exists, current milestone NOT in it (append)
|
|
80
|
+
|
|
81
|
+
This is the common case when starting a new milestone alongside an existing one. Do not fork the file, do not create per-milestone roadmap files, do not overwrite.
|
|
82
|
+
|
|
83
|
+
1. Append a new entry under `roadmap.milestones:`:
|
|
84
|
+
```yaml
|
|
85
|
+
- id: {N}
|
|
86
|
+
name: "{milestone name from state/milestone-{N}.yml}"
|
|
87
|
+
phases: [{list of phase ids you are about to add}]
|
|
88
|
+
```
|
|
89
|
+
2. Append each new phase under `roadmap.phases:` with IDs scoped to this milestone (start at `1`, ignore IDs used by other milestones -- dir naming prevents collision).
|
|
90
|
+
3. Recompute `coverage_verified` against the union of all active milestones' `requirements/m{N}.yml` files. Every FR-ID in the active milestone must map to exactly one phase in that milestone.
|
|
91
|
+
4. Update `waves:` only with the new milestone's phase wave assignments. Leave other milestones' wave entries alone.
|
|
92
|
+
|
|
93
|
+
If a sibling milestone (e.g. m50) has state + requirements but is missing from `roadmap.yml`, that's a pre-existing gap -- flag to user, don't silently backfill.
|
|
94
|
+
|
|
69
95
|
## Step 6: Decompose Tasks
|
|
70
96
|
|
|
71
97
|
Per phase (or feature, Standard tier):
|
|
@@ -89,6 +89,8 @@ grep -h "^\s*- id: NFR-" .forge/requirements/*.yml | sort | uniq -d
|
|
|
89
89
|
|
|
90
90
|
If duplicates appear: keep the older milestone's ID, renumber the newer one to the next free integer across all files. Update any references in `.forge/phases/m{N}-*/plan-*.md` that cite the renumbered IDs.
|
|
91
91
|
|
|
92
|
+
**Pragmatic out for projects mid-stream.** If you are migrating a project where multiple milestones were authored under the old pre-0.10.0 assumption that IDs were file-scoped, retroactively renumbering can be hours of mechanical edits across already-shipped plan files. Acceptable alternative: grandfather the existing duplicates as-is, enforce global uniqueness only for new milestones from this point forward, and record the carve-out in `.forge/context.md` under Locked Decisions. The framework's downstream tooling (refactor backlog, plan-file cross-references) will tolerate the grandfathered duplicates as long as no new collisions are introduced.
|
|
93
|
+
|
|
92
94
|
### 6. Update references in state files
|
|
93
95
|
|
|
94
96
|
State files may cite the old paths in `decisions`, `blockers`, or `quick_tasks_history`:
|
package/template/CLAUDE.md
CHANGED
|
@@ -125,7 +125,7 @@ State lives in `.forge/`:
|
|
|
125
125
|
- `project.yml` — Vision, stack, design system, verification, constraints (<5KB)
|
|
126
126
|
- `constitution.md` — Active architectural gates
|
|
127
127
|
- `design-system.md` — Component mapping table
|
|
128
|
-
- `requirements/m{N}.yml` — Per-milestone structured requirements with `[NEEDS CLARIFICATION]` markers. FR-IDs are globally unique across
|
|
128
|
+
- `requirements/m{N}.yml` — Per-milestone structured requirements with `[NEEDS CLARIFICATION]` markers. **FR-IDs, DEF-IDs, and NFR-IDs are globally unique across all milestone files** — `FR-001` may exist in exactly one `m{N}.yml`. Before adding a new ID, scan `.forge/requirements/*.yml` for the highest in-use number and continue the sequence. On collision (e.g. during a migration), keep the older milestone's ID and renumber the newer. Concurrent milestones each own their file — no cross-stream contention on file writes, but ID space is shared.
|
|
129
129
|
- `roadmap.yml` — Phases, milestones, dependencies
|
|
130
130
|
- `state/index.yml` — Global: active milestones, desire_paths, metrics
|
|
131
131
|
- `state/milestone-{id}.yml` — Per-milestone cursor: position, progress, decisions, blockers
|