Plugins in Claude Code
Plugins extend agent capability for specific domains (for example: GitHub workflows, docs translation, design tooling, or product-specific operations).
Why plugins matter
- keep domain-specific logic outside generic prompts
- make behavior reusable across tasks and sessions
- reduce prompt length and ambiguity
- improve consistency for repetitive operations
Plugin usage pattern
- Identify a repeated workflow (for example PR triage).
- Create or install a plugin skill with clear trigger instructions.
- Limit plugin scope to one concrete job.
- Validate output with local checks and CI.
Relationship with skills and MCP
- Skills define how an agent should execute a specialized workflow.
- MCP provides tool access and structured context for that workflow.
- Plugins combine both into reusable building blocks.