@wbern/claude-instructions 1.8.1 → 1.10.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.
Files changed (46) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +21 -11
  3. package/bin/cli.js +796 -47
  4. package/downloads/with-beads/ask.md +1 -4
  5. package/downloads/with-beads/beepboop.md +0 -1
  6. package/downloads/with-beads/busycommit.md +16 -1
  7. package/downloads/with-beads/code-review.md +248 -0
  8. package/downloads/with-beads/commands-metadata.json +57 -15
  9. package/downloads/with-beads/commit.md +16 -1
  10. package/downloads/with-beads/cycle.md +0 -1
  11. package/downloads/with-beads/gap.md +1 -0
  12. package/downloads/with-beads/green.md +0 -1
  13. package/downloads/with-beads/issue.md +0 -1
  14. package/downloads/with-beads/plan.md +1 -3
  15. package/downloads/with-beads/pr.md +82 -0
  16. package/downloads/with-beads/red.md +0 -1
  17. package/downloads/with-beads/refactor.md +0 -1
  18. package/downloads/with-beads/ship.md +1 -4
  19. package/downloads/with-beads/show.md +1 -4
  20. package/downloads/with-beads/spike.md +0 -1
  21. package/downloads/with-beads/summarize.md +0 -1
  22. package/downloads/with-beads/tdd.md +0 -1
  23. package/downloads/with-beads/worktree-add.md +0 -1
  24. package/downloads/with-beads/worktree-cleanup.md +0 -1
  25. package/downloads/without-beads/ask.md +1 -4
  26. package/downloads/without-beads/beepboop.md +0 -1
  27. package/downloads/without-beads/busycommit.md +16 -1
  28. package/downloads/without-beads/code-review.md +246 -0
  29. package/downloads/without-beads/commands-metadata.json +57 -15
  30. package/downloads/without-beads/commit.md +16 -1
  31. package/downloads/without-beads/cycle.md +0 -1
  32. package/downloads/without-beads/gap.md +1 -0
  33. package/downloads/without-beads/green.md +0 -1
  34. package/downloads/without-beads/issue.md +0 -1
  35. package/downloads/without-beads/plan.md +0 -1
  36. package/downloads/without-beads/pr.md +70 -0
  37. package/downloads/without-beads/red.md +0 -1
  38. package/downloads/without-beads/refactor.md +0 -1
  39. package/downloads/without-beads/ship.md +1 -4
  40. package/downloads/without-beads/show.md +1 -4
  41. package/downloads/without-beads/spike.md +0 -1
  42. package/downloads/without-beads/summarize.md +0 -1
  43. package/downloads/without-beads/tdd.md +0 -1
  44. package/downloads/without-beads/worktree-add.md +0 -1
  45. package/downloads/without-beads/worktree-cleanup.md +0 -1
  46. package/package.json +7 -3
@@ -1,5 +1,4 @@
1
1
  ---
2
- allowed-tools: Read, Glob, Grep, Task
3
2
  description: Remind agent about TDD approach and continue conversation
4
3
  argument-hint: [optional-response-to-last-message]
5
4
  ---
@@ -1,5 +1,4 @@
1
1
  ---
2
- allowed-tools: Bash(code-insiders:*), Bash(code:*), Bash(zed:*), Bash(cursor:*), Bash(which:*), Read, mcp__github__issue_read, mcp__ide__getDiagnostics, ListMcpResourcesTool
3
2
  description: Add a new git worktree from branch name or GitHub issue URL, copy settings, install deps, and open in current IDE
4
3
  argument-hint: <branch-name-or-github-issue-url> [optional-base-branch]
5
4
  ---
@@ -1,5 +1,4 @@
1
1
  ---
2
- allowed-tools: Read, mcp__mcp-jq__jq_query, mcp__mcp-jq__jq_query_file, mcp__github__search_pull_requests, mcp__github__pull_request_read, mcp__github__issue_read, mcp__github__issue_write, mcp__github__add_issue_comment, ListMcpResourcesTool
3
2
  description: Clean up merged worktrees by verifying PR/issue status, consolidating settings, and removing stale worktrees
4
3
  argument-hint: (no arguments)
5
4
  ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wbern/claude-instructions",
3
- "version": "1.8.1",
3
+ "version": "1.10.0",
4
4
  "description": "TDD workflow commands for Claude Code CLI",
5
5
  "type": "module",
6
6
  "bin": "./bin/cli.js",
@@ -31,8 +31,10 @@
31
31
  "build": "tsx scripts/build.ts",
32
32
  "build:cli": "tsup",
33
33
  "test:manual": "pnpm build:cli && TMPDIR=$(mktemp -d) && pnpm pack --pack-destination $TMPDIR && cd $TMPDIR && tar -xzf *.tgz && cd package && pnpm i && node bin/cli.js",
34
+ "test:quick-manual": "pnpm build:cli && node bin/cli.js",
34
35
  "generate": "tsx scripts/cli-generator.ts",
35
36
  "test": "vitest run",
37
+ "test:coverage": "vitest run --coverage",
36
38
  "test:watch": "vitest",
37
39
  "typecheck": "tsc --noEmit",
38
40
  "knip": "knip",
@@ -44,19 +46,21 @@
44
46
  "@eslint/js": "^9.39.1",
45
47
  "@types/fs-extra": "^11.0.4",
46
48
  "@types/node": "^24.10.1",
49
+ "@vitest/coverage-v8": "^4.0.15",
50
+ "diff": "^8.0.2",
47
51
  "eslint": "^9.39.1",
48
52
  "husky": "^9.1.7",
49
53
  "jscpd": "^4.0.5",
50
54
  "knip": "^5.70.2",
51
55
  "lint-staged": "^16.2.7",
52
- "markdown-magic": "^4.0.4",
53
56
  "markdownlint-cli": "^0.46.0",
57
+ "picocolors": "^1.1.1",
54
58
  "prettier": "^3.7.2",
55
59
  "tsup": "^8.5.1",
56
60
  "tsx": "^4.20.6",
57
61
  "typescript": "^5.9.3",
58
62
  "typescript-eslint": "^8.48.0",
59
- "vitest": "^4.0.8"
63
+ "vitest": "^4.0.15"
60
64
  },
61
65
  "dependencies": {
62
66
  "@clack/prompts": "^0.11.0",