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
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
# Project README Template
|
|
2
|
+
|
|
3
|
+
Combined from dbader/readme-template and jehna/readme-best-practices. No TOC.
|
|
4
|
+
|
|
5
|
+
## Sections
|
|
6
|
+
|
|
7
|
+
### 1. Title + Badges
|
|
8
|
+
|
|
9
|
+
```markdown
|
|
10
|
+
# Project Name
|
|
11
|
+
|
|
12
|
+

|
|
13
|
+

|
|
14
|
+
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
Fill badges from CLAUDE.md stack info if available. Default to license + version badges.
|
|
18
|
+
|
|
19
|
+
### 2. Tagline
|
|
20
|
+
|
|
21
|
+
```markdown
|
|
22
|
+
> One-line description of what this project does and why it matters.
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
### 3. Description
|
|
26
|
+
|
|
27
|
+
2-3 paragraphs: what problem it solves, who it's for, and what makes it different.
|
|
28
|
+
|
|
29
|
+
### 4. Prerequisites
|
|
30
|
+
|
|
31
|
+
```markdown
|
|
32
|
+
## Prerequisites
|
|
33
|
+
|
|
34
|
+
- **Runtime**: Node.js v18+ (from CLAUDE.md)
|
|
35
|
+
- **Package manager**: npm (or pnpm/yarn)
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
Auto-fill from CLAUDE.md commands section when possible.
|
|
39
|
+
|
|
40
|
+
### 5. Installation
|
|
41
|
+
|
|
42
|
+
```markdown
|
|
43
|
+
## Installation
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
npm install -g your-package
|
|
47
|
+
# or
|
|
48
|
+
npx your-package
|
|
49
|
+
```
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
Prefer npx one-shot if applicable; list global install as alternative.
|
|
53
|
+
|
|
54
|
+
### 6. Usage
|
|
55
|
+
|
|
56
|
+
```markdown
|
|
57
|
+
## Usage
|
|
58
|
+
|
|
59
|
+
```bash
|
|
60
|
+
your-command --help
|
|
61
|
+
your-command do-something
|
|
62
|
+
```
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
Include the most common 1-2 commands. Link to full docs if they exist.
|
|
66
|
+
|
|
67
|
+
### 7. Features
|
|
68
|
+
|
|
69
|
+
```markdown
|
|
70
|
+
## Features
|
|
71
|
+
|
|
72
|
+
- Feature 1: short description
|
|
73
|
+
- Feature 2: short description
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
3-6 bullet points of what the project does. Derived from the project's purpose.
|
|
77
|
+
|
|
78
|
+
### 8. Configuration
|
|
79
|
+
|
|
80
|
+
```markdown
|
|
81
|
+
## Configuration
|
|
82
|
+
|
|
83
|
+
| Variable | Default | Description |
|
|
84
|
+
|----------|---------|-------------|
|
|
85
|
+
| `VAR_NAME` | `value` | What it controls |
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
Use `TODO` markers if unknown.
|
|
89
|
+
|
|
90
|
+
### 9. Development Setup
|
|
91
|
+
|
|
92
|
+
```markdown
|
|
93
|
+
## Development
|
|
94
|
+
|
|
95
|
+
```bash
|
|
96
|
+
git clone <repo-url>
|
|
97
|
+
cd project
|
|
98
|
+
npm install
|
|
99
|
+
```
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
Auto-fill from CLAUDE.md `Run` and `Build` commands.
|
|
103
|
+
|
|
104
|
+
### 10. Running Tests
|
|
105
|
+
|
|
106
|
+
```markdown
|
|
107
|
+
## Tests
|
|
108
|
+
|
|
109
|
+
```bash
|
|
110
|
+
npm test
|
|
111
|
+
npm run lint
|
|
112
|
+
```
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
Auto-fill from CLAUDE.md `Test` and `Lint` commands.
|
|
116
|
+
|
|
117
|
+
### 11. Contributing
|
|
118
|
+
|
|
119
|
+
```markdown
|
|
120
|
+
## Contributing
|
|
121
|
+
|
|
122
|
+
1. Fork the repo.
|
|
123
|
+
2. Create a feature branch (`git checkout -b feature/my-thing`).
|
|
124
|
+
3. Commit changes (`git commit -am 'Add my thing'`).
|
|
125
|
+
4. Push (`git push origin feature/my-thing`).
|
|
126
|
+
5. Open a Pull Request.
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
### 12. Changelog
|
|
130
|
+
|
|
131
|
+
```markdown
|
|
132
|
+
## Changelog
|
|
133
|
+
|
|
134
|
+
See [CHANGELOG.md](CHANGELOG.md) or [Releases](https://github.com/user/repo/releases).
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
### 13. Links
|
|
138
|
+
|
|
139
|
+
```markdown
|
|
140
|
+
## Links
|
|
141
|
+
|
|
142
|
+
- Repository: https://github.com/user/repo
|
|
143
|
+
- Issue tracker: https://github.com/user/repo/issues
|
|
144
|
+
```
|
|
145
|
+
|
|
146
|
+
### 14. License
|
|
147
|
+
|
|
148
|
+
```markdown
|
|
149
|
+
## License
|
|
150
|
+
|
|
151
|
+
MIT — see [LICENSE](LICENSE) for details.
|
|
152
|
+
```
|
|
153
|
+
|
|
154
|
+
Detect from CLAUDE.md or project LICENSE file.
|
|
155
|
+
|
|
156
|
+
### 15. Credits (optional)
|
|
157
|
+
|
|
158
|
+
```markdown
|
|
159
|
+
## Credits
|
|
160
|
+
|
|
161
|
+
Built with [bigpowers](https://github.com/danielvm-git/bigpowers).
|
|
162
|
+
```
|
|
163
|
+
|
|
164
|
+
## Verify
|
|
165
|
+
|
|
166
|
+
After generation, run: `grep -c "^## " README.md` — expect ≥ 7 section headings.
|
package/write-document/SKILL.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: write-document
|
|
3
|
+
model: sonnet
|
|
3
4
|
description: Write, organize, and sync high-integrity technical documents using the BMAD methodology. Ensures every document is Bold, Minimal, Actionable, and Durable. Use when creating architectural docs, technical guides, or organizing the specs/ directory.
|
|
4
5
|
---
|
|
5
6
|
|
|
@@ -27,6 +28,7 @@ Choose the correct BMAD-BigPowers artifact:
|
|
|
27
28
|
- **Context Map**: For system-wide architectural mapping (`specs/CONTEXT.md`).
|
|
28
29
|
- **Technical Guide**: For "How-to" with verification (saved to `<module>/REFERENCE.md`).
|
|
29
30
|
- **Behavioral Feature**: Gherkin-style compliance specs (saved to `specs/audit/features/`).
|
|
31
|
+
- **Project README**: Project-facing documentation (saved to `README.md` at project root).
|
|
30
32
|
|
|
31
33
|
**Cross-Cutting Concerns**: If a doc affects multiple modules, place the authoritative source in the lowest common ancestor directory and use "Delegates" (one-line pointers) in sub-directories to maintain the Single Source of Truth without violating the Stepdown Rule.
|
|
32
34
|
|
|
@@ -39,6 +41,15 @@ Write the document focusing on "Expert Collaboration":
|
|
|
39
41
|
- **Provenance Links**: Link to ADRs, Issues, or Commits to preserve intent.
|
|
40
42
|
- **The Stepdown Rule**: Information should descend exactly one level of abstraction. If a root doc needs to explain a leaf-level detail, it must point to a sub-index first.
|
|
41
43
|
|
|
44
|
+
### Quick README (Project READMEs only)
|
|
45
|
+
|
|
46
|
+
1. Ask: "Project name? One-sentence description?"
|
|
47
|
+
2. Generate `README.md` at project root using the template in [REFERENCE.md](REFERENCE.md) — no TOC, no second interview round.
|
|
48
|
+
3. Fill gaps from `CLAUDE.md` commands if available; use `TODO` markers otherwise.
|
|
49
|
+
4. Output and suggest `edit-document` for polish.
|
|
50
|
+
|
|
51
|
+
→ verify: `grep -c "^## " README.md | awk '{if($1>=7) print "OK"}'`
|
|
52
|
+
|
|
42
53
|
### 3. Apply the 94% Quality Gate
|
|
43
54
|
|
|
44
55
|
Before finalizing, audit the document against these red flags:
|
|
@@ -49,7 +60,7 @@ Before finalizing, audit the document against these red flags:
|
|
|
49
60
|
|
|
50
61
|
### 4. Sync and Organize
|
|
51
62
|
|
|
52
|
-
- **Big Powers Hierarchy**: Place the document in the correct tier (Global -> Project -> Sub-directory).
|
|
63
|
+
- **Big Powers Hierarchy**: Place the document in the correct tier (Global -> Project -> Sub-directory). Project READMEs are an exception — they go to project root (`README.md`), not `specs/`.
|
|
53
64
|
- **Nested Indexing**: If adding a module-level doc, ensure the module's `GEMINI.md` is updated. If the module's index is new, add it to the root `GEMINI.md`.
|
|
54
65
|
- **Sync**: Run `scripts/sync-skills.sh` if the document is a `SKILL.md` or affects generated artifacts.
|
|
55
66
|
|