Personal Claude Code skills and plugins
npx claudepluginhub drewdrewthis/claude-skillsDebate a design question with N agents arguing different positions, then synthesize a recommendation.
Parallel code review with 4 agents: principles (SRP/design/readability), hygiene (reuse/patterns/idioms/dead code), test (pyramid/coverage), and security (PII/secrets). Orchestrator pre-fetches diff once, agents use task checklists.
Skills and plugins for Claude Code.
As a plugin (recommended — gets you the multi-agent skills like /review and /quorum):
claude plugin add drewdrewthis/claude-skills
Individual skills (copy a single skill into your global skills directory):
cp -r <skill-name> ~/.claude/skills/
| Skill | Description |
|---|---|
/create-skill | Turn a workflow into a well-structured Claude Code skill |
/evolve-skill | Improve a skill based on how it just performed — patches friction, corrections, and missed steps |
/deep-reflect | Audit Claude session history (JSONL logs) for mistakes, failed patterns, and token waste |
/retro | Weekly engineering retrospective with commit analysis, quality metrics, and trend tracking |
/implement | Start implementation of a GitHub issue (/implement #123) |
/drive-pr | Drive a PR to mergeable state — fix CI failures, address review comments, loop until green |
/write-pr | Create a PR with a filled-in template |
Plugins bundle skills with dedicated agents and reference docs. Install them via claude plugin add.
Parallel code review with 4 specialized agents running concurrently, followed by persona-driven perspectives.
Agents:
Bundled docs: CODING_STANDARDS.md, TESTING_PHILOSOPHY.md
/review # review current diff
/review src/auth/ # focus on specific files
Debate a design question with N agents arguing different positions, then synthesize a recommendation. Includes a devil's advocate agent.
/quorum "Should we use Redis or Postgres for our job queue?"
/quorum "Monorepo vs polyrepo for our microservices"
claude-skills/
├── .claude-plugin/
│ └── marketplace.json # plugin registry
├── create-skill/SKILL.md
├── deep-reflect/
│ ├── SKILL.md
│ └── scripts/ # session analysis helpers
├── drive-pr/SKILL.md
├── evolve-skill/SKILL.md
├── implement/SKILL.md
├── retro/SKILL.md
├── write-pr/
│ ├── SKILL.md
│ └── docs/PR_TEMPLATE.md
└── plugins/
├── review/
│ ├── .claude-plugin/plugin.json
│ ├── agents/ # 4 reviewer agents
│ ├── docs/ # coding standards, testing philosophy
│ └── skills/review/SKILL.md
└── quorum/
├── .claude-plugin/plugin.json
├── agents/ # devil's advocate
└── skills/quorum/SKILL.md
Use /create-skill to scaffold a new skill, or see any SKILL.md in this repo for the format. After using a skill, run /evolve-skill <name> to tighten it based on what actually happened.
MIT
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 84 marketplace plugins, 192 local specialized agents, and 156 local skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations