feat(wizrd-review): replace plugin with our own review prompt#5
Merged
Conversation
Drop dependency on anthropics/claude-code code-review plugin. Inline the instructions so we control: - discovery order: REVIEW_RULES.md → CODE_REVIEW.md → CLAUDE.md → .claude/ci-agent-context.md - our B/R/A rule-code conventions - our BLOCKING/REQUIRED/ADVISORY/Good output format - explicit gh pr comment posting step (the bit Claude was skipping in agent mode) - confidence threshold (default 80) and skip-trivial gating from the plugin design Keeps the parallel sub-agent pattern via the Task tool. No marketplace hop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Replace `code-review@claude-code-plugins` plugin invocation with our own inline prompt in `.github/workflows/wizrd-review.yml`.
Why
The plugin works but trades off our harness conventions:
We keep the good ideas from the plugin: skip closed/draft/trivial/already-reviewed, parallel sub-agents via the Task tool, confidence-score gate (default ≥80).
The critical bit — explicit `gh pr comment` step — is now hard-wired into the prompt with a "do NOT skip this step" instruction. That's what was missing in the original composite (v1 agent mode doesn't auto-post).
Quality
Impact