bigpowers 2.18.0 → 2.20.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,7 +1,7 @@
1
1
  {
2
2
  "name": "bigpowers",
3
- "version": "2.18.0",
4
- "description": "67 skills — 61 agent skills for spec-driven, test-first software development by solo developers",
3
+ "version": "2.20.0",
4
+ "description": "68 skills — 61 agent skills for spec-driven, test-first software development by solo developers",
5
5
  "keywords": [
6
6
  "pi-package"
7
7
  ],
@@ -30,6 +30,8 @@ If you catch yourself thinking these, stop and reconsider — you are likely dev
30
30
 
31
31
  ## Workflow
32
32
 
33
+ > **Timing:** `bash scripts/bp-timing.sh start develop-tdd` at invocation; `bash scripts/bp-timing.sh end develop-tdd` before handoff.
34
+
33
35
  ### 1. Planning
34
36
 
35
37
  - [ ] Read active `specs/epics/*/epic.yaml` story tasks or `specs/bugs/BUG-*.md` — understand verify steps
@@ -36,6 +36,8 @@ If this plan touches an existing module, run `assess-impact` first to understand
36
36
 
37
37
  ## Process
38
38
 
39
+ > **Timing:** `bash scripts/bp-timing.sh start plan-work` at invocation; `bash scripts/bp-timing.sh end plan-work` before handoff.
40
+
39
41
  1. **Explore** — Use `Explore` subagent to understand affected modules, existing test patterns, similar prior art, and dependencies.
40
42
 
41
43
  2. **Draft steps** — Break implementation into the smallest possible steps where each step leaves the codebase working, has one observable outcome, and can be verified with a single command. Red-flag check: name any rationalization you caught before moving to step 3.
@@ -0,0 +1,116 @@
1
+ ---
2
+ description: "Streamlined fast-path for trivial data-only fixes — no TDD, no branching ceremony. Collapses 6 skills into 2 for changes that are purely data with no logic risk. Aborts with fallback to investigate-bug if guardrails trigger."
3
+ ---
4
+
5
+
6
+
7
+ # Quick Fix
8
+
9
+ Fast-track for trivial data-only fixes that do not require the full bug-fix chain.
10
+
11
+ When a bug fix is purely data — an add-missing-key, a typo correction, a config value update — the standard 6-skill chain (investigate-bug → diagnose-root → develop-tdd → kickoff-branch → verify-work → release-branch) is wasteful overhead. Quick-fix collapses it to 2 skills: **quick-fix** then **release-branch**.
12
+
13
+ ## Entry Criteria (ALL must be true)
14
+
15
+ Before invoking quick-fix, evaluate every item in this checklist:
16
+
17
+ 1. **Purely data change** — adding a missing key, fixing a typo, updating a config value, correcting a constant
18
+ 2. **No logic change** — no function signature, condition, loop, or control flow is modified
19
+ 3. **No refactor risk** — the change does not reorganize or rename existing structures
20
+ 4. **No API surface change** — no exported symbol, interface, or contract changes
21
+ 5. **Verifiable with a single assertion** — one test, one curl, one grep can prove it works
22
+ 6. **Affects ≤ 1 file**
23
+ 7. **Affects ≤ 5 lines changed**
24
+
25
+ ## Guardrails (HARD ABORT — all must pass)
26
+
27
+ If ANY guardrail triggers, **abort immediately** and suggest `investigate-bug` instead:
28
+
29
+ | Guardrail | Check |
30
+ |-----------|-------|
31
+ | **>1 file** | The fix touches more than one file |
32
+ | **>5 lines** | The diff exceeds 5 lines |
33
+ | **Logic change** | Any function signature, condition, or loop is modified |
34
+ | **Complex verify** | The verify command is more than one pipeline |
35
+ | **Test breakage** | Running `npm test` or equivalent breaks any existing test |
36
+
37
+ > **Fallback:** If any guardrail triggers, tell the user: *"This fix exceeds quick-fix guardrails. Use `investigate-bug` for the full TDD bug-fix chain instead."*
38
+
39
+ ## Fast-Path Workflow
40
+
41
+ Only 2 skills needed for eligible fixes:
42
+
43
+ ```
44
+ quick-fix → apply change, run one-line verify, commit with fix:
45
+ release-branch → merge and ship (existing skill)
46
+ ```
47
+
48
+ **Skipped skills (with justification):**
49
+
50
+ | Skipped skill | Why skipped |
51
+ |---------------|-------------|
52
+ | `investigate-bug` | Root cause is obvious (data gap, not logic error) |
53
+ | `diagnose-root` | No isolation needed — the data point is the root cause |
54
+ | `develop-tdd` | No logic to test — single assertion proves correctness |
55
+ | `kickoff-branch` | Change is so small it does not warrant a separate worktree |
56
+
57
+ > Justification is included in the `fix:` commit body so the audit trail is preserved.
58
+
59
+ ## Process
60
+
61
+ ### 1. Evaluate entry criteria
62
+
63
+ Run the entry criteria checklist above. If any criterion fails → abort, suggest `investigate-bug`.
64
+
65
+ ### 2. Apply the fix
66
+
67
+ Make the data change — add the missing key, fix the typo, update the value. Keep it to ≤5 lines in 1 file.
68
+
69
+ ### 3. Verify
70
+
71
+ Run the single-assertion verify command. Example:
72
+
73
+ ```bash
74
+ grep -q "Bosnia" src/flags.js && echo "FIX VERIFIED" || echo "FIX FAILED"
75
+ ```
76
+
77
+ ### 4. Commit
78
+
79
+ ```bash
80
+ git add <file>
81
+ git commit -m "fix(<scope>): <description>"
82
+ git commit --amend -m "fix(<scope>): <description>
83
+
84
+ Skipped skills (justified for data-only change):
85
+ - investigate-bug: root cause is a data gap, not a logic error
86
+ - diagnose-root: the missing data point is the root cause
87
+ - develop-tdd: single assertion proves correctness
88
+ - kickoff-branch: change is too small for a separate worktree"
89
+ ```
90
+
91
+ ### 5. Release
92
+
93
+ Invoke `release-branch` to merge and ship.
94
+
95
+ ## Verify
96
+
97
+ ```bash
98
+ test -f quick-fix/SKILL.md && echo "OK: skill file exists" || echo "FAIL: no skill file"
99
+ grep -q "name: quick-fix" quick-fix/SKILL.md && echo "OK: frontmatter" || echo "FAIL: frontmatter"
100
+ grep -qi "data.only\|trivial\|fast.path\|guardrail\|abort" quick-fix/SKILL.md && echo "OK: entry criteria and guardrails"
101
+ grep -q "quick-fix" SKILL-INDEX.md && echo "OK: in SKILL-INDEX"
102
+ ```
103
+
104
+ ## Example
105
+
106
+ ### Bosnia flag missing from FLAGS dictionary
107
+
108
+ ```gherkin
109
+ Given a bug where FLAGS dictionary is missing entry "Bosnia"
110
+ And no logic depends on the missing entry (purely a data gap)
111
+ When the agent invokes quick-fix
112
+ Then the missing entry is added to the dictionary
113
+ And a one-line verify confirms the key exists: grep -q "Bosnia" src/flags.js
114
+ And a fix: commit is created with the skipped-skills rationale in the body
115
+ And the change is ready for release-branch
116
+ ```
@@ -28,6 +28,8 @@ If unsure and working alone, prefer **solo-local**.
28
28
 
29
29
  ## Process
30
30
 
31
+ > **Timing:** `bash scripts/bp-timing.sh start release-branch` at invocation; `bash scripts/bp-timing.sh end release-branch` before handoff.
32
+
31
33
  ### 1. Final verification
32
34
 
33
35
  ```bash
@@ -15,6 +15,8 @@ Orchestrate-project 6 phases: Phase 1 Discover - Phase 2 Elaborate - Phase 3 Pla
15
15
 
16
16
  ## Process
17
17
 
18
+ > **Timing:** `bash scripts/bp-timing.sh start survey-context` at invocation; `bash scripts/bp-timing.sh end survey-context` before handoff.
19
+
18
20
  ### 1. Read CONVENTIONS.md
19
21
 
20
22
  If `CONVENTIONS.md` exists at the project root, read it first. It contains the rules all agents must follow in this project.
@@ -18,6 +18,8 @@ Review answers "is the code good?"; Verify answers "does the built thing do what
18
18
 
19
19
  ## Process
20
20
 
21
+ > **Timing:** `bash scripts/bp-timing.sh start verify-work` at invocation; `bash scripts/bp-timing.sh end verify-work` before handoff.
22
+
21
23
  0. **Branch check** — must not be `main`/`master`.
22
24
 
23
25
  1. Read active story tasks from `specs/epics/<capsule>/eNNsYY-tasks.yaml` and story spec from `specs/epics/<capsule>/eNNsYY-<slug>.md` (countable-story-format, Gherkin in §17).
@@ -32,6 +32,8 @@ If you catch yourself thinking these, stop and reconsider — you are likely dev
32
32
 
33
33
  ## Workflow
34
34
 
35
+ > **Timing:** `bash scripts/bp-timing.sh start develop-tdd` at invocation; `bash scripts/bp-timing.sh end develop-tdd` before handoff.
36
+
35
37
  ### 1. Planning
36
38
 
37
39
  - [ ] Read active `specs/epics/*/epic.yaml` story tasks or `specs/bugs/BUG-*.md` — understand verify steps
@@ -38,6 +38,8 @@ If this plan touches an existing module, run `assess-impact` first to understand
38
38
 
39
39
  ## Process
40
40
 
41
+ > **Timing:** `bash scripts/bp-timing.sh start plan-work` at invocation; `bash scripts/bp-timing.sh end plan-work` before handoff.
42
+
41
43
  1. **Explore** — Use `Explore` subagent to understand affected modules, existing test patterns, similar prior art, and dependencies.
42
44
 
43
45
  2. **Draft steps** — Break implementation into the smallest possible steps where each step leaves the codebase working, has one observable outcome, and can be verified with a single command. Red-flag check: name any rationalization you caught before moving to step 3.
@@ -0,0 +1,118 @@
1
+ ---
2
+ name: quick-fix
3
+ description: "\"Streamlined fast-path for trivial data-only fixes — no TDD, no branching ceremony. Collapses 6 skills into 2 for changes that are purely data with no logic risk. Aborts with fallback to investigate-bug if guardrails trigger.\""
4
+ model: sonnet
5
+ ---
6
+
7
+
8
+
9
+ # Quick Fix
10
+
11
+ Fast-track for trivial data-only fixes that do not require the full bug-fix chain.
12
+
13
+ When a bug fix is purely data — an add-missing-key, a typo correction, a config value update — the standard 6-skill chain (investigate-bug → diagnose-root → develop-tdd → kickoff-branch → verify-work → release-branch) is wasteful overhead. Quick-fix collapses it to 2 skills: **quick-fix** then **release-branch**.
14
+
15
+ ## Entry Criteria (ALL must be true)
16
+
17
+ Before invoking quick-fix, evaluate every item in this checklist:
18
+
19
+ 1. **Purely data change** — adding a missing key, fixing a typo, updating a config value, correcting a constant
20
+ 2. **No logic change** — no function signature, condition, loop, or control flow is modified
21
+ 3. **No refactor risk** — the change does not reorganize or rename existing structures
22
+ 4. **No API surface change** — no exported symbol, interface, or contract changes
23
+ 5. **Verifiable with a single assertion** — one test, one curl, one grep can prove it works
24
+ 6. **Affects ≤ 1 file**
25
+ 7. **Affects ≤ 5 lines changed**
26
+
27
+ ## Guardrails (HARD ABORT — all must pass)
28
+
29
+ If ANY guardrail triggers, **abort immediately** and suggest `investigate-bug` instead:
30
+
31
+ | Guardrail | Check |
32
+ |-----------|-------|
33
+ | **>1 file** | The fix touches more than one file |
34
+ | **>5 lines** | The diff exceeds 5 lines |
35
+ | **Logic change** | Any function signature, condition, or loop is modified |
36
+ | **Complex verify** | The verify command is more than one pipeline |
37
+ | **Test breakage** | Running `npm test` or equivalent breaks any existing test |
38
+
39
+ > **Fallback:** If any guardrail triggers, tell the user: *"This fix exceeds quick-fix guardrails. Use `investigate-bug` for the full TDD bug-fix chain instead."*
40
+
41
+ ## Fast-Path Workflow
42
+
43
+ Only 2 skills needed for eligible fixes:
44
+
45
+ ```
46
+ quick-fix → apply change, run one-line verify, commit with fix:
47
+ release-branch → merge and ship (existing skill)
48
+ ```
49
+
50
+ **Skipped skills (with justification):**
51
+
52
+ | Skipped skill | Why skipped |
53
+ |---------------|-------------|
54
+ | `investigate-bug` | Root cause is obvious (data gap, not logic error) |
55
+ | `diagnose-root` | No isolation needed — the data point is the root cause |
56
+ | `develop-tdd` | No logic to test — single assertion proves correctness |
57
+ | `kickoff-branch` | Change is so small it does not warrant a separate worktree |
58
+
59
+ > Justification is included in the `fix:` commit body so the audit trail is preserved.
60
+
61
+ ## Process
62
+
63
+ ### 1. Evaluate entry criteria
64
+
65
+ Run the entry criteria checklist above. If any criterion fails → abort, suggest `investigate-bug`.
66
+
67
+ ### 2. Apply the fix
68
+
69
+ Make the data change — add the missing key, fix the typo, update the value. Keep it to ≤5 lines in 1 file.
70
+
71
+ ### 3. Verify
72
+
73
+ Run the single-assertion verify command. Example:
74
+
75
+ ```bash
76
+ grep -q "Bosnia" src/flags.js && echo "FIX VERIFIED" || echo "FIX FAILED"
77
+ ```
78
+
79
+ ### 4. Commit
80
+
81
+ ```bash
82
+ git add <file>
83
+ git commit -m "fix(<scope>): <description>"
84
+ git commit --amend -m "fix(<scope>): <description>
85
+
86
+ Skipped skills (justified for data-only change):
87
+ - investigate-bug: root cause is a data gap, not a logic error
88
+ - diagnose-root: the missing data point is the root cause
89
+ - develop-tdd: single assertion proves correctness
90
+ - kickoff-branch: change is too small for a separate worktree"
91
+ ```
92
+
93
+ ### 5. Release
94
+
95
+ Invoke `release-branch` to merge and ship.
96
+
97
+ ## Verify
98
+
99
+ ```bash
100
+ test -f quick-fix/SKILL.md && echo "OK: skill file exists" || echo "FAIL: no skill file"
101
+ grep -q "name: quick-fix" quick-fix/SKILL.md && echo "OK: frontmatter" || echo "FAIL: frontmatter"
102
+ grep -qi "data.only\|trivial\|fast.path\|guardrail\|abort" quick-fix/SKILL.md && echo "OK: entry criteria and guardrails"
103
+ grep -q "quick-fix" SKILL-INDEX.md && echo "OK: in SKILL-INDEX"
104
+ ```
105
+
106
+ ## Example
107
+
108
+ ### Bosnia flag missing from FLAGS dictionary
109
+
110
+ ```gherkin
111
+ Given a bug where FLAGS dictionary is missing entry "Bosnia"
112
+ And no logic depends on the missing entry (purely a data gap)
113
+ When the agent invokes quick-fix
114
+ Then the missing entry is added to the dictionary
115
+ And a one-line verify confirms the key exists: grep -q "Bosnia" src/flags.js
116
+ And a fix: commit is created with the skipped-skills rationale in the body
117
+ And the change is ready for release-branch
118
+ ```
@@ -30,6 +30,8 @@ If unsure and working alone, prefer **solo-local**.
30
30
 
31
31
  ## Process
32
32
 
33
+ > **Timing:** `bash scripts/bp-timing.sh start release-branch` at invocation; `bash scripts/bp-timing.sh end release-branch` before handoff.
34
+
33
35
  ### 1. Final verification
34
36
 
35
37
  ```bash
@@ -17,6 +17,8 @@ Orchestrate-project 6 phases: Phase 1 Discover - Phase 2 Elaborate - Phase 3 Pla
17
17
 
18
18
  ## Process
19
19
 
20
+ > **Timing:** `bash scripts/bp-timing.sh start survey-context` at invocation; `bash scripts/bp-timing.sh end survey-context` before handoff.
21
+
20
22
  ### 1. Read CONVENTIONS.md
21
23
 
22
24
  If `CONVENTIONS.md` exists at the project root, read it first. It contains the rules all agents must follow in this project.
@@ -20,6 +20,8 @@ Review answers "is the code good?"; Verify answers "does the built thing do what
20
20
 
21
21
  ## Process
22
22
 
23
+ > **Timing:** `bash scripts/bp-timing.sh start verify-work` at invocation; `bash scripts/bp-timing.sh end verify-work` before handoff.
24
+
23
25
  0. **Branch check** — must not be `main`/`master`.
24
26
 
25
27
  1. Read active story tasks from `specs/epics/<capsule>/eNNsYY-tasks.yaml` and story spec from `specs/epics/<capsule>/eNNsYY-<slug>.md` (countable-story-format, Gherkin in §17).
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ # [2.20.0](https://github.com/danielvm-git/bigpowers/compare/v2.19.0...v2.20.0) (2026-06-21)
2
+
3
+
4
+ ### Features
5
+
6
+ * **e18:** quality gates & impact analysis — complete all 5 stories ([e8b06f9](https://github.com/danielvm-git/bigpowers/commit/e8b06f920cd4a71beabf7df96f6ab6e526c57c1f))
7
+
8
+ # [2.19.0](https://github.com/danielvm-git/bigpowers/compare/v2.18.0...v2.19.0) (2026-06-21)
9
+
10
+
11
+ ### Features
12
+
13
+ * **skill:** quick-fix — fast-path for trivial data-only fixes ([77090cb](https://github.com/danielvm-git/bigpowers/commit/77090cb8236c8fc1129773be4391abb67c9401a9))
14
+
1
15
  # [2.18.0](https://github.com/danielvm-git/bigpowers/compare/v2.17.0...v2.18.0) (2026-06-21)
2
16
 
3
17
 
package/SKILL-INDEX.md CHANGED
@@ -3,8 +3,8 @@
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-21T21:42:28Z
7
- **Skills:** 67
6
+ **Generated:** 2026-06-21T22:00:07Z
7
+ **Skills:** 68
8
8
 
9
9
  ---
10
10
 
@@ -15,11 +15,11 @@
15
15
  | Discover | 6 | `elaborate-spec, map-codebase, research-first, search-skills, survey-context, using-bigpowers` |
16
16
  | Design | 7 | `deepen-architecture, define-language, define-success, design-interface, grill-me, grill-with-docs, model-domain` |
17
17
  | Plan | 9 | `assess-impact, change-request, plan-refactor, plan-release, plan-work, run-planning, scope-work, seed-conventions, slice-tasks` |
18
- | Build | 17 | `align-grid, build-epic, craft-skill, deploy, develop-tdd, execute-plan, guard-git, hook-commits, kickoff-branch, orchestrate-project, publish-package, setup-environment, smoke-test, spike-prototype, validate-contracts, wire-ci, wire-observability` |
18
+ | Build | 18 | `align-grid, build-epic, craft-skill, deploy, develop-tdd, execute-plan, guard-git, hook-commits, kickoff-branch, orchestrate-project, publish-package, quick-fix, setup-environment, smoke-test, spike-prototype, validate-contracts, wire-ci, wire-observability` |
19
19
  | Verify | 12 | `audit-code, diagnose-root, enforce-first, fix-bug, inspect-quality, investigate-bug, request-review, respond-review, run-evals, trace-requirement, validate-fix, verify-work` |
20
20
  | Release | 2 | `commit-message, release-branch` |
21
21
  | Sustain | 13 | `compose-workflow, delegate-task, dispatch-agents, edit-document, evolve-skill, migrate-spec, organize-workspace, reset-baseline, session-state, simulate-agents, stocktake-skills, terse-mode, write-document` |
22
- | **TOTAL** | **66** | |
22
+ | **TOTAL** | **67** | |
23
23
 
24
24
  ---
25
25
 
@@ -60,41 +60,42 @@
60
60
  | 31 | Build | `kickoff-branch` | Create a git worktree and feature branch, then verify a clean test baseline befo | ✅ Active |
61
61
  | 32 | Build | `orchestrate-project` | Meta-skill that enforces the 6-phase core loop (discover → elaborate → plan | ✅ Active |
62
62
  | 33 | Build | `publish-package` | "Package registry publishing for npm, crates.io, PyPI, and Homebrew. Verifies pr | ✅ Active |
63
- | 34 | Build | `setup-environment` | Pre-install dependencies and configure tools before development work begins. Use | ✅ Active |
64
- | 35 | Build | `smoke-test` | "Post-deploy health-check against a live URL. Validates HTTP status, response co | ✅ Active |
65
- | 36 | Build | `spike-prototype` | Throw-away prototype for unknown problem spaces. Output is learning notes in spe | ✅ Active |
66
- | 37 | Build | `validate-contracts` | "Assert data shape consistency across system boundaries live API responses a | ✅ Active |
67
- | 38 | Build | `wire-ci` | "CI pipeline setup with pre-built templates and local validation. Generates GitH | ✅ Active |
68
- | 39 | Build | `wire-observability` | Add structured JSON logging, observability commands, and idempotent setup script | ✅ Active |
69
- | 40 | Verify | `audit-code` | Self-review checklist for the coding agent to run before dispatching a reviewer. | ✅ Active |
70
- | 41 | Verify | `diagnose-root` | Run 4-phase root cause analysis reproduce, isolate, hypothesize, verify. Use | ✅ Active |
71
- | 42 | Verify | `enforce-first` | Apply the F.I.R.S.T test quality rubric (Fast, Independent, Repeatable, Self-Val | ✅ Active |
72
- | 43 | Verify | `fix-bug` | Bug fix orchestrator active_flow fix_bug; reads specs/bugs/BUG-*.md; chains | ✅ Active |
73
- | 44 | Verify | `inspect-quality` | Interactive QA session where user reports bugs or issues conversationally, and t | ✅ Active |
74
- | 45 | Verify | `investigate-bug` | Investigate a bug or issue by exploring the codebase to find root cause, then wr | ✅ Active |
75
- | 46 | Verify | `request-review` | Dispatch a fresh reviewer agent with a clean context to critique the code after | ✅ Active |
76
- | 47 | Verify | `respond-review` | Act on a reviewer agent's feedback systematically categorize findings, apply | ✅ Active |
77
- | 48 | Verify | `run-evals` | Eval-Driven Development define capability and regression evals before buildi | ✅ Active |
78
- | 49 | Verify | `trace-requirement` | Link story IDs from specs/release-plan.yaml + epic capsule directories to the im | ✅ Active |
79
- | 50 | Verify | `validate-fix` | Prove a fix works before declaring done re-run the failing test, run the ful | ✅ Active |
80
- | 51 | Verify | `verify-work` | Multi-phase UAT gatecold-start smoke, build, typecheck, lint, tests, step-b | ✅ Active |
81
- | 52 | Release | `commit-message` | Reviews working-tree changes, then drafts a Conventional Commits title/body and | ✅ Active |
82
- | 53 | Release | `release-branch` | Make the merge/PR/keep/discard decision for a feature branch, verify coverage ga | ✅ Active |
83
- | 54 | Sustain | `compose-workflow` | Chain multiple bigpowers skills into a custom workflow recipe saved in specs/. U | ✅ Active |
84
- | 55 | Sustain | `delegate-task` | Delegate one complex task to a single subagent, review its work in two stages be | ✅ Active |
85
- | 56 | Sustain | `dispatch-agents` | Dispatch multiple subagents in parallel on independent tasks. No waiting between | ✅ Active |
86
- | 57 | Sustain | `edit-document` | Edit and improve documents by restructuring sections, improving clarity, and tig | ✅ Active |
87
- | 58 | Sustain | `evolve-skill` | Benchmark-gated skill evolution consume bigpowers-benchmark report, propose | ✅ Active |
88
- | 59 | Sustain | `migrate-spec` | Detect GSD, spec-kit, or BMAD spec artifacts and transform them into bigpowers Y | ✅ Active |
89
- | 60 | Sustain | `organize-workspace` | Scans the active workspace for disposable artifacts—logs, caches, stale build | ✅ Active |
90
- | 61 | Sustain | `reset-baseline` | Restore the project to a known clean state between agent runs or experiments. Us | ✅ Active |
91
- | 62 | Sustain | `session-state` | Track implementation decisions and progress in specs/state.yaml to prevent conte | ✅ Active |
92
- | 63 | Sustain | `simulate-agents` | Run Mock User and Auditor agents against a feature in fresh contexts before huma | ✅ Active |
93
- | 64 | Sustain | `stocktake-skills` | Sequential subagent batch audit of the bigpowers skill catalog Quick Scan (c | ✅ Active |
94
- | 65 | Sustain | `terse-mode` | Fallback ultra-compressed communication mode. Cuts token usage ~75% by dropping | ✅ Active |
95
- | 66 | Sustain | `write-document` | Write, organize, and sync high-integrity technical documents using the BMAD meth | ✅ Active |
96
-
97
- **Total: 66 active skills.**
63
+ | 34 | Build | `quick-fix` | "Streamlined fast-path for trivial data-only fixes no TDD, no branching cere | ✅ Active |
64
+ | 35 | Build | `setup-environment` | Pre-install dependencies and configure tools before development work begins. Use | ✅ Active |
65
+ | 36 | Build | `smoke-test` | "Post-deploy health-check against a live URL. Validates HTTP status, response co | ✅ Active |
66
+ | 37 | Build | `spike-prototype` | Throw-away prototype for unknown problem spaces. Output is learning notes in spe | ✅ Active |
67
+ | 38 | Build | `validate-contracts` | "Assert data shape consistency across system boundaries live API responses a | ✅ Active |
68
+ | 39 | Build | `wire-ci` | "CI pipeline setup with pre-built templates and local validation. Generates GitH | ✅ Active |
69
+ | 40 | Build | `wire-observability` | Add structured JSON logging, observability commands, and idempotent setup script | ✅ Active |
70
+ | 41 | Verify | `audit-code` | Self-review checklist for the coding agent to run before dispatching a reviewer. | ✅ Active |
71
+ | 42 | Verify | `diagnose-root` | Run 4-phase root cause analysis reproduce, isolate, hypothesize, verify. Use | ✅ Active |
72
+ | 43 | Verify | `enforce-first` | Apply the F.I.R.S.T test quality rubric (Fast, Independent, Repeatable, Self-Val | ✅ Active |
73
+ | 44 | Verify | `fix-bug` | Bug fix orchestrator active_flow fix_bug; reads specs/bugs/BUG-*.md; chains | ✅ Active |
74
+ | 45 | Verify | `inspect-quality` | Interactive QA session where user reports bugs or issues conversationally, and t | ✅ Active |
75
+ | 46 | Verify | `investigate-bug` | Investigate a bug or issue by exploring the codebase to find root cause, then wr | ✅ Active |
76
+ | 47 | Verify | `request-review` | Dispatch a fresh reviewer agent with a clean context to critique the code after | ✅ Active |
77
+ | 48 | Verify | `respond-review` | Act on a reviewer agent's feedback systematically categorize findings, apply | ✅ Active |
78
+ | 49 | Verify | `run-evals` | Eval-Driven Development define capability and regression evals before buildi | ✅ Active |
79
+ | 50 | Verify | `trace-requirement` | Link story IDs from specs/release-plan.yaml + epic capsule directories to the im | ✅ Active |
80
+ | 51 | Verify | `validate-fix` | Prove a fix works before declaring done re-run the failing test, run the ful | ✅ Active |
81
+ | 52 | Verify | `verify-work` | Multi-phase UAT gate — cold-start smoke, build, typecheck, lint, tests, step-b | ✅ Active |
82
+ | 53 | Release | `commit-message` | Reviews working-tree changes, then drafts a Conventional Commits title/body and | ✅ Active |
83
+ | 54 | Release | `release-branch` | Make the merge/PR/keep/discard decision for a feature branch, verify coverage ga | ✅ Active |
84
+ | 55 | Sustain | `compose-workflow` | Chain multiple bigpowers skills into a custom workflow recipe saved in specs/. U | ✅ Active |
85
+ | 56 | Sustain | `delegate-task` | Delegate one complex task to a single subagent, review its work in two stages be | ✅ Active |
86
+ | 57 | Sustain | `dispatch-agents` | Dispatch multiple subagents in parallel on independent tasks. No waiting between | ✅ Active |
87
+ | 58 | Sustain | `edit-document` | Edit and improve documents by restructuring sections, improving clarity, and tig | ✅ Active |
88
+ | 59 | Sustain | `evolve-skill` | Benchmark-gated skill evolution consume bigpowers-benchmark report, propose | ✅ Active |
89
+ | 60 | Sustain | `migrate-spec` | Detect GSD, spec-kit, or BMAD spec artifacts and transform them into bigpowers Y | ✅ Active |
90
+ | 61 | Sustain | `organize-workspace` | Scans the active workspace for disposable artifacts—logs, caches, stale build | ✅ Active |
91
+ | 62 | Sustain | `reset-baseline` | Restore the project to a known clean state between agent runs or experiments. Us | ✅ Active |
92
+ | 63 | Sustain | `session-state` | Track implementation decisions and progress in specs/state.yaml to prevent conte | ✅ Active |
93
+ | 64 | Sustain | `simulate-agents` | Run Mock User and Auditor agents against a feature in fresh contexts before huma | ✅ Active |
94
+ | 65 | Sustain | `stocktake-skills` | Sequential subagent batch audit of the bigpowers skill catalog — Quick Scan (c | ✅ Active |
95
+ | 66 | Sustain | `terse-mode` | Fallback ultra-compressed communication mode. Cuts token usage ~75% by dropping | ✅ Active |
96
+ | 67 | Sustain | `write-document` | Write, organize, and sync high-integrity technical documents using the BMAD meth | ✅ Active |
97
+
98
+ **Total: 67 active skills.**
98
99
 
99
100
  ---
100
101
 
@@ -31,6 +31,8 @@ If you catch yourself thinking these, stop and reconsider — you are likely dev
31
31
 
32
32
  ## Workflow
33
33
 
34
+ > **Timing:** `bash scripts/bp-timing.sh start develop-tdd` at invocation; `bash scripts/bp-timing.sh end develop-tdd` before handoff.
35
+
34
36
  ### 1. Planning
35
37
 
36
38
  - [ ] Read active `specs/epics/*/epic.yaml` story tasks or `specs/bugs/BUG-*.md` — understand verify steps
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bigpowers",
3
- "version": "2.18.0",
3
+ "version": "2.20.0",
4
4
  "description": "61 agent skills for spec-driven, test-first software development by solo developers",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -37,6 +37,8 @@ If this plan touches an existing module, run `assess-impact` first to understand
37
37
 
38
38
  ## Process
39
39
 
40
+ > **Timing:** `bash scripts/bp-timing.sh start plan-work` at invocation; `bash scripts/bp-timing.sh end plan-work` before handoff.
41
+
40
42
  1. **Explore** — Use `Explore` subagent to understand affected modules, existing test patterns, similar prior art, and dependencies.
41
43
 
42
44
  2. **Draft steps** — Break implementation into the smallest possible steps where each step leaves the codebase working, has one observable outcome, and can be verified with a single command. Red-flag check: name any rationalization you caught before moving to step 3.
@@ -0,0 +1,117 @@
1
+ ---
2
+ name: quick-fix
3
+ description: "Streamlined fast-path for trivial data-only fixes — no TDD, no branching ceremony. Collapses 6 skills into 2 for changes that are purely data with no logic risk. Aborts with fallback to investigate-bug if guardrails trigger."
4
+ model: sonnet
5
+ ---
6
+
7
+
8
+ # Quick Fix
9
+
10
+ Fast-track for trivial data-only fixes that do not require the full bug-fix chain.
11
+
12
+ When a bug fix is purely data — an add-missing-key, a typo correction, a config value update — the standard 6-skill chain (investigate-bug → diagnose-root → develop-tdd → kickoff-branch → verify-work → release-branch) is wasteful overhead. Quick-fix collapses it to 2 skills: **quick-fix** then **release-branch**.
13
+
14
+ ## Entry Criteria (ALL must be true)
15
+
16
+ Before invoking quick-fix, evaluate every item in this checklist:
17
+
18
+ 1. **Purely data change** — adding a missing key, fixing a typo, updating a config value, correcting a constant
19
+ 2. **No logic change** — no function signature, condition, loop, or control flow is modified
20
+ 3. **No refactor risk** — the change does not reorganize or rename existing structures
21
+ 4. **No API surface change** — no exported symbol, interface, or contract changes
22
+ 5. **Verifiable with a single assertion** — one test, one curl, one grep can prove it works
23
+ 6. **Affects ≤ 1 file**
24
+ 7. **Affects ≤ 5 lines changed**
25
+
26
+ ## Guardrails (HARD ABORT — all must pass)
27
+
28
+ If ANY guardrail triggers, **abort immediately** and suggest `investigate-bug` instead:
29
+
30
+ | Guardrail | Check |
31
+ |-----------|-------|
32
+ | **>1 file** | The fix touches more than one file |
33
+ | **>5 lines** | The diff exceeds 5 lines |
34
+ | **Logic change** | Any function signature, condition, or loop is modified |
35
+ | **Complex verify** | The verify command is more than one pipeline |
36
+ | **Test breakage** | Running `npm test` or equivalent breaks any existing test |
37
+
38
+ > **Fallback:** If any guardrail triggers, tell the user: *"This fix exceeds quick-fix guardrails. Use `investigate-bug` for the full TDD bug-fix chain instead."*
39
+
40
+ ## Fast-Path Workflow
41
+
42
+ Only 2 skills needed for eligible fixes:
43
+
44
+ ```
45
+ quick-fix → apply change, run one-line verify, commit with fix:
46
+ release-branch → merge and ship (existing skill)
47
+ ```
48
+
49
+ **Skipped skills (with justification):**
50
+
51
+ | Skipped skill | Why skipped |
52
+ |---------------|-------------|
53
+ | `investigate-bug` | Root cause is obvious (data gap, not logic error) |
54
+ | `diagnose-root` | No isolation needed — the data point is the root cause |
55
+ | `develop-tdd` | No logic to test — single assertion proves correctness |
56
+ | `kickoff-branch` | Change is so small it does not warrant a separate worktree |
57
+
58
+ > Justification is included in the `fix:` commit body so the audit trail is preserved.
59
+
60
+ ## Process
61
+
62
+ ### 1. Evaluate entry criteria
63
+
64
+ Run the entry criteria checklist above. If any criterion fails → abort, suggest `investigate-bug`.
65
+
66
+ ### 2. Apply the fix
67
+
68
+ Make the data change — add the missing key, fix the typo, update the value. Keep it to ≤5 lines in 1 file.
69
+
70
+ ### 3. Verify
71
+
72
+ Run the single-assertion verify command. Example:
73
+
74
+ ```bash
75
+ grep -q "Bosnia" src/flags.js && echo "FIX VERIFIED" || echo "FIX FAILED"
76
+ ```
77
+
78
+ ### 4. Commit
79
+
80
+ ```bash
81
+ git add <file>
82
+ git commit -m "fix(<scope>): <description>"
83
+ git commit --amend -m "fix(<scope>): <description>
84
+
85
+ Skipped skills (justified for data-only change):
86
+ - investigate-bug: root cause is a data gap, not a logic error
87
+ - diagnose-root: the missing data point is the root cause
88
+ - develop-tdd: single assertion proves correctness
89
+ - kickoff-branch: change is too small for a separate worktree"
90
+ ```
91
+
92
+ ### 5. Release
93
+
94
+ Invoke `release-branch` to merge and ship.
95
+
96
+ ## Verify
97
+
98
+ ```bash
99
+ test -f quick-fix/SKILL.md && echo "OK: skill file exists" || echo "FAIL: no skill file"
100
+ grep -q "name: quick-fix" quick-fix/SKILL.md && echo "OK: frontmatter" || echo "FAIL: frontmatter"
101
+ grep -qi "data.only\|trivial\|fast.path\|guardrail\|abort" quick-fix/SKILL.md && echo "OK: entry criteria and guardrails"
102
+ grep -q "quick-fix" SKILL-INDEX.md && echo "OK: in SKILL-INDEX"
103
+ ```
104
+
105
+ ## Example
106
+
107
+ ### Bosnia flag missing from FLAGS dictionary
108
+
109
+ ```gherkin
110
+ Given a bug where FLAGS dictionary is missing entry "Bosnia"
111
+ And no logic depends on the missing entry (purely a data gap)
112
+ When the agent invokes quick-fix
113
+ Then the missing entry is added to the dictionary
114
+ And a one-line verify confirms the key exists: grep -q "Bosnia" src/flags.js
115
+ And a fix: commit is created with the skipped-skills rationale in the body
116
+ And the change is ready for release-branch
117
+ ```
@@ -29,6 +29,8 @@ If unsure and working alone, prefer **solo-local**.
29
29
 
30
30
  ## Process
31
31
 
32
+ > **Timing:** `bash scripts/bp-timing.sh start release-branch` at invocation; `bash scripts/bp-timing.sh end release-branch` before handoff.
33
+
32
34
  ### 1. Final verification
33
35
 
34
36
  ```bash
@@ -48,6 +48,7 @@ PHASE_MAP=(
48
48
  [build-epic]="Build"
49
49
  [spike-prototype]="Build"
50
50
  [craft-skill]="Build"
51
+ [quick-fix]="Build"
51
52
  [setup-environment]="Build"
52
53
  [wire-observability]="Build"
53
54
  [wire-ci]="Build"
package/skills-lock.json CHANGED
@@ -73,7 +73,7 @@
73
73
  },
74
74
  "develop-tdd": {
75
75
  "description": "Test-driven development with red-green-refactor loop using vertical slices. Use for features (epic tasks) or bugs (specs/bugs/BUG-*.md).",
76
- "sha256": "4002d960b18436cd",
76
+ "sha256": "6ace47f7db4642d4",
77
77
  "path": "develop-tdd/SKILL.md"
78
78
  },
79
79
  "diagnose-root": {
@@ -188,7 +188,7 @@
188
188
  },
189
189
  "plan-work": {
190
190
  "description": "\"PLANNING SPINE STEP 3 of 3 — Plan the work: write detailed implementation tasks into the active epic capsule (specs/epics/eNN-slug/). Produces countable-story-format .md specs and runnable -tasks.yaml files. Use after slice-tasks (step 2). Not a substitute for scope-work (step 1) or slice-tasks (step 2).\"",
191
- "sha256": "12d45efb07a36e94",
191
+ "sha256": "2e171101c1e24469",
192
192
  "path": "plan-work/SKILL.md"
193
193
  },
194
194
  "publish-package": {
@@ -196,9 +196,14 @@
196
196
  "sha256": "25ead1dd4d174d54",
197
197
  "path": "publish-package/SKILL.md"
198
198
  },
199
+ "quick-fix": {
200
+ "description": "\"Streamlined fast-path for trivial data-only fixes — no TDD, no branching ceremony. Collapses 6 skills into 2 for changes that are purely data with no logic risk. Aborts with fallback to investigate-bug if guardrails trigger.\"",
201
+ "sha256": "6b83f22481ff4995",
202
+ "path": "quick-fix/SKILL.md"
203
+ },
199
204
  "release-branch": {
200
205
  "description": "Make the merge/PR/keep/discard decision for a feature branch, verify coverage gates, create the PR with gh, and clean up the worktree. Use when a feature is done and ready to ship, or when user says \"release\", \"merge\", or \"open a PR\".",
201
- "sha256": "6b2df2c92230d098",
206
+ "sha256": "140f4bec3690bd51",
202
207
  "path": "release-branch/SKILL.md"
203
208
  },
204
209
  "request-review": {
@@ -283,7 +288,7 @@
283
288
  },
284
289
  "survey-context": {
285
290
  "description": "Per-task context bootstrap — reads existing specs/ and tech-architecture docs to map the current lifecycle phase and suggest the next skill. Use at the start of any task, when returning after a break, or when unsure what to do next. For deriving a tech-stack doc from scratch, use map-codebase first.",
286
- "sha256": "891e840a2f292f23",
291
+ "sha256": "7b68756f984ede71",
287
292
  "path": "survey-context/SKILL.md"
288
293
  },
289
294
  "terse-mode": {
@@ -313,7 +318,7 @@
313
318
  },
314
319
  "verify-work": {
315
320
  "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.",
316
- "sha256": "aac80130ca0776ff",
321
+ "sha256": "a05a1d7ab2a959aa",
317
322
  "path": "verify-work/SKILL.md"
318
323
  },
319
324
  "visual-dashboard": {
@@ -16,6 +16,8 @@ Orchestrate-project 6 phases: Phase 1 Discover - Phase 2 Elaborate - Phase 3 Pla
16
16
 
17
17
  ## Process
18
18
 
19
+ > **Timing:** `bash scripts/bp-timing.sh start survey-context` at invocation; `bash scripts/bp-timing.sh end survey-context` before handoff.
20
+
19
21
  ### 1. Read CONVENTIONS.md
20
22
 
21
23
  If `CONVENTIONS.md` exists at the project root, read it first. It contains the rules all agents must follow in this project.
@@ -19,6 +19,8 @@ Review answers "is the code good?"; Verify answers "does the built thing do what
19
19
 
20
20
  ## Process
21
21
 
22
+ > **Timing:** `bash scripts/bp-timing.sh start verify-work` at invocation; `bash scripts/bp-timing.sh end verify-work` before handoff.
23
+
22
24
  0. **Branch check** — must not be `main`/`master`.
23
25
 
24
26
  1. Read active story tasks from `specs/epics/<capsule>/eNNsYY-tasks.yaml` and story spec from `specs/epics/<capsule>/eNNsYY-<slug>.md` (countable-story-format, Gherkin in §17).