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 +8 -0
- package/CONVENTIONS.md +1 -1
- package/README.md +5 -3
- package/compose-workflow/REFERENCE.md +3 -3
- package/migrate-spec/REFERENCE-GSD.md +35 -41
- package/migrate-spec/REFERENCE.md +43 -44
- package/migrate-spec/SKILL.md +3 -3
- package/orchestrate-project/REFERENCE.md +10 -10
- package/orchestrate-project/SKILL.md +8 -8
- package/package.json +4 -6
- package/request-review/SKILL.md +2 -2
- package/run-evals/REFERENCE.md +1 -1
- package/scripts/sync-skills.sh +5 -5
- package/seed-conventions/SKILL.md +3 -3
- package/session-state/SKILL.md +1 -1
- package/spike-prototype/SKILL.md +5 -5
- package/validate-fix/SKILL.md +1 -1
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
|
|
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/
|
|
118
|
-
| **Scope** | `specs/
|
|
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 |
|
|
11
|
-
| 2 | research-first | Prior Art | ... |
|
|
12
|
-
| 3 | plan-work |
|
|
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/
|
|
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
|
|
43
|
-
- Phase
|
|
44
|
-
-
|
|
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 detail → matching `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/
|
|
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 →
|
|
57
|
-
- Out-of-Scope →
|
|
58
|
-
- Active (in-progress) →
|
|
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/
|
|
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` → `
|
|
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
|
|
71
|
-
- `code_context` →
|
|
72
|
-
- `
|
|
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/
|
|
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
|
|
84
|
-
- Map GSD `depends-on` to
|
|
85
|
-
-
|
|
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/
|
|
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).
|
|
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/
|
|
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/
|
|
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 —
|
|
106
|
-
|
|
107
|
-
```markdown
|
|
108
|
-
## Session Resume
|
|
97
|
+
Transform — populate `handoff` in `state.yaml`:
|
|
109
98
|
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
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
|
|
123
|
-
- Preserve frontmatter as YAML block
|
|
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/
|
|
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 → `
|
|
31
|
-
- In/out of scope → `
|
|
32
|
-
- Domain terms / glossary → `
|
|
33
|
-
- Problem statement / vision →
|
|
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/
|
|
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 → `
|
|
41
|
-
- Architecture patterns →
|
|
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 → `
|
|
44
|
-
- Implementation steps → `
|
|
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/
|
|
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
|
|
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
|
|
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/
|
|
82
|
+
### `product-brief.md` / `prfaq-{project}.md` → `specs/requirements/VISION_LATEST.yaml`
|
|
83
83
|
|
|
84
84
|
Transform:
|
|
85
|
-
- Vision + core value → `
|
|
86
|
-
- Target users →
|
|
87
|
-
- prfaq customer FAQ → can inform success criteria in SCOPE
|
|
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/
|
|
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 → `
|
|
95
|
-
- FR-XX items → `
|
|
96
|
-
- UJ-XX user journeys →
|
|
97
|
-
- NFRs → `
|
|
98
|
-
- `[ASSUMPTION: ...]` inline tags →
|
|
99
|
-
- Out-of-scope features → `
|
|
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
|
|
106
|
+
- `addendum.md` change signals → note in `SCOPE_LATEST.yaml` metadata
|
|
107
107
|
|
|
108
|
-
### `architecture.md` → `specs/
|
|
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 →
|
|
113
|
-
- API contracts → keep at `docs/api.md` or similar; link from
|
|
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/
|
|
115
|
+
### `epic-*.md` → `specs/release-plan.yaml` + `specs/epics/eNN-*.yaml`
|
|
116
116
|
|
|
117
|
-
Each epic → one release entry.
|
|
117
|
+
Each epic → one release-plan entry + one epic shard. Acceptance criteria → story tasks with `verify:`.
|
|
118
118
|
|
|
119
|
-
### `story-*.md` → `specs/
|
|
119
|
+
### `story-*.md` → `specs/epics/` stories
|
|
120
120
|
|
|
121
|
-
Each story → one entry. Acceptance criteria → `verify:` lines.
|
|
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
|
|
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/
|
|
136
|
-
- [ ]
|
|
137
|
-
- [ ] **ID tracking in
|
|
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
|
|
142
|
-
- [ ] **Explicit inter-phase gate** — "Approve to proceed?"
|
|
143
|
-
- [ ]
|
|
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
|
|
148
|
-
- [ ] **`specs/DECISION-LOG.md`** — Lightweight
|
|
149
|
-
- [ ]
|
|
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
|
|
package/migrate-spec/SKILL.md
CHANGED
|
@@ -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/
|
|
132
|
-
| GSD `METHODOLOGY.md` | `specs/
|
|
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/
|
|
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**: `
|
|
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**:
|
|
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**: `
|
|
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
|
|
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 `
|
|
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/
|
|
90
|
-
- **Current
|
|
91
|
-
- **
|
|
92
|
-
- **
|
|
93
|
-
- **
|
|
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 (
|
|
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:
|
|
27
|
-
2. **ELABORATE** (3-6 hours): Research solutions. Deliverables:
|
|
28
|
-
3. **PLAN** (2-4 hours): Write verifiable plan. Deliverables:
|
|
29
|
-
4. **BUILD** (1-8 hours): Execute plan. Deliverables: Code
|
|
30
|
-
5. **VERIFY** (1-3 hours): Validate success criteria. Deliverables:
|
|
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/
|
|
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.
|
|
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": "^
|
|
45
|
-
"@semantic-release/npm": "^
|
|
46
|
-
"
|
|
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
|
}
|
package/request-review/SKILL.md
CHANGED
|
@@ -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 (
|
|
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
|
-
|
|
39
|
+
Active epic shard: [paste or summarize from specs/epics/]
|
|
40
40
|
|
|
41
41
|
Diff: [paste git diff or describe changed files]
|
|
42
42
|
|
package/run-evals/REFERENCE.md
CHANGED
package/scripts/sync-skills.sh
CHANGED
|
@@ -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:]]
|
|
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=$(
|
|
90
|
-
pkg_desc=$(
|
|
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
|
|
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/` (
|
|
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/` (
|
|
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/` (
|
|
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.
|
package/session-state/SKILL.md
CHANGED
|
@@ -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/
|
|
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
|
|
package/spike-prototype/SKILL.md
CHANGED
|
@@ -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`.
|
package/validate-fix/SKILL.md
CHANGED
|
@@ -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
|
|
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`.
|