Add code-quality plugin with multi-agent workflow#3
Open
pppmppp wants to merge 1 commit into
Open
Conversation
- Add plugin manifest and marketplace.json for code-quality plugin v0.1.0 - Add two scoped subagents: code-reviewer (read-only) and test-writer (write/execute) - Add /quality command that orchestrates agents: parallel route reviews then sequential test writing - Add /lint-check skill to run ESLint on the API - Add lint-on-edit hook to auto-lint .js files after Write/Edit operations - Add NOTES.md documenting plugin design and orchestration decisions - Add .claude/settings.json with npm command permissions Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
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
.claude-plugin/plugin.json(name: code-quality,version: 0.1.0) and.claude-plugin/marketplace.jsonso the plugin installs via/plugin marketplace add+/plugin installagents/:code-reviewer(read-only, Haiku) andtest-writer(Read/Edit/Write/Bash, Sonnet)commands/quality.md(/quality) — parallel route reviews, then sequential test-writing step that depends on both review reportsskills/lint-check/SKILL.mdand hookhooks/hooks.json+hooks/lint-on-edit.sh(paths via${CLAUDE_PLUGIN_ROOT})NOTES.mdcovering install steps, the read-only scoping decision, and the parallel-vs-sequential orchestration rationaleTest plan
node .github/scripts/validate-plugin.jspasses (Plugin structure looks complete ✓)claude --plugin-dir .loads the plugin;/code-quality:qualityis available/plugin marketplace add <repo>+/plugin install code-quality@<marketplace>installs from a clean checkout/qualityruns both reviewers in parallel then the test-writer sequentially againstcourse-api/🤖 Generated with Claude Code