bigpowers 2.32.0 → 2.33.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/.pi/package.json +1 -1
- package/.pi/prompts/migrate-spec.md +36 -1
- package/.pi/skills/migrate-spec/SKILL.md +36 -1
- package/CHANGELOG.md +7 -0
- package/SKILL-INDEX.md +1 -1
- package/migrate-spec/REFERENCE.md +6 -1
- package/migrate-spec/SKILL.md +30 -0
- package/package.json +1 -1
- package/skills-lock.json +1 -1
package/.pi/package.json
CHANGED
|
@@ -204,6 +204,36 @@ If skip is chosen, add to handoff: "Adversarial review: skipped — review manua
|
|
|
204
204
|
|
|
205
205
|
→ verify: `test -f specs/archive/MIGRATION-AUDIT.md && echo "audit completed" || echo "audit skipped or not performed"`
|
|
206
206
|
|
|
207
|
+
### Step 7 — Post-migration: Optional two-pass spec writing gate
|
|
208
|
+
|
|
209
|
+
After Steps 1–6, offer the user an optional two-pass spec writing workflow (spec-kit learning):
|
|
210
|
+
|
|
211
|
+
Prompt: "Use two-pass spec writing (user journeys first, then technical)? [yes / no]"
|
|
212
|
+
|
|
213
|
+
If **yes**, initialize the gate in `specs/state.yaml`:
|
|
214
|
+
|
|
215
|
+
```yaml
|
|
216
|
+
two_pass_spec:
|
|
217
|
+
journey_pass: pending
|
|
218
|
+
technical_pass: pending
|
|
219
|
+
approved_at: null
|
|
220
|
+
```
|
|
221
|
+
|
|
222
|
+
The journey pass must be marked "complete" by the user (after stakeholder approval of user-journey specs) before the technical pass begins:
|
|
223
|
+
|
|
224
|
+
```yaml
|
|
225
|
+
two_pass_spec:
|
|
226
|
+
journey_pass: complete
|
|
227
|
+
approved_at: "2026-06-26T12:00:00Z"
|
|
228
|
+
technical_pass: pending
|
|
229
|
+
```
|
|
230
|
+
|
|
231
|
+
Inform the user: "Journey pass is pending. Run `elaborate-spec` for user journeys, get stakeholder approval, then update `two_pass_spec.journey_pass: complete` in state.yaml before proceeding to technical specs."
|
|
232
|
+
|
|
233
|
+
If **no**, skip the two-pass gate. Proceed directly to plan-work.
|
|
234
|
+
|
|
235
|
+
→ verify: `grep -q 'two_pass_spec:' specs/state.yaml && echo "two-pass gate initialized" || echo "two-pass gate not activated"`
|
|
236
|
+
|
|
207
237
|
|
|
208
238
|
## Artifact Mapping Summary
|
|
209
239
|
|
|
@@ -511,7 +541,7 @@ Optional enhancements to offer the user after migration. Present as checkboxes.
|
|
|
511
541
|
|
|
512
542
|
### From spec-kit
|
|
513
543
|
|
|
514
|
-
- [
|
|
544
|
+
- [x] **Two-pass spec writing** — User-journey pass first, then technical-decisions pass. (adopted: optional post-migration gate)
|
|
515
545
|
- [ ] **Explicit inter-phase gate** — "Approve to proceed?" at end of `elaborate-spec`.
|
|
516
546
|
- [ ] **Epic task isolation** — Each task completable in isolation; `depends-on` explicit in epic YAML.
|
|
517
547
|
|
|
@@ -699,4 +729,9 @@ handoff:
|
|
|
699
729
|
- specs/tech-architecture/TECH_STACK_LATEST.md
|
|
700
730
|
- specs/release-plan.yaml
|
|
701
731
|
next_skill: survey-context
|
|
732
|
+
|
|
733
|
+
two_pass_spec: # Optional: only if user activates two-pass spec writing gate
|
|
734
|
+
journey_pass: pending
|
|
735
|
+
technical_pass: pending
|
|
736
|
+
approved_at: null
|
|
702
737
|
```
|
|
@@ -206,6 +206,36 @@ If skip is chosen, add to handoff: "Adversarial review: skipped — review manua
|
|
|
206
206
|
|
|
207
207
|
→ verify: `test -f specs/archive/MIGRATION-AUDIT.md && echo "audit completed" || echo "audit skipped or not performed"`
|
|
208
208
|
|
|
209
|
+
### Step 7 — Post-migration: Optional two-pass spec writing gate
|
|
210
|
+
|
|
211
|
+
After Steps 1–6, offer the user an optional two-pass spec writing workflow (spec-kit learning):
|
|
212
|
+
|
|
213
|
+
Prompt: "Use two-pass spec writing (user journeys first, then technical)? [yes / no]"
|
|
214
|
+
|
|
215
|
+
If **yes**, initialize the gate in `specs/state.yaml`:
|
|
216
|
+
|
|
217
|
+
```yaml
|
|
218
|
+
two_pass_spec:
|
|
219
|
+
journey_pass: pending
|
|
220
|
+
technical_pass: pending
|
|
221
|
+
approved_at: null
|
|
222
|
+
```
|
|
223
|
+
|
|
224
|
+
The journey pass must be marked "complete" by the user (after stakeholder approval of user-journey specs) before the technical pass begins:
|
|
225
|
+
|
|
226
|
+
```yaml
|
|
227
|
+
two_pass_spec:
|
|
228
|
+
journey_pass: complete
|
|
229
|
+
approved_at: "2026-06-26T12:00:00Z"
|
|
230
|
+
technical_pass: pending
|
|
231
|
+
```
|
|
232
|
+
|
|
233
|
+
Inform the user: "Journey pass is pending. Run `elaborate-spec` for user journeys, get stakeholder approval, then update `two_pass_spec.journey_pass: complete` in state.yaml before proceeding to technical specs."
|
|
234
|
+
|
|
235
|
+
If **no**, skip the two-pass gate. Proceed directly to plan-work.
|
|
236
|
+
|
|
237
|
+
→ verify: `grep -q 'two_pass_spec:' specs/state.yaml && echo "two-pass gate initialized" || echo "two-pass gate not activated"`
|
|
238
|
+
|
|
209
239
|
|
|
210
240
|
## Artifact Mapping Summary
|
|
211
241
|
|
|
@@ -513,7 +543,7 @@ Optional enhancements to offer the user after migration. Present as checkboxes.
|
|
|
513
543
|
|
|
514
544
|
### From spec-kit
|
|
515
545
|
|
|
516
|
-
- [
|
|
546
|
+
- [x] **Two-pass spec writing** — User-journey pass first, then technical-decisions pass. (adopted: optional post-migration gate)
|
|
517
547
|
- [ ] **Explicit inter-phase gate** — "Approve to proceed?" at end of `elaborate-spec`.
|
|
518
548
|
- [ ] **Epic task isolation** — Each task completable in isolation; `depends-on` explicit in epic YAML.
|
|
519
549
|
|
|
@@ -701,4 +731,9 @@ handoff:
|
|
|
701
731
|
- specs/tech-architecture/TECH_STACK_LATEST.md
|
|
702
732
|
- specs/release-plan.yaml
|
|
703
733
|
next_skill: survey-context
|
|
734
|
+
|
|
735
|
+
two_pass_spec: # Optional: only if user activates two-pass spec writing gate
|
|
736
|
+
journey_pass: pending
|
|
737
|
+
technical_pass: pending
|
|
738
|
+
approved_at: null
|
|
704
739
|
```
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [2.33.0](https://github.com/danielvm-git/bigpowers/compare/v2.32.0...v2.33.0) (2026-06-26)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **migrate-spec:** add two-pass spec writing gate ([6d33173](https://github.com/danielvm-git/bigpowers/commit/6d331735554df2d29adab6fdf5ef72844821f5bd))
|
|
7
|
+
|
|
1
8
|
# [2.32.0](https://github.com/danielvm-git/bigpowers/compare/v2.31.0...v2.32.0) (2026-06-26)
|
|
2
9
|
|
|
3
10
|
|
package/SKILL-INDEX.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
> **DO NOT EDIT** — This file is auto-generated by `scripts/generate-skill-index.sh`.
|
|
4
4
|
> Edit `SKILL.md` source files or `skills-lock.json` instead. Run `bash scripts/sync-skills.sh` to regenerate.
|
|
5
5
|
|
|
6
|
-
**Generated:** 2026-06-
|
|
6
|
+
**Generated:** 2026-06-26T23:02:01Z
|
|
7
7
|
**Skills:** 70
|
|
8
8
|
|
|
9
9
|
---
|
|
@@ -138,7 +138,7 @@ Optional enhancements to offer the user after migration. Present as checkboxes.
|
|
|
138
138
|
|
|
139
139
|
### From spec-kit
|
|
140
140
|
|
|
141
|
-
- [
|
|
141
|
+
- [x] **Two-pass spec writing** — User-journey pass first, then technical-decisions pass. (adopted: optional post-migration gate)
|
|
142
142
|
- [ ] **Explicit inter-phase gate** — "Approve to proceed?" at end of `elaborate-spec`.
|
|
143
143
|
- [ ] **Epic task isolation** — Each task completable in isolation; `depends-on` explicit in epic YAML.
|
|
144
144
|
|
|
@@ -326,4 +326,9 @@ handoff:
|
|
|
326
326
|
- specs/tech-architecture/TECH_STACK_LATEST.md
|
|
327
327
|
- specs/release-plan.yaml
|
|
328
328
|
next_skill: survey-context
|
|
329
|
+
|
|
330
|
+
two_pass_spec: # Optional: only if user activates two-pass spec writing gate
|
|
331
|
+
journey_pass: pending
|
|
332
|
+
technical_pass: pending
|
|
333
|
+
approved_at: null
|
|
329
334
|
```
|
package/migrate-spec/SKILL.md
CHANGED
|
@@ -207,6 +207,36 @@ If skip is chosen, add to handoff: "Adversarial review: skipped — review manua
|
|
|
207
207
|
|
|
208
208
|
→ verify: `test -f specs/archive/MIGRATION-AUDIT.md && echo "audit completed" || echo "audit skipped or not performed"`
|
|
209
209
|
|
|
210
|
+
### Step 7 — Post-migration: Optional two-pass spec writing gate
|
|
211
|
+
|
|
212
|
+
After Steps 1–6, offer the user an optional two-pass spec writing workflow (spec-kit learning):
|
|
213
|
+
|
|
214
|
+
Prompt: "Use two-pass spec writing (user journeys first, then technical)? [yes / no]"
|
|
215
|
+
|
|
216
|
+
If **yes**, initialize the gate in `specs/state.yaml`:
|
|
217
|
+
|
|
218
|
+
```yaml
|
|
219
|
+
two_pass_spec:
|
|
220
|
+
journey_pass: pending
|
|
221
|
+
technical_pass: pending
|
|
222
|
+
approved_at: null
|
|
223
|
+
```
|
|
224
|
+
|
|
225
|
+
The journey pass must be marked "complete" by the user (after stakeholder approval of user-journey specs) before the technical pass begins:
|
|
226
|
+
|
|
227
|
+
```yaml
|
|
228
|
+
two_pass_spec:
|
|
229
|
+
journey_pass: complete
|
|
230
|
+
approved_at: "2026-06-26T12:00:00Z"
|
|
231
|
+
technical_pass: pending
|
|
232
|
+
```
|
|
233
|
+
|
|
234
|
+
Inform the user: "Journey pass is pending. Run `elaborate-spec` for user journeys, get stakeholder approval, then update `two_pass_spec.journey_pass: complete` in state.yaml before proceeding to technical specs."
|
|
235
|
+
|
|
236
|
+
If **no**, skip the two-pass gate. Proceed directly to plan-work.
|
|
237
|
+
|
|
238
|
+
→ verify: `grep -q 'two_pass_spec:' specs/state.yaml && echo "two-pass gate initialized" || echo "two-pass gate not activated"`
|
|
239
|
+
|
|
210
240
|
---
|
|
211
241
|
|
|
212
242
|
## Artifact Mapping Summary
|
package/package.json
CHANGED
package/skills-lock.json
CHANGED
|
@@ -163,7 +163,7 @@
|
|
|
163
163
|
},
|
|
164
164
|
"migrate-spec": {
|
|
165
165
|
"description": "Detect GSD, spec-kit, or BMAD spec artifacts and transform them into bigpowers YAML layout (state.yaml, release-plan.yaml, epics/, requirements/, plans/, ADRs). Use when migrating foreign spec docs.",
|
|
166
|
-
"sha256": "
|
|
166
|
+
"sha256": "93c8cd03a33b7c10",
|
|
167
167
|
"path": "migrate-spec/SKILL.md"
|
|
168
168
|
},
|
|
169
169
|
"model-domain": {
|