decaf's Claude Plugins
Personalized Claude Code plugins with specialized agents, skills, and conventions for development and code review.
Originally forked from everything-claude-code. You probably want that one rather than this one that has been tailored to my own personal workflow.
Plugins
This repo provides four plugins that can be installed independently:
| Plugin | Description |
|---|
decaf | General-purpose agents and skills (analysis, development) |
decaf-review | Multi-agent code review, coverage analysis, and refactoring |
decaf-planning | Planning skills for PRDs, implementation plans, and phase breakdowns |
decaf-memory | Memory skills backed by erinra (hybrid semantic search, knowledge graphs) |
decaf-experimental | Experimental skills being tested before promotion to core |
Installation
# Add as a marketplace
/plugin marketplace add alphaleonis/decaf-claude-config
# Install plugins
/plugin install decaf-claude-config@decaf
/plugin install decaf-claude-config@decaf-review
/plugin install decaf-claude-config@decaf-planning
/plugin install decaf-claude-config@decaf-memory
/plugin install decaf-claude-config@decaf-experimental
Or install from a local clone:
cd /path/to/decaf-claude-config
/plugin marketplace add ./
/plugin install decaf-claude-config@decaf
/plugin install decaf-claude-config@decaf-review
/plugin install decaf-claude-config@decaf-planning
/plugin install decaf-claude-config@decaf-memory
/plugin install decaf-claude-config@decaf-experimental
Memory Plugin Setup
Memory skills require the erinra MCP server. See the erinra repo for installation options.
# Install erinra — see https://github.com/alphaleonis/erinra-mcp#installation
# Register the MCP server
claude mcp add erinra -- erinra serve -s user
# Install the plugin
/plugin install decaf-claude-config@decaf-memory
What's Inside
decaf-claude-config/
├── .claude-plugin/ # Marketplace manifest
├── conventions/ # Shared convention files (@file references)
├── decaf/ # Core plugin
│ ├── .claude-plugin/plugin.json
│ ├── agents/ # 6 agents
│ └── skills/ # 5 skills
├── decaf-review/ # Review plugin
│ ├── .claude-plugin/plugin.json
│ ├── agents/ # 10 agents
│ └── skills/ # 6 skills
├── decaf-planning/ # Planning plugin
│ ├── .claude-plugin/plugin.json
│ └── skills/ # 6 skills
├── decaf-memory/ # Memory plugin (erinra)
│ ├── .claude-plugin/plugin.json
│ └── skills/ # 4 skills
├── decaf-experimental/ # Experimental plugin
│ ├── .claude-plugin/plugin.json
│ └── skills/ # 4 skills
├── CLAUDE.md
└── README.md
decaf — Core Skills
Skills are invoked as /decaf:<skill-name>.
| Skill | Description |
|---|
decision-critic | Stress-test decisions through adversarial analysis |
incoherence-detector | Detect doc/code/spec inconsistencies |
note | Capture a follow-up task as a bean without interrupting current work |
powershell-expert | PowerShell development patterns |
problem-analysis | Root cause investigation |
decaf — Core Agents
Agents are referenced via the Task tool as decaf:<agent-name>.
| Agent | Purpose |
|---|
architect | Feature architecture design |
csharp-developer | C# implementation with idiomatic patterns |
go-developer | Go implementation with idiomatic patterns |
debugger | Systematic debugging with evidence gathering |
planner | Implementation planning |
technical-writer | LLM-optimized documentation |
decaf-review — Review Skills
Skills are invoked as /decaf-review:<skill-name>.
| Skill | Description |
|---|
code-review | Parallel multi-agent code review with consolidation |
coverage-review | Run code coverage analysis and review gaps for severity |
refactor | Analyze code for structural improvement opportunities and produce a prioritized plan |
handle-cr | Walk through code review findings interactively |
handle-coverage | Walk through coverage gaps interactively, writing tests |
handle-refactoring | Walk through refactoring opportunities interactively |
decaf-review — Review Agents
Agents are referenced via the Task tool as decaf-review:<agent-name>.