bigpowers 1.0.0 → 1.1.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 +21 -0
- package/CLAUDE.md +10 -8
- package/CONVENTIONS.md +8 -3
- package/GEMINI.md +9 -8
- package/README.md +57 -21
- package/RELEASE.md +10 -0
- package/SKILL-INDEX.md +98 -88
- package/assess-impact/SKILL.md +1 -0
- package/audit-code/SKILL.md +18 -0
- package/change-request/SKILL.md +1 -0
- package/commit-message/SKILL.md +1 -0
- package/compose-workflow/REFERENCE.md +13 -0
- package/compose-workflow/SKILL.md +23 -0
- package/countable-story-format.md +1 -1
- package/craft-skill/REFERENCE.md +1 -1
- package/craft-skill/SKILL.md +6 -1
- package/deepen-architecture/SKILL.md +15 -2
- package/define-language/SKILL.md +1 -0
- package/define-success/SKILL.md +1 -0
- package/delegate-task/SKILL.md +7 -2
- package/design-interface/SKILL.md +1 -0
- package/develop-tdd/SKILL.md +10 -9
- package/diagnose-root/SKILL.md +22 -0
- package/dispatch-agents/SKILL.md +13 -3
- package/edit-document/SKILL.md +1 -0
- package/elaborate-spec/SKILL.md +1 -0
- package/enforce-first/SKILL.md +1 -0
- package/evolve-skill/REFERENCE.md +12 -0
- package/evolve-skill/SKILL.md +24 -0
- package/execute-plan/SKILL.md +12 -4
- package/grill-me/SKILL.md +1 -0
- package/grill-with-docs/REFERENCE.md +5 -0
- package/grill-with-docs/SKILL.md +28 -0
- package/guard-git/REFERENCE.md +36 -6
- package/guard-git/SKILL.md +5 -2
- package/guard-git/scripts/lib/git-guardrails-core.sh +0 -1
- package/hook-commits/SKILL.md +1 -0
- package/hooks/pre-tool-use.sh +43 -46
- package/inspect-quality/SKILL.md +9 -6
- package/investigate-bug/SKILL.md +18 -5
- package/kickoff-branch/SKILL.md +13 -5
- package/map-codebase/SKILL.md +1 -0
- package/migrate-spec/SKILL.md +1 -0
- package/model-domain/SKILL.md +10 -0
- package/opencode.json +1 -1
- package/orchestrate-project/REFERENCE.md +13 -7
- package/orchestrate-project/SKILL.md +7 -5
- package/organize-workspace/SKILL.md +1 -0
- package/package.json +3 -2
- package/plan-refactor/SKILL.md +1 -0
- package/plan-release/SKILL.md +1 -0
- package/plan-work/SKILL.md +8 -3
- package/profiles/node-service.md +28 -0
- package/profiles/solo-git.md +39 -0
- package/profiles/swift.md +27 -0
- package/profiles/typescript-vue.md +28 -0
- package/release-branch/SKILL.md +51 -11
- package/request-review/SKILL.md +2 -1
- package/research-first/REFERENCE.md +29 -0
- package/research-first/SKILL.md +31 -0
- package/reset-baseline/SKILL.md +21 -0
- package/respond-review/SKILL.md +1 -0
- package/run-evals/REFERENCE.md +27 -0
- package/run-evals/SKILL.md +27 -0
- package/scope-work/SKILL.md +22 -0
- package/scripts/add-model-frontmatter.sh +82 -0
- package/scripts/build-skill-index.sh +28 -0
- package/scripts/install.sh +5 -1
- package/scripts/land-branch.sh +166 -0
- package/scripts/sync-skills.sh +38 -3
- package/search-skills/SKILL.md +20 -0
- package/seed-conventions/SKILL.md +3 -0
- package/session-state/SKILL.md +25 -3
- package/setup-environment/SKILL.md +22 -0
- package/simulate-agents/SKILL.md +24 -0
- package/slice-tasks/SKILL.md +22 -0
- package/spike-prototype/SKILL.md +1 -0
- package/stocktake-skills/REFERENCE.md +8 -0
- package/stocktake-skills/SKILL.md +28 -0
- package/survey-context/SKILL.md +12 -11
- package/terse-mode/SKILL.md +1 -0
- package/trace-requirement/SKILL.md +1 -0
- package/using-bigpowers/SKILL.md +30 -4
- package/validate-fix/SKILL.md +9 -5
- package/verify-work/REFERENCE.md +23 -0
- package/verify-work/SKILL.md +39 -0
- package/visual-dashboard/SKILL.md +51 -1
- package/wire-observability/SKILL.md +1 -0
- package/write-document/REFERENCE.md +166 -0
- package/write-document/SKILL.md +12 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
## [1.1.1](https://github.com/danielvm-git/bigpowers/compare/v1.1.0...v1.1.1) (2026-05-31)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **scripts:** exit 0 to prevent false failure when OPN_TARGET is unset ([76bffd8](https://github.com/danielvm-git/bigpowers/commit/76bffd8cb7dd58f1e1e620017857d5491f10399e))
|
|
7
|
+
|
|
8
|
+
# [1.1.0](https://github.com/danielvm-git/bigpowers/compare/v1.0.0...v1.1.0) (2026-05-31)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **ci:** pass NODE_AUTH_TOKEN for setup-node npmrc auth ([03d58ee](https://github.com/danielvm-git/bigpowers/commit/03d58ee1c9a6b4f7c6c34f822f98363e1493f93e))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* **skills:** add and update a large number of skills ([a51d802](https://github.com/danielvm-git/bigpowers/commit/a51d802ccb1ebcd327e6ff7ef9d7e1471d62ca8e))
|
|
19
|
+
* **skills:** add Project README artifact type to write-document ([43f9f84](https://github.com/danielvm-git/bigpowers/commit/43f9f8473f221374ba8bfe326f8bf604cc213d7e))
|
|
20
|
+
* **workflow:** add solo git profile with land-branch.sh ([1840cd0](https://github.com/danielvm-git/bigpowers/commit/1840cd0011fc522825b72bb10a3f8d16886d902e))
|
|
21
|
+
|
|
1
22
|
# 1.0.0 (2026-05-23)
|
|
2
23
|
|
|
3
24
|
|
package/CLAUDE.md
CHANGED
|
@@ -4,21 +4,23 @@ Read CONVENTIONS.md before any GitHub or git operation.
|
|
|
4
4
|
|
|
5
5
|
## Project
|
|
6
6
|
|
|
7
|
-
bigpowers —
|
|
7
|
+
bigpowers — 58 agent skills for spec-driven, test-first software development by solo developers.
|
|
8
8
|
Stack: Markdown / Bash (documentation-based; skills integrate with Claude Code, Cursor, Gemini CLI)
|
|
9
9
|
|
|
10
10
|
## Commands
|
|
11
11
|
|
|
12
|
-
| Action
|
|
13
|
-
|
|
14
|
-
|
|
|
15
|
-
|
|
|
16
|
-
|
|
|
17
|
-
|
|
|
12
|
+
| Action | Command |
|
|
13
|
+
|---------|---------|
|
|
14
|
+
| Install | `npx bigpowers` or `npm install -g bigpowers` |
|
|
15
|
+
| Run | `bash scripts/sync-skills.sh` |
|
|
16
|
+
| Test | N/A (documentation project) |
|
|
17
|
+
| Build | `bash scripts/install.sh` (from source) |
|
|
18
|
+
| Lint | `bash scripts/sync-skills.sh` (validates SKILL.md syntax) |
|
|
19
|
+
| Compliance | `npm run compliance` |
|
|
18
20
|
|
|
19
21
|
## Architecture
|
|
20
22
|
|
|
21
|
-
Collection of
|
|
23
|
+
Collection of 58 verb-noun skills, each with a SKILL.md source file and supporting documentation. Includes Verify phase (verify-work, run-evals) and optional stack profiles in profiles/. The sync-skills.sh script auto-generates artifacts for Cursor (.cursor/rules) and Gemini CLI (.gemini/extensions/bigpowers/) from SKILL.md sources. All planning and spec output goes to specs/ at the project root.
|
|
22
24
|
|
|
23
25
|
## Conventions
|
|
24
26
|
|
package/CONVENTIONS.md
CHANGED
|
@@ -17,7 +17,9 @@ All changes to this repository MUST follow the [Conventional Commits 1.0.0](http
|
|
|
17
17
|
## GitHub & Git Operations
|
|
18
18
|
|
|
19
19
|
- No direct work on `main` or `master`. Every task MUST start with a feature branch or worktree via `kickoff-branch`.
|
|
20
|
-
- Use `gh pr create`
|
|
20
|
+
- **Integrate (team default):** Use `gh pr create` and `gh pr merge --squash` via `release-branch` (team-pr mode). Prefer `gh` over ad-hoc `git push` + manual PR UI.
|
|
21
|
+
- **Integrate (solo profile):** When `profiles/solo-git.md` or `specs/WORKFLOW-solo-git.md` is active, ship with `bash scripts/land-branch.sh <branch> "<conventional message>"` after `release-branch` gates — local squash to `main`, then push. PR is optional (remote CI / branch protection only).
|
|
22
|
+
- `git push origin <feature-branch>` is allowed for backup or CI; never push directly to `main`/`master` except via `land-branch.sh` (`GIT_BIGPOWERS_LAND=1`).
|
|
21
23
|
- Use `gh repo clone` not `git clone` for GitHub repos
|
|
22
24
|
- Use `gh run view` / `gh run watch` for CI status
|
|
23
25
|
- Verify auth with `gh auth status` before operations
|
|
@@ -50,10 +52,11 @@ Every skill that produces written output writes to `specs/` at the project root:
|
|
|
50
52
|
| Scope definition | `specs/SCOPE.md` |
|
|
51
53
|
| Task breakdown | `specs/TASKS.md` |
|
|
52
54
|
| Implementation plan | `specs/PLAN.md` (or `specs/PLAN-<feature>.md`) |
|
|
55
|
+
| Project README | `README.md` (project root) |
|
|
53
56
|
| Refactor plan | `specs/REFACTOR.md` |
|
|
54
57
|
| Spike learnings | `specs/SPIKE-<name>.md` |
|
|
55
|
-
| Bug investigation | `specs/
|
|
56
|
-
| QA session log | `specs/BUG-LOG.md` |
|
|
58
|
+
| Bug investigation | `specs/bugs/BUG-*.md` |
|
|
59
|
+
| QA session log | `specs/bugs/BUG-LOG.md` |
|
|
57
60
|
|
|
58
61
|
## Code Style
|
|
59
62
|
|
|
@@ -72,6 +75,8 @@ Every skill that produces written output writes to `specs/` at the project root:
|
|
|
72
75
|
- Prefer exceptions over error codes: throw/raise an exception rather than returning a numeric or boolean error sentinel.
|
|
73
76
|
- Remove dead code (G9/F4): unused functions, unreachable branches, and stale imports must be deleted — not commented out.
|
|
74
77
|
- Boy Scout Rule: leave every file you touch at least as clean as you found it. Fix the first broken window you see.
|
|
78
|
+
- **Law of Demeter:** A method should call only its immediate collaborators — not `a.getB().getC().doX()`. Chain violations need explicit justification in code review.
|
|
79
|
+
- **Verification mandate:** Every story in `specs/RELEASE-PLAN.md` must include a `## Verification Script`. No story is done until `verify-work` confirms it (or user explicitly waives with documented reason in STATE.md).
|
|
75
80
|
- Exception messages must include the offending value, expected shape, and an actionable remediation hint for the agent.
|
|
76
81
|
- SOLID beyond SRP: favor interfaces over concrete types (DIP) when injecting dependencies.
|
|
77
82
|
|
package/GEMINI.md
CHANGED
|
@@ -6,21 +6,22 @@ Read CONVENTIONS.md before any GitHub or git operation.
|
|
|
6
6
|
|
|
7
7
|
## Project
|
|
8
8
|
|
|
9
|
-
bigpowers —
|
|
9
|
+
bigpowers — 58 agent skills for spec-driven, test-first software development by solo developers.
|
|
10
10
|
Stack: Markdown / Bash (documentation-based; skills integrate with Claude Code, Cursor, Gemini CLI)
|
|
11
11
|
|
|
12
12
|
## Commands
|
|
13
13
|
|
|
14
|
-
| Action
|
|
15
|
-
|
|
16
|
-
|
|
|
17
|
-
|
|
|
18
|
-
|
|
|
19
|
-
|
|
|
14
|
+
| Action | Command |
|
|
15
|
+
|---------|---------|
|
|
16
|
+
| Install | `npx bigpowers` or `npm install -g bigpowers` |
|
|
17
|
+
| Run | `bash scripts/sync-skills.sh` |
|
|
18
|
+
| Test | N/A (documentation project) |
|
|
19
|
+
| Build | `bash scripts/install.sh` (from source) |
|
|
20
|
+
| Lint | `bash scripts/sync-skills.sh` (validates SKILL.md syntax) |
|
|
20
21
|
|
|
21
22
|
## Architecture
|
|
22
23
|
|
|
23
|
-
Collection of
|
|
24
|
+
Collection of 58 verb-noun skills, each with a SKILL.md source file and supporting documentation. Includes Verify phase and profiles/. The sync-skills.sh script auto-generates artifacts for Cursor (.cursor/rules) and Gemini CLI (.gemini/extensions/bigpowers/) from SKILL.md sources. All planning and spec output goes to specs/ at the project root.
|
|
24
25
|
|
|
25
26
|
## Conventions
|
|
26
27
|
|
package/README.md
CHANGED
|
@@ -1,25 +1,39 @@
|
|
|
1
1
|
# bigpowers — Best-in-Class Agentic Skills
|
|
2
2
|
|
|
3
3
|

|
|
4
|
-

|
|
5
|
+

|
|
6
6
|
|
|
7
|
-
**
|
|
7
|
+
**58 agent skills for high-integrity, spec-driven, test-first software development by solo developers.**
|
|
8
8
|
|
|
9
9
|
`bigpowers` provides a prescriptive, vertical-slice methodology for building software with AI agents (Claude Code, Gemini CLI, Cursor). It bridges the gap between raw LLM capabilities and professional engineering standards.
|
|
10
10
|
|
|
11
|
+
Published on npm: [bigpowers@1.0.0](https://www.npmjs.com/package/bigpowers)
|
|
12
|
+
|
|
11
13
|
---
|
|
12
14
|
|
|
13
15
|
## 🚀 Quick Start
|
|
14
16
|
|
|
17
|
+
### npm (recommended)
|
|
18
|
+
|
|
15
19
|
```bash
|
|
16
|
-
#
|
|
17
|
-
|
|
20
|
+
# One-shot setup — downloads, syncs artifacts, and links skills to your tools
|
|
21
|
+
npx bigpowers
|
|
18
22
|
|
|
19
|
-
#
|
|
20
|
-
|
|
23
|
+
# Or install globally and run the setup command anytime
|
|
24
|
+
npm install -g bigpowers
|
|
25
|
+
bigpowers
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Both commands sync skill artifacts and link them to Claude Code, Gemini CLI, and Cursor (see [Prerequisites](#-prerequisites)).
|
|
21
29
|
|
|
22
|
-
|
|
30
|
+
### From source (contributors)
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
git clone https://github.com/danielvm-git/bigpowers.git && cd bigpowers
|
|
34
|
+
npm install # runs postinstall: sync + link
|
|
35
|
+
# or manually:
|
|
36
|
+
bash scripts/install.sh
|
|
23
37
|
npm run sync
|
|
24
38
|
```
|
|
25
39
|
|
|
@@ -28,7 +42,7 @@ npm run sync
|
|
|
28
42
|
## 🛠 Prerequisites
|
|
29
43
|
|
|
30
44
|
- **Bash**: Required for all scripts.
|
|
31
|
-
- **Node.js**:
|
|
45
|
+
- **Node.js**: v14+ (required for npm/npx).
|
|
32
46
|
- **jq**: (Highly Recommended) Used for robust configuration of tool settings.
|
|
33
47
|
- **AI Tools**: One or more of:
|
|
34
48
|
- [Claude Code](https://claude.ai/code)
|
|
@@ -40,36 +54,58 @@ npm run sync
|
|
|
40
54
|
## 🔄 Maintenance (Update & Uninstall)
|
|
41
55
|
|
|
42
56
|
### Update
|
|
43
|
-
|
|
57
|
+
|
|
58
|
+
**npm install:**
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
npm update -g bigpowers
|
|
62
|
+
bigpowers # re-sync and refresh symlinks
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
**git clone:**
|
|
66
|
+
|
|
44
67
|
```bash
|
|
45
68
|
git pull
|
|
46
69
|
npm run sync
|
|
47
70
|
```
|
|
48
|
-
|
|
71
|
+
|
|
72
|
+
*Install uses symlinks — re-running setup refreshes links without duplicating files.*
|
|
49
73
|
|
|
50
74
|
### Uninstall
|
|
51
|
-
|
|
75
|
+
|
|
76
|
+
**npm install:**
|
|
77
|
+
|
|
78
|
+
```bash
|
|
79
|
+
bash "$(npm root -g)/bigpowers/scripts/install.sh" --uninstall
|
|
80
|
+
npm uninstall -g bigpowers
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
**git clone:**
|
|
84
|
+
|
|
52
85
|
```bash
|
|
53
86
|
bash scripts/install.sh --uninstall
|
|
54
87
|
```
|
|
55
88
|
|
|
56
89
|
### Reinstall
|
|
57
|
-
|
|
90
|
+
|
|
58
91
|
```bash
|
|
59
|
-
|
|
92
|
+
npx bigpowers
|
|
93
|
+
# or, if installed globally:
|
|
94
|
+
bigpowers
|
|
60
95
|
```
|
|
61
96
|
|
|
62
97
|
---
|
|
63
98
|
|
|
64
99
|
## 🏗 The BMAD Lifecycle
|
|
65
100
|
|
|
66
|
-
Every task in `bigpowers` follows a prescriptive
|
|
101
|
+
Every task in `bigpowers` follows a prescriptive lifecycle (see `SKILL-INDEX.md`):
|
|
67
102
|
|
|
68
|
-
1. **Discover**:
|
|
69
|
-
2. **Elaborate
|
|
70
|
-
3. **
|
|
71
|
-
4. **
|
|
72
|
-
5. **
|
|
103
|
+
1. **Discover**: survey-context, research-first, elaborate-spec.
|
|
104
|
+
2. **Elaborate / Plan**: scope-work, plan-work, slice-tasks.
|
|
105
|
+
3. **Build**: develop-tdd, execute-plan.
|
|
106
|
+
4. **Verify**: verify-work, run-evals — prove it works before review.
|
|
107
|
+
5. **Review / Release**: audit-code, request-review, release-branch.
|
|
108
|
+
6. **Sustain**: stocktake-skills, evolve-skill (benchmark-gated).
|
|
73
109
|
|
|
74
110
|
---
|
|
75
111
|
|
|
@@ -93,7 +129,7 @@ Every task in `bigpowers` follows a prescriptive 5-phase arc to ensure integrity
|
|
|
93
129
|
- `scripts/`: Installation, syncing, and compliance tools.
|
|
94
130
|
- `specs/`: The "Brain" of your project — all planning and decisions live here.
|
|
95
131
|
- `docs/references/`: Theoretical foundations (Uncle Bob, Ousterhout, Karpathy, etc.).
|
|
96
|
-
- `[skill-name]/`: Source files for each of the
|
|
132
|
+
- `[skill-name]/`: Source files for each of the 58 skills.
|
|
97
133
|
|
|
98
134
|
---
|
|
99
135
|
|
package/RELEASE.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Release & Publishing Guide
|
|
2
2
|
|
|
3
|
+
Package: [bigpowers on npm](https://www.npmjs.com/package/bigpowers)
|
|
4
|
+
|
|
3
5
|
## Quick Start
|
|
4
6
|
|
|
5
7
|
### 1. Setup (one-time)
|
|
@@ -68,6 +70,8 @@ See `.github/CONVENTIONAL-COMMITS.md` for full format.
|
|
|
68
70
|
|
|
69
71
|
## Manual Release (Local)
|
|
70
72
|
|
|
73
|
+
For full semantic-release (GitHub + npm + changelog):
|
|
74
|
+
|
|
71
75
|
```bash
|
|
72
76
|
export GITHUB_TOKEN=$(gh auth token)
|
|
73
77
|
export NPM_TOKEN=[from npmjs.org]
|
|
@@ -75,6 +79,12 @@ export NPM_TOKEN=[from npmjs.org]
|
|
|
75
79
|
npm run release
|
|
76
80
|
```
|
|
77
81
|
|
|
82
|
+
To publish the current `package.json` version to npm only:
|
|
83
|
+
|
|
84
|
+
```bash
|
|
85
|
+
npm publish
|
|
86
|
+
```
|
|
87
|
+
|
|
78
88
|
## Version History
|
|
79
89
|
|
|
80
90
|
All releases in:
|
package/SKILL-INDEX.md
CHANGED
|
@@ -2,88 +2,97 @@
|
|
|
2
2
|
|
|
3
3
|
**Purpose:** One canonical reference for all bigpowers skills. Referenced by README.md, RELEASE-PLAN.md, and CONVENTIONS.md. Updated per-release.
|
|
4
4
|
|
|
5
|
-
**Last updated:** 2026-05-
|
|
5
|
+
**Last updated:** 2026-05-25 (v3.0.0 — consolidation release; 58 active, 0 planned, Verify phase)
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
9
|
## Quick Navigation by BMAD Phase
|
|
10
10
|
|
|
11
|
-
| Phase | Active |
|
|
12
|
-
|
|
13
|
-
| **Bootstrap** | 1 |
|
|
14
|
-
| **Orchestrate** | 1 |
|
|
15
|
-
| **Discover** |
|
|
16
|
-
| **Elaborate** |
|
|
17
|
-
| **Plan** |
|
|
18
|
-
| **Spike** | 1 |
|
|
19
|
-
| **Initiate** | 4 |
|
|
20
|
-
| **Build** | 5 |
|
|
21
|
-
| **Harden** | 1 |
|
|
22
|
-
| **
|
|
23
|
-
| **
|
|
24
|
-
| **
|
|
25
|
-
| **
|
|
26
|
-
| **
|
|
27
|
-
| **
|
|
11
|
+
| Phase | Active | Skills |
|
|
12
|
+
|---|---|---|
|
|
13
|
+
| **Bootstrap** | 1 | using-bigpowers |
|
|
14
|
+
| **Orchestrate** | 1 | orchestrate-project |
|
|
15
|
+
| **Discover** | 4 | survey-context, research-first, elaborate-spec, map-codebase |
|
|
16
|
+
| **Elaborate** | 6 | model-domain, define-language, grill-me, grill-with-docs, deepen-architecture, design-interface |
|
|
17
|
+
| **Plan** | 8 | assess-impact, change-request, scope-work, slice-tasks, define-success, plan-work, plan-refactor, plan-release |
|
|
18
|
+
| **Spike** | 1 | spike-prototype |
|
|
19
|
+
| **Initiate** | 4 | kickoff-branch, guard-git, hook-commits, seed-conventions |
|
|
20
|
+
| **Build** | 5 | develop-tdd, enforce-first, delegate-task, dispatch-agents, execute-plan |
|
|
21
|
+
| **Harden** | 1 | wire-observability |
|
|
22
|
+
| **Verify** | 2 | verify-work, run-evals |
|
|
23
|
+
| **Bug** | 3 | investigate-bug, diagnose-root, validate-fix |
|
|
24
|
+
| **Review** | 4 | audit-code, request-review, respond-review, trace-requirement |
|
|
25
|
+
| **Integrate** | 2 | commit-message, release-branch |
|
|
26
|
+
| **Sustain** | 4 | inspect-quality, organize-workspace, stocktake-skills, evolve-skill |
|
|
27
|
+
| **Utility** | 12 | terse-mode, craft-skill, edit-document, session-state, migrate-spec, visual-dashboard, write-document, setup-environment, reset-baseline, search-skills, compose-workflow, simulate-agents |
|
|
28
|
+
| **TOTAL** | **58** | |
|
|
28
29
|
|
|
29
30
|
---
|
|
30
31
|
|
|
31
32
|
## Full Reference Table
|
|
32
33
|
|
|
33
|
-
| # | Phase | Skill | Intent | Artefact Output | Status |
|
|
34
|
-
|
|
35
|
-
| 1 | Bootstrap | `using-bigpowers` | Lifecycle intro; where to start | (dialogue) | ✅ Active |
|
|
36
|
-
| 2 | Orchestrate | `orchestrate-project` | Meta-skill enforcing 6-phase core loop
|
|
37
|
-
| 3 | Discover | `survey-context` | Per-task context map; suggests next skill |
|
|
38
|
-
| 4 | Discover | `
|
|
39
|
-
| 5 | Discover | `
|
|
40
|
-
| 6 |
|
|
41
|
-
| 7 | Elaborate | `
|
|
42
|
-
| 8 | Elaborate | `
|
|
43
|
-
| 9 | Elaborate | `grill-
|
|
44
|
-
| 10 | Elaborate | `
|
|
45
|
-
| 11 | Elaborate | `
|
|
46
|
-
| 12 |
|
|
47
|
-
| 13 | Plan | `
|
|
48
|
-
| 14 | Plan | `
|
|
49
|
-
| 15 | Plan | `
|
|
50
|
-
| 16 | Plan | `
|
|
51
|
-
| 17 | Plan | `
|
|
52
|
-
| 18 | Plan | `plan-
|
|
53
|
-
| 19 | Plan | `plan-
|
|
54
|
-
| 20 |
|
|
55
|
-
| 21 |
|
|
56
|
-
| 22 | Initiate | `
|
|
57
|
-
| 23 | Initiate | `
|
|
58
|
-
| 24 | Initiate | `
|
|
59
|
-
| 25 |
|
|
60
|
-
| 26 | Build | `
|
|
61
|
-
| 27 | Build | `
|
|
62
|
-
| 28 | Build | `
|
|
63
|
-
| 29 | Build | `
|
|
64
|
-
| 30 |
|
|
65
|
-
| 31 |
|
|
66
|
-
| 32 |
|
|
67
|
-
| 33 |
|
|
68
|
-
| 34 |
|
|
69
|
-
| 35 |
|
|
70
|
-
| 36 |
|
|
71
|
-
| 37 | Review | `
|
|
72
|
-
| 38 |
|
|
73
|
-
| 39 |
|
|
74
|
-
| 40 |
|
|
75
|
-
| 41 |
|
|
76
|
-
| 42 |
|
|
77
|
-
| 43 |
|
|
78
|
-
| 44 |
|
|
79
|
-
| 45 |
|
|
80
|
-
| 46 |
|
|
81
|
-
| 47 | Utility | `
|
|
82
|
-
| 48 | Utility | `
|
|
83
|
-
| 49 | Utility | `
|
|
84
|
-
| 50 | Utility | `
|
|
85
|
-
|
|
86
|
-
|
|
34
|
+
| # | Phase | Skill | Intent | Artefact Output | Status |
|
|
35
|
+
|---|---|---|---|---|---|
|
|
36
|
+
| 1 | Bootstrap | `using-bigpowers` | Lifecycle intro; where to start | (dialogue) | ✅ Active |
|
|
37
|
+
| 2 | Orchestrate | `orchestrate-project` | Meta-skill enforcing 6-phase core loop | (orchestration) | ✅ Active |
|
|
38
|
+
| 3 | Discover | `survey-context` | Per-task context map; suggests next skill | STATE.md update | ✅ Active |
|
|
39
|
+
| 4 | Discover | `research-first` | Look-before-build; prior art search | Prior Art in spec | ✅ Active |
|
|
40
|
+
| 5 | Discover | `elaborate-spec` | Dialogue to refine rough idea into spec | (dialogue) | ✅ Active |
|
|
41
|
+
| 6 | Discover | `map-codebase` | High-fidelity codebase survey | CONTEXT.md | ✅ Active |
|
|
42
|
+
| 7 | Elaborate | `model-domain` | Interactive domain model | CONTEXT.md, adr/ | ✅ Active |
|
|
43
|
+
| 8 | Elaborate | `define-language` | Extract ubiquitous language glossary | UBIQUITOUS_LANGUAGE.md | ✅ Active |
|
|
44
|
+
| 9 | Elaborate | `grill-me` | Stress-test design (Design + Docs modes) | (dialogue) | ✅ Active |
|
|
45
|
+
| 10 | Elaborate | `grill-with-docs` | Grill assumptions grounded in real library docs | (dialogue) | ✅ Active |
|
|
46
|
+
| 11 | Elaborate | `deepen-architecture` | Architecture deepening (Ousterhout deep modules) | CONTEXT.md | ✅ Active |
|
|
47
|
+
| 12 | Elaborate | `design-interface` | Multiple interface designs via parallel subagents | INTERFACE-OPTIONS.md | ✅ Active |
|
|
48
|
+
| 13 | Plan | `assess-impact` | Blast radius before code | IMPACT.md | ✅ Active |
|
|
49
|
+
| 14 | Plan | `change-request` | Add requirement or WSJF reorder | RELEASE-PLAN.md | ✅ Active |
|
|
50
|
+
| 15 | Plan | `scope-work` | Define in/out boundaries | SCOPE.md | ✅ Active |
|
|
51
|
+
| 16 | Plan | `slice-tasks` | Vertical slices | TASKS.md | ✅ Active |
|
|
52
|
+
| 17 | Plan | `define-success` | Step → verify pairs | (dialogue) | ✅ Active |
|
|
53
|
+
| 18 | Plan | `plan-work` | Detailed plan with verify steps | RELEASE-PLAN.md | ✅ Active |
|
|
54
|
+
| 19 | Plan | `plan-refactor` | Refactor plan via interview | REFACTOR.md | ✅ Active |
|
|
55
|
+
| 20 | Plan | `plan-release` | Release plan with Gherkin criteria | RELEASE-PLAN.md | ✅ Active |
|
|
56
|
+
| 21 | Spike | `spike-prototype` | Throw-away spike | SPIKE-<name>.md | ✅ Active |
|
|
57
|
+
| 22 | Initiate | `kickoff-branch` | Worktree + branch + test baseline | (git state) | ✅ Active |
|
|
58
|
+
| 23 | Initiate | `guard-git` | Block dangerous git commands | (git state) | ✅ Active |
|
|
59
|
+
| 24 | Initiate | `hook-commits` | Pre-commit hooks | (git state) | ✅ Active |
|
|
60
|
+
| 25 | Initiate | `seed-conventions` | CLAUDE.md + CONVENTIONS.md + specs/ | CLAUDE.md, CONVENTIONS.md | ✅ Active |
|
|
61
|
+
| 26 | Build | `develop-tdd` | Red → green → refactor TDD | src/ | ✅ Active |
|
|
62
|
+
| 27 | Build | `enforce-first` | F.I.R.S.T test-quality rubric | (checklist) | ✅ Active |
|
|
63
|
+
| 28 | Build | `delegate-task` | One subagent, sequential + review | (code) | ✅ Active |
|
|
64
|
+
| 29 | Build | `dispatch-agents` | Parallel subagents on independent tasks | (code) | ✅ Active |
|
|
65
|
+
| 30 | Build | `execute-plan` | Batch execute plan with checkpoints | src/ | ✅ Active |
|
|
66
|
+
| 31 | Harden | `wire-observability` | Structured logging + observability | src/, CLAUDE.md | ✅ Active |
|
|
67
|
+
| 32 | Verify | `verify-work` | Multi-phase UAT; loop on gaps | (dialogue) | ✅ Active |
|
|
68
|
+
| 33 | Verify | `run-evals` | EDD capability + regression evals | EVALS-<feature>.md | ✅ Active |
|
|
69
|
+
| 34 | Bug | `investigate-bug` | Investigate bug → diagnosis | bugs/BUG-*.md | ✅ Active |
|
|
70
|
+
| 35 | Bug | `diagnose-root` | 4-phase root cause analysis | bugs/BUG-*.md | ✅ Active |
|
|
71
|
+
| 36 | Bug | `validate-fix` | Prove fix works | (verify) | ✅ Active |
|
|
72
|
+
| 37 | Review | `audit-code` | Self-review checklist | (checklist) | ✅ Active |
|
|
73
|
+
| 38 | Review | `request-review` | Fresh reviewer agent | review-report | ✅ Active |
|
|
74
|
+
| 39 | Review | `respond-review` | Act on reviewer feedback | src/ | ✅ Active |
|
|
75
|
+
| 40 | Review | `trace-requirement` | Story ID → code/tests | TRACEABILITY.md | ✅ Active |
|
|
76
|
+
| 41 | Integrate | `commit-message` | Conventional Commits + semver | (git message) | ✅ Active |
|
|
77
|
+
| 42 | Integrate | `release-branch` | Merge/PR decision + cleanup | (git PR) | ✅ Active |
|
|
78
|
+
| 43 | Sustain | `inspect-quality` | Structured QA session | BUG-LOG.md | ✅ Active |
|
|
79
|
+
| 44 | Sustain | `organize-workspace` | Safe workspace cleanup | (filesystem) | ✅ Active |
|
|
80
|
+
| 45 | Sustain | `stocktake-skills` | Batch audit of skill catalog | specs/ audit report | ✅ Active |
|
|
81
|
+
| 46 | Sustain | `evolve-skill` | Benchmark-gated skill evolution | ADR, STATE.md | ✅ Active |
|
|
82
|
+
| 47 | Utility | `terse-mode` | Ultra-terse output (fallback) | (prompt) | ✅ Active |
|
|
83
|
+
| 48 | Utility | `craft-skill` | Build new bigpowers skill | skills/<name>/SKILL.md | ✅ Active |
|
|
84
|
+
| 49 | Utility | `edit-document` | Edit documents in specs/ | specs/<name>.md | ✅ Active |
|
|
85
|
+
| 50 | Utility | `session-state` | Track decisions in STATE.md | STATE.md | ✅ Active |
|
|
86
|
+
| 51 | Utility | `migrate-spec` | Migrate foreign spec formats | specs/ | ✅ Active |
|
|
87
|
+
| 52 | Utility | `visual-dashboard` | Browser dashboard | .bigpowers/dashboard/ | ✅ Active |
|
|
88
|
+
| 53 | Utility | `write-document` | BMAD technical documents | specs/<name>.md | ✅ Active |
|
|
89
|
+
| 54 | Utility | `setup-environment` | Pre-install deps before work | (.env, packages) | ✅ Active |
|
|
90
|
+
| 55 | Utility | `reset-baseline` | Restore clean known state | (clean tree) | ✅ Active |
|
|
91
|
+
| 56 | Utility | `search-skills` | Natural language → right skill | SKILL-SEARCH-INDEX.md | ✅ Active |
|
|
92
|
+
| 57 | Utility | `compose-workflow` | Chain skills into workflow recipe | WORKFLOW-<name>.md | ✅ Active |
|
|
93
|
+
| 58 | Utility | `simulate-agents` | Mock User + Auditor simulation | SIMULATION-<feature>.md | ✅ Active |
|
|
94
|
+
|
|
95
|
+
**Total: 58 ✅ Active, 0 📋 Planned.**
|
|
87
96
|
|
|
88
97
|
---
|
|
89
98
|
|
|
@@ -91,13 +100,13 @@
|
|
|
91
100
|
|
|
92
101
|
```
|
|
93
102
|
[First time]
|
|
94
|
-
using-bigpowers → orchestrate-project (
|
|
103
|
+
using-bigpowers → orchestrate-project (Standard / Fast-Track / Ad-Hoc)
|
|
95
104
|
↓
|
|
96
|
-
survey-context → elaborate-spec → map-codebase
|
|
105
|
+
survey-context → research-first → elaborate-spec → map-codebase
|
|
97
106
|
↓
|
|
98
|
-
|
|
107
|
+
model-domain / define-language / grill-me / grill-with-docs / design-interface / deepen-architecture
|
|
99
108
|
↓
|
|
100
|
-
assess-impact → change-request → define-success → plan-work / plan-refactor / plan-release
|
|
109
|
+
scope-work → assess-impact → change-request → define-success → slice-tasks → plan-work / plan-refactor / plan-release
|
|
101
110
|
↓
|
|
102
111
|
kickoff-branch → guard-git / hook-commits / seed-conventions
|
|
103
112
|
↓
|
|
@@ -107,16 +116,19 @@ survey-context → elaborate-spec → map-codebase
|
|
|
107
116
|
↓
|
|
108
117
|
wire-observability (production-readiness gate, any phase)
|
|
109
118
|
↓
|
|
110
|
-
|
|
119
|
+
★ VERIFY ★ run-evals → verify-work (prove it works)
|
|
120
|
+
↓
|
|
121
|
+
investigate-bug → diagnose-root → validate-fix
|
|
111
122
|
↓
|
|
112
123
|
audit-code → request-review → respond-review → trace-requirement
|
|
113
124
|
↓
|
|
114
125
|
commit-message → release-branch
|
|
115
126
|
↓
|
|
116
|
-
|
|
127
|
+
inspect-quality → organize-workspace → stocktake-skills → evolve-skill
|
|
117
128
|
|
|
118
129
|
Transversal utilities (any phase):
|
|
119
|
-
terse-mode, craft-skill, edit-document, session-state, migrate-spec, visual-dashboard,
|
|
130
|
+
terse-mode, craft-skill, edit-document, session-state, migrate-spec, visual-dashboard,
|
|
131
|
+
write-document, setup-environment, reset-baseline, search-skills, compose-workflow, simulate-agents
|
|
120
132
|
```
|
|
121
133
|
|
|
122
134
|
---
|
|
@@ -125,22 +137,20 @@ Transversal utilities (any phase):
|
|
|
125
137
|
|
|
126
138
|
| Icon | Meaning |
|
|
127
139
|
|---|---|
|
|
128
|
-
| ✅ Active |
|
|
129
|
-
| 📋 Planned | Designed
|
|
140
|
+
| ✅ Active | SKILL.md exists and is usable |
|
|
141
|
+
| 📋 Planned | Designed but not yet implemented |
|
|
130
142
|
| 🔄 Refactoring | Active but under revision |
|
|
131
143
|
| ⚠️ Deprecated | Will be removed in a future release |
|
|
132
144
|
|
|
133
145
|
## Naming Convention Notes
|
|
134
146
|
|
|
135
|
-
All skills follow `verb-noun` kebab-case (ADR-0001).
|
|
136
|
-
- `terse-mode` — adjective-noun; retained for clarity
|
|
137
|
-
- `visual-dashboard` — adjective-noun; retained for clarity
|
|
147
|
+
All skills follow `verb-noun` kebab-case (ADR-0001). Documented exceptions:
|
|
148
|
+
- `terse-mode` — adjective-noun; retained for clarity
|
|
149
|
+
- `visual-dashboard` — adjective-noun; retained for clarity
|
|
138
150
|
|
|
139
151
|
## How to Update
|
|
140
152
|
|
|
141
|
-
1. Every new skill: add a row here before
|
|
142
|
-
2.
|
|
143
|
-
3. Every phase change: update the Phase column.
|
|
144
|
-
4. After any change: bump the "Last updated" date and run `bash scripts/sync-skills.sh`.
|
|
153
|
+
1. Every new skill: add a row here before publishing.
|
|
154
|
+
2. After any change: bump "Last updated" and run `bash scripts/sync-skills.sh`.
|
|
145
155
|
|
|
146
156
|
→ verify: `find . -maxdepth 2 -name "SKILL.md" | grep -v ".git\|.cursor\|.gemini" | wc -l`
|
package/assess-impact/SKILL.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: assess-impact
|
|
3
|
+
model: sonnet
|
|
3
4
|
description: Analyze the blast radius of a proposed change before any code is written. Maps dependents, affected stories, and test coverage. Produces specs/IMPACT.md. Use before plan-work on any non-trivial change, when touching a shared module, or when the user asks "what does this break?".
|
|
4
5
|
---
|
|
5
6
|
|
package/audit-code/SKILL.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: audit-code
|
|
3
|
+
model: haiku
|
|
3
4
|
description: Self-review checklist for the coding agent to run before dispatching a reviewer. Checks CONVENTIONS.md compliance, Boy Scout Rule, test coverage, types, and SOLID. Produces a pass/fail checklist. Use before request-review, before committing, or when user asks for a code quality check.
|
|
4
5
|
---
|
|
5
6
|
|
|
@@ -11,6 +12,23 @@ Run this self-review before asking anyone else to look at the code. The goal is
|
|
|
11
12
|
|
|
12
13
|
## Checklist
|
|
13
14
|
|
|
15
|
+
### Supply Chain & Security
|
|
16
|
+
|
|
17
|
+
- [ ] slopcheck run for new dependencies; packages tagged in plan-work: `[OK]`, `[SUS]`, or `[SLOP]`
|
|
18
|
+
- [ ] No `[SLOP]` packages without documented human approval
|
|
19
|
+
- [ ] No secrets in diff (`sk-`, `ghp_`, `AKIA`, `.env` values) — see `guard-git` patterns
|
|
20
|
+
- [ ] OWASP Top 10 spot-check: injection, broken auth, sensitive data exposure, misconfiguration (see `docs/references/security-threats.md`)
|
|
21
|
+
|
|
22
|
+
### Provenance & Metadata
|
|
23
|
+
|
|
24
|
+
- [ ] New plan artefacts include `type:` and `context:` metadata
|
|
25
|
+
- [ ] Implementation steps reference ADR or commit SHA where decisions were made
|
|
26
|
+
|
|
27
|
+
### Law of Demeter
|
|
28
|
+
|
|
29
|
+
- [ ] No method chains through unrelated objects (e.g. `a.getB().getC().doX()`)
|
|
30
|
+
- [ ] Collaborators talk to immediate neighbors only; law violations need explicit justification
|
|
31
|
+
|
|
14
32
|
### CONVENTIONS.md Compliance
|
|
15
33
|
|
|
16
34
|
- [ ] All output files are in `specs/` (no docs written to project root)
|
package/change-request/SKILL.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: change-request
|
|
3
|
+
model: sonnet
|
|
3
4
|
description: Add a new requirement or reorder epics by WSJF value engineering against specs/RELEASE-PLAN.md. Two modes: Add (intake a new requirement mid-flight) and Reorder (re-score and re-sort all epics/stories). Use when a new requirement arrives mid-release, or when the plan needs prioritization.
|
|
4
5
|
---
|
|
5
6
|
|
package/commit-message/SKILL.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: commit-message
|
|
3
|
+
model: haiku
|
|
3
4
|
description: Reviews working-tree changes, then drafts a Conventional Commits title/body and states the semantic-release version bump a single such commit would imply. Also notes which defensive-code categories were touched. Use when the user wants to commit recent work, prepare a Conventional Commits message, or asks for semantic-release / semver-consistent messaging before git commit.
|
|
4
5
|
---
|
|
5
6
|
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Workflow template
|
|
2
|
+
|
|
3
|
+
```markdown
|
|
4
|
+
# WORKFLOW: <name>
|
|
5
|
+
|
|
6
|
+
**Trigger:** Use when ...
|
|
7
|
+
|
|
8
|
+
| Step | Skill | Output | verify |
|
|
9
|
+
|------|-------|--------|--------|
|
|
10
|
+
| 1 | survey-context | STATE.md | ... |
|
|
11
|
+
| 2 | research-first | Prior Art | ... |
|
|
12
|
+
| 3 | plan-work | RELEASE-PLAN.md | ... |
|
|
13
|
+
```
|