bigpowers 2.38.0 → 2.39.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bigpowers",
3
- "version": "2.38.0",
3
+ "version": "2.39.0",
4
4
  "description": "71 skills — 70 agent skills for spec-driven, test-first software development by solo developers",
5
5
  "keywords": [
6
6
  "pi-package"
@@ -33,8 +33,9 @@ Review answers "is the code good?"; Verify answers "does the built thing do what
33
33
  2. **Cold-start smoke** (if app): stop server, clear caches, boot from scratch.
34
34
  3. **AGENTS.md preflight** — before running default checks, call `bash scripts/bp-read-agents.sh` to detect project-specific commands. If `BP_PREFLIGHT` is set, run it instead of the default mechanical gates (or in addition to them if the project requires both). Output: `"Using preflight from AGENTS.md: <cmd>"`. Fall back to `CLAUDE.md` commands if AGENTS.md is absent.
35
35
  4. Mechanical gates: build → typecheck → lint → tests (from `CLAUDE.md` or AGENTS.md).
36
- 5. **Step-by-step UAT** — one user-observable action at a time.
37
- 6. **Gaps loop** — failures log `plan-work` → re-verify.
36
+ 5. **Security scan** — run `security-review` against the git diff (working tree vs merge-base). Parse findings report. If any HIGH findings with confidence ≥ 8 exist → **block the gate**. Write findings to `specs/security/REVIEW.md`. Allow documented exceptions via `specs/security/EXCEPTIONS.md`. MEDIUM/LOW findings warn but don't block.
37
+ 6. **Step-by-step UAT** — one user-observable action at a time.
38
+ 7. **Gaps loop** — failures → log → `plan-work` → re-verify. Unaddressed HIGH findings from step 5 feed into this loop alongside other quality gaps.
38
39
 
39
40
  ## Verify sub-operations
40
41
 
@@ -35,8 +35,9 @@ Review answers "is the code good?"; Verify answers "does the built thing do what
35
35
  2. **Cold-start smoke** (if app): stop server, clear caches, boot from scratch.
36
36
  3. **AGENTS.md preflight** — before running default checks, call `bash scripts/bp-read-agents.sh` to detect project-specific commands. If `BP_PREFLIGHT` is set, run it instead of the default mechanical gates (or in addition to them if the project requires both). Output: `"Using preflight from AGENTS.md: <cmd>"`. Fall back to `CLAUDE.md` commands if AGENTS.md is absent.
37
37
  4. Mechanical gates: build → typecheck → lint → tests (from `CLAUDE.md` or AGENTS.md).
38
- 5. **Step-by-step UAT** — one user-observable action at a time.
39
- 6. **Gaps loop** — failures log `plan-work` → re-verify.
38
+ 5. **Security scan** — run `security-review` against the git diff (working tree vs merge-base). Parse findings report. If any HIGH findings with confidence ≥ 8 exist → **block the gate**. Write findings to `specs/security/REVIEW.md`. Allow documented exceptions via `specs/security/EXCEPTIONS.md`. MEDIUM/LOW findings warn but don't block.
39
+ 6. **Step-by-step UAT** — one user-observable action at a time.
40
+ 7. **Gaps loop** — failures → log → `plan-work` → re-verify. Unaddressed HIGH findings from step 5 feed into this loop alongside other quality gaps.
40
41
 
41
42
  ## Verify sub-operations
42
43
 
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ # [2.39.0](https://github.com/danielvm-git/bigpowers/compare/v2.38.0...v2.39.0) (2026-06-27)
2
+
3
+
4
+ ### Features
5
+
6
+ * **verify-work:** add Phase 5 security scan gate ([a0a8b1e](https://github.com/danielvm-git/bigpowers/commit/a0a8b1e4362a727bc642c70e037c478ba45b25c1))
7
+
1
8
  # [2.38.0](https://github.com/danielvm-git/bigpowers/compare/v2.37.0...v2.38.0) (2026-06-27)
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-27T16:39:38Z
6
+ **Generated:** 2026-06-27T16:40:22Z
7
7
  **Skills:** 71
8
8
 
9
9
  ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bigpowers",
3
- "version": "2.38.0",
3
+ "version": "2.39.0",
4
4
  "description": "70 agent skills for spec-driven, test-first software development by solo developers",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/skills-lock.json CHANGED
@@ -333,7 +333,7 @@
333
333
  },
334
334
  "verify-work": {
335
335
  "description": "Multi-phase UAT gate — cold-start smoke, build, typecheck, lint, tests, step-by-step manual verification, gaps-closure loop. Use after execute-plan or develop-tdd, before audit-code.",
336
- "sha256": "44f96eac8380c15b",
336
+ "sha256": "7ea4ccf0ed1303fb",
337
337
  "path": "verify-work/SKILL.md"
338
338
  },
339
339
  "visual-dashboard": {
@@ -34,8 +34,9 @@ Review answers "is the code good?"; Verify answers "does the built thing do what
34
34
  2. **Cold-start smoke** (if app): stop server, clear caches, boot from scratch.
35
35
  3. **AGENTS.md preflight** — before running default checks, call `bash scripts/bp-read-agents.sh` to detect project-specific commands. If `BP_PREFLIGHT` is set, run it instead of the default mechanical gates (or in addition to them if the project requires both). Output: `"Using preflight from AGENTS.md: <cmd>"`. Fall back to `CLAUDE.md` commands if AGENTS.md is absent.
36
36
  4. Mechanical gates: build → typecheck → lint → tests (from `CLAUDE.md` or AGENTS.md).
37
- 5. **Step-by-step UAT** — one user-observable action at a time.
38
- 6. **Gaps loop** — failures log `plan-work` → re-verify.
37
+ 5. **Security scan** — run `security-review` against the git diff (working tree vs merge-base). Parse findings report. If any HIGH findings with confidence ≥ 8 exist → **block the gate**. Write findings to `specs/security/REVIEW.md`. Allow documented exceptions via `specs/security/EXCEPTIONS.md`. MEDIUM/LOW findings warn but don't block.
38
+ 6. **Step-by-step UAT** — one user-observable action at a time.
39
+ 7. **Gaps loop** — failures → log → `plan-work` → re-verify. Unaddressed HIGH findings from step 5 feed into this loop alongside other quality gaps.
39
40
 
40
41
  ## Verify sub-operations
41
42