@wbern/claude-instructions 1.8.0 → 1.9.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/README.md +14 -10
- package/bin/cli.js +677 -49
- package/downloads/with-beads/ask.md +1 -4
- package/downloads/with-beads/beepboop.md +0 -1
- package/downloads/with-beads/busycommit.md +0 -1
- package/downloads/with-beads/commands-metadata.json +43 -15
- package/downloads/with-beads/commit.md +0 -1
- package/downloads/with-beads/cycle.md +0 -1
- package/downloads/with-beads/green.md +0 -1
- package/downloads/with-beads/issue.md +0 -1
- package/downloads/with-beads/plan.md +0 -1
- package/downloads/with-beads/pr.md +82 -0
- package/downloads/with-beads/red.md +0 -1
- package/downloads/with-beads/refactor.md +0 -1
- package/downloads/with-beads/ship.md +1 -4
- package/downloads/with-beads/show.md +1 -4
- package/downloads/with-beads/spike.md +0 -1
- package/downloads/with-beads/summarize.md +0 -1
- package/downloads/with-beads/tdd.md +0 -1
- package/downloads/with-beads/worktree-add.md +0 -1
- package/downloads/with-beads/worktree-cleanup.md +0 -1
- package/downloads/without-beads/ask.md +1 -4
- package/downloads/without-beads/beepboop.md +0 -1
- package/downloads/without-beads/busycommit.md +0 -1
- package/downloads/without-beads/commands-metadata.json +43 -15
- package/downloads/without-beads/commit.md +0 -1
- package/downloads/without-beads/cycle.md +1 -5
- package/downloads/without-beads/green.md +1 -5
- package/downloads/without-beads/issue.md +0 -1
- package/downloads/without-beads/plan.md +0 -1
- package/downloads/without-beads/pr.md +70 -0
- package/downloads/without-beads/red.md +1 -5
- package/downloads/without-beads/refactor.md +1 -5
- package/downloads/without-beads/ship.md +1 -4
- package/downloads/without-beads/show.md +1 -4
- package/downloads/without-beads/spike.md +1 -5
- package/downloads/without-beads/summarize.md +0 -1
- package/downloads/without-beads/tdd.md +0 -1
- package/downloads/without-beads/worktree-add.md +0 -1
- package/downloads/without-beads/worktree-cleanup.md +0 -1
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -190,23 +190,28 @@ flowchart TB
|
|
|
190
190
|
- `/issue` - Analyze GitHub issue and create TDD implementation plan
|
|
191
191
|
- `/plan` - Create implementation plan from feature/requirement with PRD-style discovery and TDD acceptance criteria
|
|
192
192
|
|
|
193
|
-
###
|
|
193
|
+
### Workflow
|
|
194
|
+
|
|
195
|
+
- `/commit` - Create a git commit following project standards
|
|
196
|
+
- `/busycommit` - Create multiple atomic git commits, one logical change at a time
|
|
197
|
+
- `/pr` - Creates a pull request using GitHub MCP
|
|
198
|
+
- `/summarize` - Summarize conversation progress and next steps
|
|
199
|
+
- `/gap` - Analyze conversation context for unaddressed items and gaps
|
|
200
|
+
|
|
201
|
+
### Test-Driven Development
|
|
194
202
|
|
|
195
203
|
- `/spike` - Execute TDD Spike Phase - exploratory coding to understand problem space before TDD
|
|
204
|
+
- `/tdd` - Remind agent about TDD approach and continue conversation
|
|
196
205
|
- `/red` - Execute TDD Red Phase - write ONE failing test
|
|
197
206
|
- `/green` - Execute TDD Green Phase - write minimal implementation to pass the failing test
|
|
198
207
|
- `/refactor` - Execute TDD Refactor Phase - improve code structure while keeping tests green
|
|
199
208
|
- `/cycle` - Execute complete TDD cycle - Red, Green, and Refactor phases in sequence
|
|
200
209
|
|
|
201
|
-
###
|
|
210
|
+
### Ship / Show / Ask
|
|
202
211
|
|
|
203
|
-
- `/
|
|
204
|
-
- `/
|
|
205
|
-
- `/
|
|
206
|
-
- `/show` - Show code to team with auto-merge - for changes that should be visible but don't need approval (Cursor's modern workflow)
|
|
207
|
-
- `/ask` - Request team review and approval - for complex changes needing discussion (OK fine, traditional PRs still have their place - Cursor)
|
|
208
|
-
- `/summarize` - Summarize conversation progress and next steps
|
|
209
|
-
- `/gap` - Analyze conversation context for unaddressed items and gaps
|
|
212
|
+
- `/ship` - Ship code directly to main - for small, obvious changes that don't need review
|
|
213
|
+
- `/show` - Show code to team with auto-merge - for changes that should be visible but don't need approval
|
|
214
|
+
- `/ask` - Request team review and approval - for complex changes needing discussion
|
|
210
215
|
|
|
211
216
|
### Worktree Management
|
|
212
217
|
|
|
@@ -215,7 +220,6 @@ flowchart TB
|
|
|
215
220
|
|
|
216
221
|
### Utilities
|
|
217
222
|
|
|
218
|
-
- `/tdd` - Remind agent about TDD approach and continue conversation
|
|
219
223
|
- `/beepboop` - Communicate AI-generated content with transparent attribution
|
|
220
224
|
- `/add-command` - Guide for creating new slash commands
|
|
221
225
|
|