bigpowers 1.3.0 → 1.3.1

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/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## [1.3.1](https://github.com/danielvm-git/bigpowers/compare/v1.3.0...v1.3.1) (2026-06-02)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **ci:** repair sync-skills sed and refresh package-lock ([29d6e7c](https://github.com/danielvm-git/bigpowers/commit/29d6e7cee82ab25eae5188628d1ae2bc73c99e57))
7
+ * **ci:** use Node 22 for semantic-release workflow ([43edf78](https://github.com/danielvm-git/bigpowers/commit/43edf7801ef06714861e16ed833e6b8b4c3eb66c))
8
+
1
9
  # [1.3.0](https://github.com/danielvm-git/bigpowers/compare/v1.2.3...v1.3.0) (2026-06-02)
2
10
 
3
11
 
package/CONVENTIONS.md CHANGED
@@ -34,7 +34,7 @@ You are operating within the `bigpowers` spec-driven development methodology.
34
34
  - **No Direct Coding:** When a user issues a directive like "build feature X" or "go epic 10", you MUST NOT execute the request by writing code directly.
35
35
  - **Required Skills:** You MUST route all work through the appropriate bigpowers skills.
36
36
  - Start with `survey-context` if you lack context.
37
- - Use `plan-work` to generate a verifiable plan in `specs/PLAN.md` before writing any feature code.
37
+ - Use `plan-work` to flesh out tasks in `specs/epics/eNN-*.yaml` (with `verify:` per task) before writing any feature code.
38
38
  - Use `develop-tdd` or `execute-plan` to implement the plan.
39
39
  - Use `investigate-bug` for bug reports before writing a fix.
40
40
  - **Verification Mandate:** Every story implementation MUST end with a step-by-step manual verification script provided to the user. You must wait for the user to confirm behavioral correctness (UAT) before declaring the story done or moving to the next.
package/README.md CHANGED
@@ -114,8 +114,9 @@ Every task in `bigpowers` follows a prescriptive lifecycle (see `SKILL-INDEX.md`
114
114
  | Level | Document | Responsibility |
115
115
  | :--- | :--- | :--- |
116
116
  | **Vision** | `docs/PRINCIPLES.md` | Philosophical foundations and evolution. |
117
- | **Context** | `specs/CONTEXT.md` | Tech stack, architecture, and glossary. |
118
- | **Scope** | `specs/SCOPE.md` | In-scope / out-of-scope and success criteria. |
117
+ | **Context** | `specs/plans/TECH_STACK_LATEST.md` | Tech stack, architecture, and domain notes. |
118
+ | **Scope** | `specs/requirements/SCOPE_LATEST.yaml` | In-scope / out-of-scope and success criteria. |
119
+ | **Vision** | `specs/requirements/VISION_LATEST.yaml` | North star and initiative success criteria. |
119
120
  | **Decisions** | `specs/adr/` | Architectural Decision Records (irreversible choices). |
120
121
  | **Roadmap** | `specs/release-plan.yaml` + `specs/epics/` | WSJF-prioritized epics and stories. |
121
122
  | **Current** | `specs/state.yaml` | Session flow, active epic, handoff. |
@@ -127,7 +128,8 @@ Every task in `bigpowers` follows a prescriptive lifecycle (see `SKILL-INDEX.md`
127
128
  ## 📁 Project Structure
128
129
 
129
130
  - `scripts/`: Installation, syncing, and compliance tools.
130
- - `specs/`: The "Brain" of your project — all planning and decisions live here.
131
+ - `specs/`: The "Brain" of your project — all planning and decisions live here (YAML cockpit: `state.yaml`, `release-plan.yaml`, `epics/`, `requirements/`).
132
+ - `specs/wiki/`: Deprecated Obsidian layer — use `visual-dashboard` HTTP cockpit instead of `maintain-wiki`.
131
133
  - `docs/references/`: Theoretical foundations (Uncle Bob, Ousterhout, Karpathy, etc.).
132
134
  - `[skill-name]/`: Source files for each of the 61 skills.
133
135
 
@@ -7,7 +7,7 @@
7
7
 
8
8
  | Step | Skill | Output | verify |
9
9
  |------|-------|--------|--------|
10
- | 1 | survey-context | STATE.md | ... |
11
- | 2 | research-first | Prior Art | ... |
12
- | 3 | plan-work | RELEASE-PLAN.md | ... |
10
+ | 1 | survey-context | state.yaml handoff | ... |
11
+ | 2 | research-first | Prior Art in SCOPE_LATEST.yaml | ... |
12
+ | 3 | plan-work | epics/eNN-*.yaml tasks | ... |
13
13
  ```
@@ -1,6 +1,6 @@
1
1
  # migrate-spec Reference — GSD
2
2
 
3
- Full artifact transformation rules for migrating GSD projects to bigpowers.
3
+ Full artifact transformation rules for migrating GSD projects to bigpowers YAML layout.
4
4
 
5
5
  See [REFERENCE.md](./REFERENCE.md) for spec-kit, BMAD, learnings, and ADR/DECISION-LOG formats.
6
6
 
@@ -32,95 +32,89 @@ GSD stores everything under `.planning/` at the project root.
32
32
 
33
33
  ## Transformation Rules
34
34
 
35
- ### `.planning/ROADMAP.md` → `specs/RELEASE-PLAN.md`
35
+ ### `.planning/ROADMAP.md` → `specs/release-plan.yaml` + `specs/epics/eNN-*.yaml`
36
36
 
37
37
  GSD ROADMAP has: milestone name, phases, success criteria per phase, plan count.
38
38
 
39
- bigpowers RELEASE-PLAN needs: release version, status, WSJF, focus, objective.
40
-
41
39
  Transform:
42
- - Each GSD phase → one release entry in RELEASE-PLAN.md
43
- - Phase namerelease name (add version number e.g. v1.0.0)
44
- - GSD success criteria "Success Criteria" subsection under each release entry
45
- - Phase plan count → "Job Size" hint for WSJF (ask user to score)
46
- - Completed phases → `✅` status; active phase → `⏳`; future phases → `📋`
40
+ - Each GSD phase → one epic entry in `release-plan.yaml` (`id`, `title`, `wsjf`, `file`)
41
+ - Phase detailmatching `specs/epics/eNN-slug.yaml` (stories, tasks, `verify`)
42
+ - Completed phases`done` in `execution-status.yaml`; active `in_progress`
47
43
 
48
44
  ---
49
45
 
50
- ### `.planning/REQUIREMENTS.md` → `specs/SCOPE.md`
46
+ ### `.planning/REQUIREMENTS.md` → `specs/requirements/SCOPE_LATEST.yaml`
51
47
 
52
48
  GSD REQUIREMENTS has: REQ-XX IDs, Validated/Active/Out-of-Scope categories, traceability.
53
49
 
54
50
  Transform:
55
51
  - Copy REQ-XX IDs as-is (preserve for cross-referencing)
56
- - Validated requirements → "In Scope" section
57
- - Out-of-Scope → "Out of Scope" section
58
- - Active (in-progress) → "In Scope (WIP)" section
59
- - Add header: `# Scope — migrated from GSD REQUIREMENTS.md`
52
+ - Validated requirements → `in_scope` entries
53
+ - Out-of-Scope → `out_of_scope` entries
54
+ - Active (in-progress) → `in_scope` with status note
60
55
 
61
56
  ---
62
57
 
63
- ### `.planning/phases/XX-name/XX-CONTEXT.md` → `specs/CONTEXT.md` + `specs/adr/`
58
+ ### `.planning/phases/XX-name/XX-CONTEXT.md` → `specs/plans/TECH_STACK_LATEST.md` + `specs/adr/`
64
59
 
65
60
  GSD CONTEXT.md has 6 sections: domain, decisions, canonical_refs, code_context, specifics, deferred.
66
61
 
67
62
  Transform:
68
- - `domain` → `specs/CONTEXT.md` Domain section (domain model, terms, aggregates)
63
+ - `domain` → `plans/TECH_STACK_LATEST.md` Domain section
69
64
  - `decisions` → scan each: if hard-to-reverse + surprising → `specs/adr/NNNN-{slug}.md`; if lightweight → `specs/DECISION-LOG.md`
70
- - `canonical_refs` → Reference links in CONTEXT.md
71
- - `code_context` → `specs/CONTEXT.md` Architecture section
72
- - `specifics` → merge into relevant CONTEXT.md section
73
- - `deferred` → `specs/SCOPE.md` Out-of-Scope section (with "(deferred from GSD)" note)
65
+ - `canonical_refs` → Reference links in TECH_STACK
66
+ - `code_context` → Architecture section
67
+ - `deferred` → `SCOPE_LATEST.yaml` `out_of_scope` (with "(deferred from GSD)" note)
74
68
 
75
69
  ---
76
70
 
77
- ### `.planning/phases/XX-name/XX-YY-PLAN.md` → `specs/PLAN-vX.Y.Z.md`
71
+ ### `.planning/phases/XX-name/XX-YY-PLAN.md` → `specs/epics/eNN-*.yaml` tasks
78
72
 
79
73
  GSD PLAN has: frontmatter (depends-on, verify), objective, typed tasks, success criteria, output spec.
80
74
 
81
75
  Transform:
82
- - Preserve task structure
83
- - Keep `verify: <command>` lines (same format bigpowers uses)
84
- - Map GSD `depends-on` to a "Dependencies" note in bigpowers PLAN header
85
- - Add bigpowers frontmatter with release version
86
- - SUMMARY.md (execution record) → append as "## Execution Record" if needed; otherwise skip
76
+ - Preserve task structure as `tasks[]` in epic shard
77
+ - Keep `verify: <command>` lines
78
+ - Map GSD `depends-on` to task `depends-on` notes
79
+ - SUMMARY.md (execution record) skip or append to `specs/archive/`
87
80
 
88
81
  ---
89
82
 
90
- ### `.planning/METHODOLOGY.md` → `specs/SPIKE-methodology.md`
83
+ ### `.planning/METHODOLOGY.md` → `specs/plans/METHODOLOGY_LATEST.md`
91
84
 
92
- GSD METHODOLOGY.md is a standing reference for analytical lenses (Bayesian updating, STRIDE, cost-of-delay). bigpowers has no direct equivalent.
85
+ GSD METHODOLOGY.md is a standing reference for analytical lenses (Bayesian updating, STRIDE, cost-of-delay).
93
86
 
94
87
  Transform:
95
- - Copy each lens as a section in `specs/SPIKE-methodology.md`
96
- - Add header: `# Project Methodology — migrated from GSD`
88
+ - Copy each lens as a section in `specs/plans/METHODOLOGY_LATEST.md`
97
89
  - Note: "These lenses should inform `plan-work` and `audit-code` sessions."
98
90
 
99
91
  ---
100
92
 
101
- ### `.planning/HANDOFF.json` + `.continue-here.md` → `specs/STATE.md` (resume block)
93
+ ### `.planning/HANDOFF.json` + `.continue-here.md` → `specs/state.yaml` `handoff`
102
94
 
103
95
  GSD HANDOFF has: current phase, last plan, blocking reason, required reading list.
104
96
 
105
- Transform — add a "## Session Resume" block to `specs/STATE.md`:
106
-
107
- ```markdown
108
- ## Session Resume
97
+ Transform — populate `handoff` in `state.yaml`:
109
98
 
110
- - Last active: <phase/plan from HANDOFF>
111
- - Blocking: <reason if any>
112
- - Required reading before next session: <required_reading list>
99
+ ```yaml
100
+ handoff:
101
+ last_step_completed: "<phase/plan from HANDOFF>"
102
+ open_decisions:
103
+ - "<blocking reason if any>"
104
+ required_reading:
105
+ - "<required_reading list>"
106
+ next_skill: survey-context
113
107
  ```
114
108
 
115
109
  ---
116
110
 
117
- ### `.planning/spikes/SPIKE-NNN/README.md` → `specs/SPIKE-{name}.md`
111
+ ### `.planning/spikes/SPIKE-NNN/README.md` → `specs/archive/spikes/SPIKE-{name}.md`
118
112
 
119
113
  GSD spike README has: YAML frontmatter (verdict, validates, related), methodology, findings, recommendation.
120
114
 
121
115
  Transform:
122
- - Flatten directory into single `specs/SPIKE-{name}.md`
123
- - Preserve frontmatter as YAML block comment at top
116
+ - Flatten directory into `specs/archive/spikes/SPIKE-{name}.md`
117
+ - Preserve frontmatter as YAML block at top
124
118
  - Keep verdict prominently: `**Verdict:** ADOPTED / REJECTED / DEFERRED`
125
119
 
126
120
  ---
@@ -2,7 +2,7 @@
2
2
 
3
3
  Transformation rules for spec-kit and BMAD projects, plus learnings to adopt and output formats.
4
4
 
5
- See [REFERENCE-GSD.md](./REFERENCE-GSD.md) for full GSD → bigpowers mapping.
5
+ See [REFERENCE-GSD.md](./REFERENCE-GSD.md) for full GSD → bigpowers YAML mapping.
6
6
 
7
7
  ---
8
8
 
@@ -22,35 +22,35 @@ project-root/
22
22
  └── log.jsonl
23
23
  ```
24
24
 
25
- ### `spec.md` → `specs/SCOPE.md` + `specs/CONTEXT.md`
25
+ ### `spec.md` → `specs/requirements/SCOPE_LATEST.yaml` + `specs/plans/TECH_STACK_LATEST.md`
26
26
 
27
27
  spec-kit `spec.md` focuses on: who uses it, user journeys, success criteria, what's in/out of scope.
28
28
 
29
29
  Transform:
30
- - User journeys → `specs/SCOPE.md` "Success Criteria" subsection (observable behaviors)
31
- - In/out of scope → `specs/SCOPE.md` main sections
32
- - Domain terms / glossary → `specs/CONTEXT.md` glossary section
33
- - Problem statement / vision → first paragraph of `specs/CONTEXT.md`
30
+ - User journeys → `SCOPE_LATEST.yaml` success criteria / `in_scope` entries
31
+ - In/out of scope → `in_scope` / `out_of_scope` sections
32
+ - Domain terms / glossary → `requirements/GLOSSARY_LATEST.yaml`
33
+ - Problem statement / vision → `requirements/VISION_LATEST.yaml`
34
34
 
35
- ### `plan.md` → `specs/CONTEXT.md` + `specs/PLAN.md`
35
+ ### `plan.md` → `specs/plans/TECH_STACK_LATEST.md` + `specs/release-plan.yaml` + `specs/epics/`
36
36
 
37
37
  spec-kit `plan.md` covers: technology stack, architectural patterns, implementation constraints.
38
38
 
39
39
  Transform:
40
- - Technology decisions → `specs/CONTEXT.md` "Technology" section
41
- - Architecture patterns → `specs/CONTEXT.md` "Architecture" section
40
+ - Technology decisions → `plans/TECH_STACK_LATEST.md` Technology section
41
+ - Architecture patterns → Architecture section
42
42
  - Hard decisions with trade-offs → `specs/adr/NNNN-{slug}.md`
43
- - Phased approach / milestones → `specs/RELEASE-PLAN.md` release entries
44
- - Implementation steps → `specs/PLAN.md` task list
43
+ - Phased approach / milestones → `release-plan.yaml` epic entries
44
+ - Implementation steps → `epics/eNN-*.yaml` task list with `verify:`
45
45
 
46
- ### `tasks.md` → `specs/TASKS.md`
46
+ ### `tasks.md` → `specs/epics/` (via slice-tasks)
47
47
 
48
48
  spec-kit tasks are atomic, verifiable in isolation — same principle as bigpowers `verify:` mandate.
49
49
 
50
50
  Transform:
51
- - Copy tasks directly; preserve task numbers
51
+ - Copy tasks into epic shard `tasks[]`; preserve task numbers
52
52
  - Add `verify:` line if spec-kit task has an acceptance criterion
53
- - Group into phases matching `specs/RELEASE-PLAN.md` releases
53
+ - Group into epics matching `release-plan.yaml` entries
54
54
 
55
55
  ### `.specify/` state
56
56
 
@@ -79,50 +79,50 @@ project-root/
79
79
  └── story-{slug}.md
80
80
  ```
81
81
 
82
- ### `product-brief.md` / `prfaq-{project}.md` → `specs/CONTEXT.md` (Vision)
82
+ ### `product-brief.md` / `prfaq-{project}.md` → `specs/requirements/VISION_LATEST.yaml`
83
83
 
84
84
  Transform:
85
- - Vision + core value → `specs/CONTEXT.md` Vision section (first section)
86
- - Target users → personas list in CONTEXT.md
87
- - prfaq customer FAQ → can inform success criteria in SCOPE.md
85
+ - Vision + core value → `VISION_LATEST.yaml` north_star / success_criteria
86
+ - Target users → notes in VISION or SCOPE
87
+ - prfaq customer FAQ → can inform success criteria in SCOPE
88
88
 
89
- ### `prd.md` → `specs/SCOPE.md`
89
+ ### `prd.md` → `specs/requirements/SCOPE_LATEST.yaml` + `GLOSSARY_LATEST.yaml`
90
90
 
91
91
  BMAD `prd.md` has: Glossary, FR-XX functional requirements, UJ-XX user journeys, NFRs, assumptions.
92
92
 
93
93
  Transform:
94
- - Glossary → `specs/CONTEXT.md` Glossary section (keep exactly; it's domain language)
95
- - FR-XX items → `specs/SCOPE.md` "In Scope" with IDs preserved as comments: `<!-- FR-3 -->`
96
- - UJ-XX user journeys → `specs/SCOPE.md` "Success Criteria" section
97
- - NFRs → `specs/SCOPE.md` "Constraints" section
98
- - `[ASSUMPTION: ...]` inline tags → `specs/SCOPE.md` "Assumptions" section (collected)
99
- - Out-of-scope features → `specs/SCOPE.md` "Out of Scope" section
94
+ - Glossary → `GLOSSARY_LATEST.yaml`
95
+ - FR-XX items → `in_scope` with IDs preserved
96
+ - UJ-XX user journeys → success criteria
97
+ - NFRs → `constraints` section
98
+ - `[ASSUMPTION: ...]` inline tags → collected in scope YAML
99
+ - Out-of-scope features → `out_of_scope`
100
100
 
101
101
  ### `addendum.md` + `decision-log.md` → `specs/adr/` + `specs/DECISION-LOG.md`
102
102
 
103
103
  Transform:
104
104
  - Hard, irreversible, surprising decisions → individual `specs/adr/NNNN-{slug}.md`
105
105
  - Lightweight decisions → `specs/DECISION-LOG.md` (date | decision | rationale)
106
- - `addendum.md` change signals → note at top of SCOPE.md: "PRD amended: see decision-log"
106
+ - `addendum.md` change signals → note in `SCOPE_LATEST.yaml` metadata
107
107
 
108
- ### `architecture.md` → `specs/CONTEXT.md` + `specs/adr/`
108
+ ### `architecture.md` → `specs/plans/TECH_STACK_LATEST.md` + `specs/adr/`
109
109
 
110
110
  Transform:
111
111
  - ADR sections → individual `specs/adr/NNNN-{slug}.md` files
112
- - System overview / data models → `specs/CONTEXT.md` Architecture section
113
- - API contracts → keep at `docs/api.md` or similar; link from CONTEXT.md
112
+ - System overview / data models → TECH_STACK Architecture section
113
+ - API contracts → keep at `docs/api.md` or similar; link from TECH_STACK
114
114
 
115
- ### `epic-*.md` → `specs/RELEASE-PLAN.md`
115
+ ### `epic-*.md` → `specs/release-plan.yaml` + `specs/epics/eNN-*.yaml`
116
116
 
117
- Each epic → one release entry. Epic acceptance criteria → "Success Criteria" subsection.
117
+ Each epic → one release-plan entry + one epic shard. Acceptance criteria → story tasks with `verify:`.
118
118
 
119
- ### `story-*.md` → `specs/TASKS.md`
119
+ ### `story-*.md` → `specs/epics/` stories
120
120
 
121
- Each story → one entry. Acceptance criteria → `verify:` lines. Story tasks → subtask checklist.
121
+ Each story → one story entry in epic shard. Acceptance criteria → `verify:` lines.
122
122
 
123
123
  ### `project-context.md` → `CLAUDE.md`
124
124
 
125
- Add a "## Project Context" section to `CLAUDE.md` (or create `PROJECT-CONTEXT.md` if CLAUDE.md is bigpowers-managed). Copy tech stack, coding rules, preferences verbatim. Note: `<!-- Migrated from BMAD project-context.md -->`.
125
+ Add a "## Project Context" section to `CLAUDE.md`. Copy tech stack, coding rules, preferences verbatim.
126
126
 
127
127
  ---
128
128
 
@@ -132,22 +132,21 @@ Optional enhancements to offer the user after migration. Present as checkboxes.
132
132
 
133
133
  ### From GSD
134
134
 
135
- - [ ] **`specs/METHODOLOGY.md`** — Standing analytical lenses (Bayesian updating, STRIDE, cost-of-delay). Agents read this before planning.
136
- - [ ] **Session Resume block in STATE.md** — Last skill used, last step completed, required reading for next session.
137
- - [ ] **ID tracking in SCOPE.md** — Add SCOPE-XX IDs to requirements for spec → plan → verification traceability.
135
+ - [ ] **`specs/plans/METHODOLOGY_LATEST.md`** — Standing analytical lenses. Agents read before planning.
136
+ - [ ] **`handoff` block in state.yaml** — Last skill, last step, required reading for next session.
137
+ - [ ] **ID tracking in SCOPE_LATEST.yaml** — FR/UJ IDs for spec → plan → verification traceability.
138
138
 
139
139
  ### From spec-kit
140
140
 
141
- - [ ] **Two-pass spec writing** — User-journey pass first (what/why, no technical details), then technical-decisions pass. Cleaner specs.
142
- - [ ] **Explicit inter-phase gate** — "Approve to proceed?" checkpoint at end of `elaborate-spec` before starting `plan-work`.
143
- - [ ] **`specs/TASKS.md` isolation guarantee** — Each task entry completable and verifiable in isolation; declared dependencies explicit.
141
+ - [ ] **Two-pass spec writing** — User-journey pass first, then technical-decisions pass.
142
+ - [ ] **Explicit inter-phase gate** — "Approve to proceed?" at end of `elaborate-spec`.
143
+ - [ ] **Epic task isolation** — Each task completable in isolation; `depends-on` explicit in epic YAML.
144
144
 
145
145
  ### From BMAD
146
146
 
147
- - [ ] **FR-XX + UJ-XX in SCOPE.md** — Functional requirement + user journey numbering for rigorous traceability.
148
- - [ ] **`specs/DECISION-LOG.md`** — Lightweight decision log for PRD-level choices below the ADR threshold. Format: `date | decision | rationale | alternatives`.
149
- - [ ] **`PROJECT-CONTEXT.md`** Project-specific constitution read by all implementation agents. Generated from `model-domain` output.
150
- - [ ] **Adversarial review pass** — Dedicated critique pass on the plan before `develop-tdd`. Critic checks for gaps, edge cases, contradictions with SCOPE.md.
147
+ - [ ] **FR-XX + UJ-XX in SCOPE_LATEST.yaml** — Rigorous traceability.
148
+ - [ ] **`specs/DECISION-LOG.md`** — Lightweight decisions below ADR threshold.
149
+ - [ ] **Adversarial review pass** Critique epic shard before `develop-tdd`.
151
150
 
152
151
  ---
153
152
 
@@ -128,10 +128,10 @@ Full mapping tables: [REFERENCE-GSD.md](./REFERENCE-GSD.md) (GSD) · [REFERENCE.
128
128
  | GSD `ROADMAP.md` | `specs/release-plan.yaml + epic shards` |
129
129
  | GSD `REQUIREMENTS.md` | `specs/requirements/SCOPE_LATEST.yaml` |
130
130
  | GSD `CONTEXT.md` (phases) | `specs/plans/TECH_STACK_LATEST.md` + `specs/adr/` |
131
- | GSD `PLAN.md` | `specs/PLAN-vX.Y.Z.md` |
132
- | GSD `METHODOLOGY.md` | `specs/SPIKE-methodology.md` |
131
+ | GSD `PLAN.md` | `specs/epics/eNN-*.yaml` (tasks with verify) |
132
+ | GSD `METHODOLOGY.md` | `specs/plans/METHODOLOGY_LATEST.md` |
133
133
  | spec-kit `spec.md` | `specs/requirements/SCOPE_LATEST.yaml` + `specs/plans/TECH_STACK_LATEST.md` |
134
- | spec-kit `plan.md` | `specs/plans/TECH_STACK_LATEST.md` + `specs/PLAN.md` |
134
+ | spec-kit `plan.md` | `specs/plans/TECH_STACK_LATEST.md` + `specs/release-plan.yaml` + `specs/epics/` |
135
135
  | spec-kit `tasks.md` | `specs/epics/ (see slice-tasks)` |
136
136
  | BMAD `prd.md` | `specs/requirements/SCOPE_LATEST.yaml` |
137
137
  | BMAD `architecture.md` | `specs/plans/TECH_STACK_LATEST.md` + `specs/adr/` |
@@ -6,25 +6,25 @@ Detailed documentation for the `orchestrate-project` meta-skill.
6
6
 
7
7
  ### PHASE 1: DISCOVER
8
8
  - **Goal**: Understand the problem completely and map existing context.
9
- - **Deliverables**: `PROJECT.md`, `CONTEXT.md`.
9
+ - **Deliverables**: `requirements/VISION_LATEST.yaml`, `requirements/SCOPE_LATEST.yaml`, `plans/TECH_STACK_LATEST.md`.
10
10
  - **Skills**: `survey-context`, `elaborate-spec`, `grill-me`.
11
11
  - **Gate**: Confirm ("Is the problem clear?").
12
12
 
13
13
  ### PHASE 2: ELABORATE
14
14
  - **Goal**: Research solutions and lock architectural design.
15
- - **Deliverables**: `RESEARCH.md`, ADRs (Architecture Decision Records).
15
+ - **Deliverables**: Prior art in scope YAML, ADRs in `specs/adr/`.
16
16
  - **Skills**: `model-domain`, `define-language`, `challenge-design`.
17
17
  - **Gate**: Quality ≥94% (via `request-review`) + Confirm ("Are decisions locked?").
18
18
 
19
19
  ### PHASE 3: PLAN
20
20
  - **Goal**: Write a verifiable implementation plan with success criteria.
21
- - **Deliverables**: `PLAN.md` with `verify:` commands.
21
+ - **Deliverables**: `release-plan.yaml`, `epics/eNN-*.yaml` with `verify:` per task.
22
22
  - **Skills**: `scope-work`, `slice-tasks`, `define-success`, `plan-work`.
23
23
  - **Gate**: Quality (request-review ≥94%) + slopcheck [SUS]/[SLOP].
24
24
 
25
25
  ### PHASE 4: BUILD
26
26
  - **Goal**: Execute the plan step-by-step using TDD and vertical slices.
27
- - **Deliverables**: Code, `SUMMARY.md`.
27
+ - **Deliverables**: Code; `execution-status.yaml` updated per story.
28
28
  - **Skills**: `kickoff-branch`, `develop-tdd`, `delegate-task`, `execute-plan`.
29
29
  - **Gate**: Integration tests PASS.
30
30
 
@@ -60,7 +60,7 @@ Detailed documentation for the `orchestrate-project` meta-skill.
60
60
  ### Mode 2: Fast-Track (Skip Negotiable Gates)
61
61
  **Use Case**: Hotfixes, minor improvements, refactors on well-tested code.
62
62
  **Behavior**:
63
- - Skip Discover if `PROJECT.md` exists.
63
+ - Skip Discover if `requirements/SCOPE_LATEST.yaml` exists.
64
64
  - Skip Elaborate if design decisions are already locked.
65
65
  - Skip Verify if coverage ≥95% + all tests PASS.
66
66
  - Soft gates auto-approve if baseline conditions are met.
@@ -86,10 +86,10 @@ Detailed documentation for the `orchestrate-project` meta-skill.
86
86
  ---
87
87
 
88
88
  ## Error Recovery & State
89
- Orchestrate maintains `specs/STATE.md` to track:
90
- - **Current Phase**: Position in the loop.
91
- - **Artifacts**: Checklist of completed deliverables.
92
- - **Decisions**: Audit trail of architectural choices.
93
- - **Risks**: Active project risks and mitigation status.
89
+ Orchestrate maintains `specs/state.yaml` to track:
90
+ - **Current flow / epic**: `active_flow`, `active_epic_id`, `epic_cycle`.
91
+ - **Handoff**: `last_step_completed`, `open_decisions`, `required_reading`, `next_skill`.
92
+ - **Git**: `branch`, `hash` for session continuity.
93
+ - **Progress**: Story status lives in `execution-status.yaml` only.
94
94
 
95
95
  In the event of a crash or exit, run `claude /orchestrate --resume` to pick up exactly where the session left off.
@@ -11,7 +11,7 @@ The orchestrate skill coordinates projects through a prescriptive 6-phase core l
11
11
  ## Quick Start
12
12
 
13
13
  ```bash
14
- # Start a new project (creates PROJECT.md and begins discover phase)
14
+ # Start a new project (initializes specs/ YAML cockpit and begins discover phase)
15
15
  claude /orchestrate --mode standard
16
16
 
17
17
  # Or resume an existing project at the current phase
@@ -23,12 +23,12 @@ claude /orchestrate --mode fast-track
23
23
 
24
24
  ## The 6-Phase Core Loop
25
25
 
26
- 1. **DISCOVER** (3-6 hours): Understand problem. Deliverables: PROJECT.md, CONTEXT.md.
27
- 2. **ELABORATE** (3-6 hours): Research solutions. Deliverables: RESEARCH.md.
28
- 3. **PLAN** (2-4 hours): Write verifiable plan. Deliverables: PLAN.md.
29
- 4. **BUILD** (1-8 hours): Execute plan. Deliverables: Code, SUMMARY.md.
30
- 5. **VERIFY** (1-3 hours): Validate success criteria. Deliverables: VERIFICATION.md.
31
- 6. **RELEASE** (30 min - 2 hours): Ship to production. Deliverables: Release tag.
26
+ 1. **DISCOVER** (3-6 hours): Understand problem. Deliverables: `requirements/VISION_LATEST.yaml`, `requirements/SCOPE_LATEST.yaml`, `plans/TECH_STACK_LATEST.md`.
27
+ 2. **ELABORATE** (3-6 hours): Research solutions. Deliverables: Prior art in scope YAML, ADRs in `specs/adr/`.
28
+ 3. **PLAN** (2-4 hours): Write verifiable plan. Deliverables: `release-plan.yaml`, `epics/eNN-*.yaml` with `verify:` per task.
29
+ 4. **BUILD** (1-8 hours): Execute plan. Deliverables: Code; update `execution-status.yaml`.
30
+ 5. **VERIFY** (1-3 hours): Validate success criteria. Deliverables: UAT evidence, `specs/EVALS-*.md` if used.
31
+ 6. **RELEASE** (30 min - 2 hours): Ship to production. Deliverables: Release tag (vX.Y.Z), `state.yaml` `release.last_tag`.
32
32
 
33
33
  See [REFERENCE.md](REFERENCE.md) for detailed phase specifications and gate types.
34
34
 
@@ -54,5 +54,5 @@ See [REFERENCE.md](REFERENCE.md) for full mode behaviors.
54
54
 
55
55
  All phases complete with artifacts:
56
56
  ```bash
57
- verify: test -f specs/PROJECT.md && test -f specs/PLAN.md && test -f specs/VERIFICATION.md && echo "✅ All phases complete"
57
+ verify: test -f specs/state.yaml && test -f specs/release-plan.yaml && test -f specs/requirements/SCOPE_LATEST.yaml && ls specs/epics/*.yaml 1>/dev/null && echo "✅ All phases complete"
58
58
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bigpowers",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "61 agent skills for spec-driven, test-first software development by solo developers",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -39,11 +39,9 @@
39
39
  },
40
40
  "devDependencies": {
41
41
  "@semantic-release/changelog": "^6.0.3",
42
- "@semantic-release/commit-analyzer": "^11.1.0",
43
42
  "@semantic-release/git": "^10.0.1",
44
- "@semantic-release/github": "^9.2.6",
45
- "@semantic-release/npm": "^11.0.3",
46
- "@semantic-release/release-notes-generator": "^12.1.0",
47
- "semantic-release": "^22.0.12"
43
+ "@semantic-release/github": "^11.0.1",
44
+ "@semantic-release/npm": "^12.0.1",
45
+ "semantic-release": "^24.2.0"
48
46
  }
49
47
  }
@@ -22,7 +22,7 @@ Write a self-contained brief for the reviewer agent. Include:
22
22
 
23
23
  - What was built (feature description, not implementation)
24
24
  - Which files changed (the diff context)
25
- - What `specs/` artifacts are relevant (PLAN.md, bugs/BUG-*.md, SCOPE.md)
25
+ - What `specs/` artifacts are relevant (active `epics/eNN-*.yaml`, `requirements/SCOPE_LATEST.yaml`, `bugs/BUG-*.md`)
26
26
  - What CONVENTIONS.md requires
27
27
  - What the verify command is
28
28
  - What you're most uncertain about (where you want fresh eyes)
@@ -36,7 +36,7 @@ You are a code reviewer. Review the following code changes.
36
36
 
37
37
  Context: [feature description]
38
38
  CONVENTIONS.md rules: [paste relevant sections]
39
- specs/PLAN.md: [paste or summarize]
39
+ Active epic shard: [paste or summarize from specs/epics/]
40
40
 
41
41
  Diff: [paste git diff or describe changed files]
42
42
 
@@ -24,4 +24,4 @@
24
24
 
25
25
  ## pass@k
26
26
 
27
- Run capability evals k times (default k=3). Ship when all k pass or document known flake in STATE.md.
27
+ Run capability evals k times (default k=3). Ship when all k pass or document known flake in `specs/state.yaml` `handoff.open_decisions`.
@@ -31,7 +31,7 @@ for skill_dir in "$REPO_ROOT"/*/; do
31
31
  description=$(awk '/^---/{f++} f==1 && /^description:/{p=1} p && !/^---/{print} f==2{exit}' "$skill_md" \
32
32
  | sed 's/^description:[[:space:]]*//' \
33
33
  | tr -d '\n' \
34
- | sed 's/[[:space:]]\+/ /g')
34
+ | sed -E 's/[[:space:]]+/ /g')
35
35
 
36
36
  [[ -z "$name" ]] && continue
37
37
 
@@ -85,13 +85,13 @@ for skill_dir in "$REPO_ROOT"/*/; do
85
85
  skill_count=$((skill_count + 1))
86
86
  done
87
87
 
88
- # Assemble final gemini-extension.json
89
- pkg_version=$(grep '"version":' "$REPO_ROOT/package.json" | sed 's/.*: "\(.*\)".*/\1/')
90
- pkg_desc=$(grep '"description":' "$REPO_ROOT/package.json" | sed 's/.*: "\(.*\)".*/\1/')
88
+ # Assemble final gemini-extension.json (top-level fields only — not scripts.version)
89
+ pkg_version=$(jq -r '.version' "$REPO_ROOT/package.json")
90
+ pkg_desc=$(jq -r '.description' "$REPO_ROOT/package.json")
91
91
 
92
92
  jq -n --arg name "bigpowers" \
93
93
  --arg version "$pkg_version" \
94
- --arg desc "$skill_count+ $pkg_desc" \
94
+ --arg desc "${skill_count} skills — ${pkg_desc}" \
95
95
  '{name: $name, version: $version, description: $desc}' > "$GEMINI_MANIFEST"
96
96
 
97
97
  # 4. Write OpenCode configuration: opencode.json (minimal project-level config)
@@ -73,7 +73,7 @@ Stack: [language, framework, runtime]
73
73
  ## Agent Rules
74
74
  - **Workflow Mandate:** You MUST use the bigpowers skills (e.g. `plan-work`, `develop-tdd`, `orchestrate-project`) to perform tasks. DO NOT write code directly in response to a user prompt like "build this feature".
75
75
  - Read specs/ before writing code.
76
- - All planning and specifications MUST be written to `specs/` (e.g. `specs/PLAN.md`) before any code is generated.
76
+ - All planning and specifications MUST be written to `specs/` (`requirements/SCOPE_LATEST.yaml`, `release-plan.yaml`, `epics/`) before any code is generated.
77
77
  - Write the minimum code that solves the stated problem. Nothing extra.
78
78
  - Never refactor, rename, or reorganize code outside the task scope.
79
79
  - Run tests after every change. Show evidence before declaring done.
@@ -113,7 +113,7 @@ Stack: [language, framework, runtime]
113
113
  ## Agent Rules
114
114
  - **Workflow Mandate:** You MUST use the bigpowers skills (e.g. `plan-work`, `develop-tdd`, `orchestrate-project`) to perform tasks. DO NOT write code directly in response to a user prompt like "build this feature".
115
115
  - Read specs/ before writing code.
116
- - All planning and specifications MUST be written to `specs/` (e.g. `specs/PLAN.md`) before any code is generated.
116
+ - All planning and specifications MUST be written to `specs/` (`requirements/SCOPE_LATEST.yaml`, `release-plan.yaml`, `epics/`) before any code is generated.
117
117
  - Write the minimum code that solves the stated problem. Nothing extra.
118
118
  - Never refactor, rename, or reorganize code outside the task scope.
119
119
  - Run tests after every change. Show evidence before declaring done.
@@ -153,7 +153,7 @@ Stack: [language, framework, runtime]
153
153
  ## Agent Rules
154
154
  - **Workflow Mandate:** You MUST use the bigpowers skills (e.g. `plan-work`, `develop-tdd`, `orchestrate-project`) to perform tasks. DO NOT write code directly in response to a user prompt like "build this feature".
155
155
  - Read specs/ before writing code.
156
- - All planning and specifications MUST be written to `specs/` (e.g. `specs/PLAN.md`) before any code is generated.
156
+ - All planning and specifications MUST be written to `specs/` (`requirements/SCOPE_LATEST.yaml`, `release-plan.yaml`, `epics/`) before any code is generated.
157
157
  - Write the minimum code that solves the stated problem. Nothing extra.
158
158
  - Never refactor, rename, or reorganize code outside the task scope.
159
159
  - Run tests after every change. Show evidence before declaring done.
@@ -12,7 +12,7 @@ Track the current state of implementation, including decisions made, pending tas
12
12
 
13
13
  Maintain a single source of truth for the *current* session in `specs/state.yaml`. This complements long-term docs in `specs/plans/` and delivery detail in `specs/epics/` + `specs/release-plan.yaml`.
14
14
 
15
- Legacy `specs/state.yaml` is deprecated — use `state.yaml` only.
15
+ Legacy markdown (`specs/archive/STATE.md`, `RELEASE-PLAN.md`) is **not** SoT when YAML exists — use `specs/state.yaml` only.
16
16
 
17
17
  ## Handoff block (cold start)
18
18
 
@@ -1,12 +1,12 @@
1
1
  ---
2
2
  name: spike-prototype
3
3
  model: sonnet
4
- description: Throw-away prototype for unknown problem spaces. Output is learning notes in specs/SPIKE-<name>.md, not production code. Use when the domain or technology is unexplored, when estimates are impossible without experimentation, or when user says "spike", "prototype", or "proof of concept".
4
+ description: Throw-away prototype for unknown problem spaces. Output is learning notes in specs/archive/spikes/SPIKE-<name>.md, not production code. Use when the domain or technology is unexplored, when estimates are impossible without experimentation, or when user says "spike", "prototype", or "proof of concept".
5
5
  ---
6
6
 
7
7
  # Spike Prototype
8
8
 
9
- A spike is a time-boxed experiment to answer a specific question. The code is thrown away. The learning is kept in `specs/SPIKE-<name>.md`.
9
+ A spike is a time-boxed experiment to answer a specific question. The code is thrown away. The learning is kept in `specs/archive/spikes/SPIKE-<name>.md`.
10
10
 
11
11
  **The spike produces learning, not code to ship.** If you find yourself cleaning up spike code for production, stop — run `plan-work` and `develop-tdd` instead with the insights you gained.
12
12
 
@@ -46,9 +46,9 @@ Write the simplest code that could answer the question. Ignore:
46
46
 
47
47
  Focus entirely on answering the question.
48
48
 
49
- ### 4. Write specs/SPIKE-<name>.md
49
+ ### 4. Write specs/archive/spikes/SPIKE-<name>.md
50
50
 
51
- Save the learning to `specs/SPIKE-<name>.md`. Create the `specs/` directory if it doesn't exist.
51
+ Save the learning to `specs/archive/spikes/SPIKE-<name>.md`. Create the `specs/` directory if it doesn't exist.
52
52
 
53
53
  <spike-template>
54
54
 
@@ -90,4 +90,4 @@ After writing the findings, delete or discard the spike code. It is not meant to
90
90
 
91
91
  ### 6. Feed back into plan-work
92
92
 
93
- The spike findings are the input to `plan-work`. Call `plan-work` next, informed by `specs/SPIKE-<name>.md`.
93
+ The spike findings are the input to `plan-work`. Call `plan-work` next, informed by `specs/archive/spikes/SPIKE-<name>.md`.
@@ -92,6 +92,6 @@ Mechanical verification (tests passing) is only half the fix. You must prove **b
92
92
  - **Loop until behavioral correctness is verified**: if any checklist item fails, or if the behavior is still incorrect despite passing tests, return to step 1 and run all checks again from the top — do not declare done until every item is green and the behavior is proven correct in a single run.
93
93
  - **Never use `@ts-ignore`, `as any`, or `// eslint-disable`** to "fix" a bug — these suppress the symptom without fixing the root cause
94
94
  - **Never mark the task done if any test is still failing**
95
- - **The verify command from specs/bugs/BUG-*.md or specs/PLAN.md must pass**
95
+ - **The verify command from specs/bugs/BUG-*.md or the active epic task `verify` field must pass**
96
96
 
97
97
  Suggest next skill: `audit-code` → `commit-message`.