clud-bug 0.6.10 → 0.6.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clud-bug",
3
- "version": "0.6.10",
3
+ "version": "0.6.12",
4
4
  "description": "Skill-driven Claude PR review. Ship a brand-voice skill, get brand reviews. Each finding cites the skill that motivated it. CLI installs the workflow + a baseline kit; add more from skills.sh.",
5
5
  "homepage": "https://cludbug.dev",
6
6
  "bugs": "https://github.com/thrillmade/clud-bug/issues",
@@ -83,8 +83,13 @@ jobs:
83
83
  git add -A
84
84
  git commit -m "🐛 Clud Bug self-update: ${INSTALLED} → ${LATEST}"
85
85
  git push -u origin "$BRANCH"
86
+ # Build the PR body via printf so the embedded newlines don't break
87
+ # the YAML `run: |` literal-block parser. v0.6.11 and earlier put a
88
+ # blank line directly inside the --body string; some YAML parsers
89
+ # (GitHub Actions among them) ended the block scalar at that blank
90
+ # line and rejected the next line as an unexpected top-level value,
91
+ # which broke `workflow_dispatch` on every consuming repo.
92
+ BODY=$(printf 'Automated update from clud-bug %s → %s. Custom and skills.sh-installed specimens were left alone; only baseline specimens and the workflow templates were refreshed.\n\nReview the diff. To stay on this version permanently, add `"pinVersion": "%s"` to `.claude/skills/.clud-bug.json` before merging.' "${INSTALLED}" "${LATEST}" "${INSTALLED}")
86
93
  gh pr create \
87
94
  --title "🐛 Clud Bug self-update: ${INSTALLED} → ${LATEST}" \
88
- --body "Automated update from clud-bug ${INSTALLED} → ${LATEST}. Custom and skills.sh-installed specimens were left alone; only baseline specimens and the workflow templates were refreshed.
89
-
90
- Review the diff. To stay on this version permanently, add \`\"pinVersion\": \"${INSTALLED}\"\` to \`.claude/skills/.clud-bug.json\` before merging."
95
+ --body "$BODY"
@@ -73,6 +73,7 @@ jobs:
73
73
  track_progress: true
74
74
  show_full_output: true
75
75
  claude_args: |
76
+ --model claude-sonnet-4-6
76
77
  --max-turns 15
77
78
  --allowedTools "mcp__github_inline_comment__create_inline_comment,Bash(gh pr comment:*),Bash(gh pr diff:*),Bash(gh pr view:*),Bash(gh api graphql:*),Bash(gh api repos/:*),Bash(git show:*),Bash(git diff:*),Bash(git merge-base:*),Bash(cat .claude/skills/.clud-bug.json),Bash(cat .claude/skills/*/SKILL.md),Bash(head:*)"
78
79
  prompt: |
@@ -84,6 +85,6 @@ jobs:
84
85
  # Strict-mode gate — composite action; see workflow.yml.tmpl for design notes.
85
86
  - name: Strict mode — fail check on critical findings
86
87
  if: success()
87
- uses: thrillmade/clud-bug/.github/actions/strict-mode-gate@v0.6.10
88
+ uses: thrillmade/clud-bug/.github/actions/strict-mode-gate@v0.6.12
88
89
  with:
89
90
  github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -73,6 +73,7 @@ jobs:
73
73
  track_progress: true
74
74
  show_full_output: true
75
75
  claude_args: |
76
+ --model claude-sonnet-4-6
76
77
  --max-turns 15
77
78
  --allowedTools "mcp__github_inline_comment__create_inline_comment,Bash(gh pr comment:*),Bash(gh pr diff:*),Bash(gh pr view:*),Bash(gh api graphql:*),Bash(gh api repos/:*),Bash(git show:*),Bash(git diff:*),Bash(git merge-base:*),Bash(cat .claude/skills/.clud-bug.json),Bash(cat .claude/skills/*/SKILL.md),Bash(head:*)"
78
79
  prompt: |
@@ -84,6 +85,6 @@ jobs:
84
85
  # Strict-mode gate — composite action; see workflow.yml.tmpl for design notes.
85
86
  - name: Strict mode — fail check on critical findings
86
87
  if: success()
87
- uses: thrillmade/clud-bug/.github/actions/strict-mode-gate@v0.6.10
88
+ uses: thrillmade/clud-bug/.github/actions/strict-mode-gate@v0.6.12
88
89
  with:
89
90
  github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -121,6 +121,7 @@ jobs:
121
121
  # measure caching effectiveness post-rollout (per v0.6.3 plan).
122
122
  show_full_output: true
123
123
  claude_args: |
124
+ --model claude-sonnet-4-6
124
125
  --max-turns 15
125
126
  --allowedTools "mcp__github_inline_comment__create_inline_comment,Bash(gh pr comment:*),Bash(gh pr diff:*),Bash(gh pr view:*),Bash(gh api graphql:*),Bash(gh api repos/:*),Bash(git show:*),Bash(git diff:*),Bash(git merge-base:*),Bash(cat .claude/skills/.clud-bug.json),Bash(cat .claude/skills/*/SKILL.md),Bash(head:*)"
126
127
  prompt: |
@@ -144,6 +145,6 @@ jobs:
144
145
  # Letting the action's own failure fail the check is louder and right.
145
146
  - name: Strict mode — fail check on critical findings
146
147
  if: success()
147
- uses: thrillmade/clud-bug/.github/actions/strict-mode-gate@v0.6.10
148
+ uses: thrillmade/clud-bug/.github/actions/strict-mode-gate@v0.6.12
148
149
  with:
149
150
  github-token: ${{ secrets.GITHUB_TOKEN }}