Add code-quality-pipeline plugin#77916
Open
RonMizrahi wants to merge 3 commits into
Open
Conversation
Adds a skill-based plugin that defines the quality gates between "code written" and "code merged": - Gate A: a 4-step per-file pipeline (Code Review -> Simplification -> Security Review -> Final Review) run after implementation, before e2e. - Gate B: a holistic review of the entire diff against the base branch, run right before opening the PR/MR. The skill orchestrates existing review tools (feature-dev, security review, code-review) rather than bundling them, and reports any step whose tool is absent as skipped rather than passed. Registers the plugin in the marketplace manifest and the plugins README. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Add INSTALL.md with step-by-step instructions for installing the dependency plugins (feature-dev, pr-review-toolkit, code-review), and add a single reference line to it under the skill's Required dependencies section. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Follow the standard skill layout (references/ next to SKILL.md, as in anthropics/skills) so the install guide is loaded on demand via a skill-relative reference instead of a plugin-root file. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This was referenced Jul 15, 2026
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.
Summary
Adds a new skill-based plugin,
code-quality-pipeline, authored by Ron Mizrahi. It defines the quality gates that stand between "code written" and "code merged" — two complementary gates:The skill orchestrates existing review tools (
feature-dev'scode-reviewer, acode-simplifieragent,/security-review,/code-review) rather than bundling them, and it explicitly reports any step whose tool is absent as skipped — never silently passed.Changes
plugins/code-quality-pipeline/— new plugin:.claude-plugin/plugin.json,README.md, andskills/code-quality-pipeline/SKILL.md..claude-plugin/marketplace.jsonand theplugins/README.mdtable (alphabetically, beforecode-review).Validation
(The one marketplace warning is a pre-existing
security-guidanceversion mismatch, untouched by this PR.)🤖 Generated with Claude Code