clud-bug 0.6.5 → 0.6.6
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/lib/agents-md.js
CHANGED
|
@@ -8,7 +8,12 @@ import { join } from 'node:path';
|
|
|
8
8
|
|
|
9
9
|
const START_MARKER = '<!-- clud-bug-start -->';
|
|
10
10
|
const END_MARKER = '<!-- clud-bug-end -->';
|
|
11
|
-
|
|
11
|
+
// v2 (clud-bug v0.6.6+): trimmed from ~44 lines to ~10. Full collaboration
|
|
12
|
+
// rules moved to the bundled `clud-bug-collaboration` skill (always installed
|
|
13
|
+
// alongside clud-bug), which clud-bug-review loads at review time. AGENTS.md
|
|
14
|
+
// becomes a pointer + the strict-mode toggle (repo-specific, varies per
|
|
15
|
+
// consumer). Compounds across every agent session in every consuming repo.
|
|
16
|
+
const BLOCK_VERSION = 'v2';
|
|
12
17
|
|
|
13
18
|
// Files we'll touch when present, plus files we'll create if missing.
|
|
14
19
|
// AGENTS.md is the cross-tool canonical (logmind made it canonical too).
|
|
@@ -43,49 +48,20 @@ const TOUCH_IF_PRESENT = [
|
|
|
43
48
|
export function renderBlock({ version, strictMode } = {}) {
|
|
44
49
|
const versionLine = version ? `_Installed at clud-bug v${version}._` : '';
|
|
45
50
|
const strictNote = strictMode === true
|
|
46
|
-
? '
|
|
47
|
-
: '
|
|
51
|
+
? '**on** in this repo (workflow check fails on critical findings)'
|
|
52
|
+
: '**off** in this repo (advisory only)';
|
|
48
53
|
return `${START_MARKER}
|
|
49
54
|
<!-- clud-bug-block-version: ${BLOCK_VERSION} -->
|
|
50
55
|
## clud-bug — Claude PR review
|
|
51
56
|
|
|
52
|
-
This
|
|
53
|
-
|
|
54
|
-
in
|
|
57
|
+
This repo uses [clud-bug](https://cludbug.dev) for automatic PR reviews.
|
|
58
|
+
Full collaboration rules — fix-push flow, skill structure, comment format,
|
|
59
|
+
strict-mode mechanics, workflow-edit constraint — live in the bundled
|
|
60
|
+
[\`clud-bug-collaboration\` skill](.claude/skills/clud-bug-collaboration/SKILL.md).
|
|
61
|
+
Read that skill before pushing fixes addressing prior review threads.
|
|
55
62
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
The bot resolves its own prior review threads on the next pass when it can
|
|
59
|
-
verify the fix in the diff. You don't need to manually resolve threads it
|
|
60
|
-
opened — push the fix, wait ~2 minutes, and check the PR. If a thread it
|
|
61
|
-
left isn't auto-resolved after a fix, the bot judged the issue still open;
|
|
62
|
-
read its latest review comment for what it's still flagging.
|
|
63
|
-
|
|
64
|
-
### Strict mode
|
|
65
|
-
|
|
66
|
-
${strictNote} Toggle by editing \`.claude/skills/.clud-bug.json\`:
|
|
67
|
-
|
|
68
|
-
\`\`\`json
|
|
69
|
-
{ "strictMode": true | false, ... }
|
|
70
|
-
\`\`\`
|
|
71
|
-
|
|
72
|
-
The setting is read from the **base ref** of any open PR, so PRs cannot
|
|
73
|
-
disable strict mode on themselves. Changes take effect on PRs opened after
|
|
74
|
-
they merge to the base branch.
|
|
75
|
-
|
|
76
|
-
### Where the skills live
|
|
77
|
-
|
|
78
|
-
Project-aware review rules live in \`.claude/skills/<name>/SKILL.md\`. A
|
|
79
|
-
small baseline kit ships with every install — see
|
|
80
|
-
\`.claude/skills/.clud-bug.json\` for the current set. Add more via
|
|
81
|
-
\`clud-bug add <source/name>\` (from skills.sh) or by dropping your own
|
|
82
|
-
\`.md\` files there. They auto-load into the reviewer.
|
|
83
|
-
|
|
84
|
-
### Editing the workflow
|
|
85
|
-
|
|
86
|
-
Anthropic's \`claude-code-action\` refuses to run on PRs that modify its own
|
|
87
|
-
workflow file. Use \`clud-bug edit-workflow\` to bundle workflow tweaks into
|
|
88
|
-
their own isolated PR — see [README](https://github.com/thrillmade/clud-bug#when-you-edit-the-workflow).
|
|
63
|
+
Strict mode is ${strictNote}. Toggle via \`.claude/skills/.clud-bug.json\`
|
|
64
|
+
(read from PR **base ref**, so PRs can't disable strict-mode on themselves).
|
|
89
65
|
|
|
90
66
|
${versionLine}
|
|
91
67
|
${END_MARKER}`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clud-bug",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.6",
|
|
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",
|
|
@@ -79,6 +79,6 @@ jobs:
|
|
|
79
79
|
# Strict-mode gate — composite action; see workflow.yml.tmpl for design notes.
|
|
80
80
|
- name: Strict mode — fail check on critical findings
|
|
81
81
|
if: success()
|
|
82
|
-
uses: thrillmade/clud-bug/.github/actions/strict-mode-gate@v0.6.
|
|
82
|
+
uses: thrillmade/clud-bug/.github/actions/strict-mode-gate@v0.6.6
|
|
83
83
|
with:
|
|
84
84
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -79,6 +79,6 @@ jobs:
|
|
|
79
79
|
# Strict-mode gate — composite action; see workflow.yml.tmpl for design notes.
|
|
80
80
|
- name: Strict mode — fail check on critical findings
|
|
81
81
|
if: success()
|
|
82
|
-
uses: thrillmade/clud-bug/.github/actions/strict-mode-gate@v0.6.
|
|
82
|
+
uses: thrillmade/clud-bug/.github/actions/strict-mode-gate@v0.6.6
|
|
83
83
|
with:
|
|
84
84
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -130,6 +130,6 @@ jobs:
|
|
|
130
130
|
# Letting the action's own failure fail the check is louder and right.
|
|
131
131
|
- name: Strict mode — fail check on critical findings
|
|
132
132
|
if: success()
|
|
133
|
-
uses: thrillmade/clud-bug/.github/actions/strict-mode-gate@v0.6.
|
|
133
|
+
uses: thrillmade/clud-bug/.github/actions/strict-mode-gate@v0.6.6
|
|
134
134
|
with:
|
|
135
135
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|