A comprehensive collection of Claude Code plugins for git workflows, multi-agent code review, and accessibility compliance auditing.
- Claude Code CLI installed and configured
- Git installed (for commit-commands)
- GitHub CLI (
gh) installed (for PR-related commands)
# Add from GitHub
/plugin marketplace add ronmrcdo/claude-plugins
# Or add locally for development
/plugin marketplace add /path/to/claude-plugins# Git workflows (commit, push, PR, branch cleanup)
/plugin install commit-commands
# Multi-agent code reviewer (7 specialized review agents)
/plugin install code-reviewer
# Accessibility compliance auditor (WCAG 2.1 Level AA)
/plugin install accessibility-complianceGit workflow automation with conventional commit enforcement.
| Command | Description |
|---|---|
/commit-push-pr |
Commit staged changes with conventional commits, push, and create a PR |
/review-pr <PR_NUMBER> |
Review a GitHub PR for security, anti-patterns, and best practices |
/clean-branches |
Delete local branches that are merged or have lost their remote tracking |
Commit format: type(scope): subject where type is one of feat, fix, refactor, docs, chore, test, style, perf.
Multi-agent code review system that runs 7 specialized agents in parallel against your staged changes.
| Command | Description |
|---|---|
/review-unstaged |
Run a comprehensive review on all unstaged git changes |
Agents launched on every review:
| Agent | Focus Area |
|---|---|
| Performance Profiler | Runtime inefficiencies, memory issues, algorithmic complexity |
| QA Spec Engineer | Test coverage gaps, missing edge cases, assertion quality |
| Structural Completeness | Import consistency, dead code, wiring & registration |
| Best Practices | SOLID principles, naming conventions, clean code patterns |
| Security Reviewer | OWASP Top 10, injection attacks, auth flaws, data exposure |
Additional agents launched when frontend files are detected (.tsx, .jsx, .vue, .svelte, .html):
| Agent | Focus Area |
|---|---|
| Accessibility Reviewer | WCAG 2.1 compliance, ARIA correctness, keyboard navigation |
| Code Splitting & Reusability | Component extraction, lazy loading, bundle optimization |
Standalone accessibility auditing against WCAG 2.1 Level AA.
| Command | Description |
|---|---|
/a11y-audit |
Audit specified files or components for accessibility violations |
Checks performed:
- Semantic HTML structure and heading hierarchy
- ARIA roles, states, and properties
- Keyboard accessibility and focus management
- Form labels, error messages, and validation
- Image alt attributes and media accessibility
- Framework-specific patterns (React, Vue, SPA)
MIT