Conversation
Co-Authored-By: Claude Opus 4 <noreply@anthropic.com>
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
🚧 Files skipped from review as they are similar to previous changes (1)
WalkthroughThe PR increments marketplace metadata to 🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@CHANGELOG.md`:
- Around line 9-13: The footer compare links in CHANGELOG.md need updating to
add a new "[3.2.0]" compare link and to ensure the "Unreleased" link no longer
points to "v3.1.0"; update the link reference block so it includes a "[3.2.0]:
<repo>/compare/v3.1.0...v3.2.0" entry and adjust the "Unreleased" link to
compare "v3.2.0...HEAD" (or the repo equivalent), making sure the new [3.2.0]
section header and its content (the added "beagle-analysis" bullet) match the
new link references.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Organization UI
Review profile: CHILL
Plan: Pro
Run ID: 1a5980d0-78b0-43fe-8a4f-2683268a765c
📒 Files selected for processing (5)
.claude-plugin/marketplace.jsonCHANGELOG.mdCLAUDE.mdREADME.mdplugins/beagle-analysis/.claude-plugin/plugin.json
Adds a verification gate to the /release command and concrete instructions (with example diff) to gen-release-notes Step 5 so the [Unreleased] line is advanced and a new [VERSION] compare link is inserted on every release. Also adds the missing 3.2.0 footer links to CHANGELOG.md and bumps beagle-core to 1.1.6. Resolves the recurring CodeRabbit feedback on release PRs.
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In @.claude/commands/release.md:
- Around line 111-115: The current grep -qE checks interpolate NEW_VERSION
directly into EREs which treats dots as wildcards; change the script to escape
dots in NEW_VERSION before using it in the two grep -qE patterns (the Unreleased
line check that matches compare/v${NEW_VERSION}...HEAD and the footer check that
matches ...compare/v.*...v${NEW_VERSION}) by creating an escaped-version
variable (derived from NEW_VERSION with "." -> "\.") and use that escaped
variable in both grep patterns against CHANGELOG.md so the checks only match
exact semantic versions.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Organization UI
Review profile: CHILL
Plan: Pro
Run ID: 758135ad-eee1-486d-b069-439f11166815
📒 Files selected for processing (4)
.claude/commands/release.mdCHANGELOG.mdplugins/beagle-core/.claude-plugin/plugin.jsonplugins/beagle-core/skills/gen-release-notes/SKILL.md
✅ Files skipped from review due to trivial changes (3)
- plugins/beagle-core/.claude-plugin/plugin.json
- plugins/beagle-core/skills/gen-release-notes/SKILL.md
- CHANGELOG.md
The footer-link verification greps interpolated NEW_VERSION into ERE patterns where '.' is a wildcard, so '3.2.0' would also match '3x2x0'. Derive an escaped NEW_VERSION_RE and use it in both grep patterns so only exact semantic versions match. Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Summary
brainstorm-beagle+resolve-beagleto the Documentation & Analysis skills tableChanges Since v3.1.0
resolve-beagleskill — orchestrator that closes Open Questions and latent gaps in abrainstorm-beaglespec via parallel research subagents (feat(beagle-analysis): add resolve-beagle skill for closing spec gaps #94)Version Locations Updated
.claude-plugin/marketplace.jsonmetadata.version → 3.2.0plugins/beagle-analysis/.claude-plugin/plugin.json→ 2.1.0 (also addedresolve-beaglekeyword and refreshed description)Post-merge Steps
After merging, run:
🤖 Generated with Claude Code