A collection of 31 Claude Code plugins providing 285+ skills and 14 agents for development workflows.
- Bash 5+ — Required for shell scripts. macOS ships bash 3.2; install via
brew install bash.
claude plugin install laurigates-claude-plugins/<plugin-name>For example:
claude plugin install laurigates-claude-plugins/git-plugin
claude plugin install laurigates-claude-plugins/python-plugin
claude plugin install laurigates-claude-plugins/testing-pluginNew here? See the Plugin Map for setup guidance, decision trees, and recommended install order.
Use the included justfile for quick MCP server configuration:
# Set up all MCP servers and cclsp
just claude-setup
# Or install individual servers
just mcp-github
just mcp-playwright
just mcp-context7Alternatively, use the /configure:mcp skill for interactive configuration.
| Plugin | Skills | Description |
|---|---|---|
| agent-patterns-plugin | 16 | Multi-agent coordination and orchestration patterns |
| agents-plugin | 1 + 10 agents | Task-focused agents for test, review, debug, docs, and CI workflows |
| langchain-plugin | 4 | LangChain JS/TS development - agents, chains, LangGraph, Deep Agents |
| Plugin | Skills | Description |
|---|---|---|
| api-plugin | 2 | API integration and testing - REST endpoints, client generation |
| blueprint-plugin | 30 | Blueprint Development methodology - PRD/PRP workflow with version tracking |
| home-assistant-plugin | 4 | Home Assistant configuration - automations, scripts, scenes, entities |
| project-plugin | 6 | Project initialization, management, maintenance, and continuous development |
| Plugin | Skills | Description |
|---|---|---|
| python-plugin | 17 | Python ecosystem - uv, ruff, pytest, basedpyright, packaging |
| rust-plugin | 5 | Rust development - cargo, clippy, nextest, memory safety |
| typescript-plugin | 17 | TypeScript development - Bun, Biome, ESLint, strict types |
| Plugin | Skills | Description |
|---|---|---|
| code-quality-plugin | 13 | Code review, refactoring, linting, static analysis, debugging methodology |
| testing-plugin | 15 | Test execution, TDD workflow, Vitest, Playwright, mutation testing |
| Plugin | Skills | Description |
|---|---|---|
| git-plugin | 27 + 1 agent | Git workflows - commits, branches, PRs, worktrees, release-please |
| Plugin | Skills | Description |
|---|---|---|
| finops-plugin | 7 | GitHub Actions FinOps - billing, cache usage, workflow efficiency |
| github-actions-plugin | 8 | GitHub Actions CI/CD - workflows, authentication, inspection |
| Plugin | Skills | Description |
|---|---|---|
| configure-plugin | 42 | Project infrastructure standards - pre-commit, CI/CD, Docker, testing |
| container-plugin | 9 + 1 agent | Container development - Docker, registry, Skaffold, OrbStack |
| kubernetes-plugin | 8 + 1 agent | Kubernetes and Helm - deployments, charts, releases, ArgoCD |
| networking-plugin | 6 | Network diagnostics, discovery, monitoring, HTTP load testing |
| terraform-plugin | 6 + 1 agent | Terraform and Terraform Cloud - infrastructure as code |
| Plugin | Skills | Description |
|---|---|---|
| blog-plugin | 2 | Blog post creation - project logs, technical write-ups |
| communication-plugin | 2 | Communication formatting - Google Chat, ticket drafting |
| documentation-plugin | 5 | Documentation generation - API docs, README, knowledge graphs |
| Plugin | Skills | Description |
|---|---|---|
| accessibility-plugin | 2 | Accessibility implementation - WCAG, ARIA, design tokens |
| component-patterns-plugin | 2 | Reusable UI component patterns - version badge, tooltips |
| Plugin | Skills | Description |
|---|---|---|
| command-analytics-plugin | 4 | Track command and skill usage analytics across projects |
| health-plugin | 6 | Diagnose and fix Claude Code configuration issues |
| hooks-plugin | 1 | Claude Code hooks for enforcing best practices |
| tools-plugin | 14 | General utilities - fd, rg, jq, shell, ImageMagick, d2 |
| Plugin | Skills | Description |
|---|---|---|
| bevy-plugin | 2 | Bevy game engine - ECS, rendering, game architecture |
Each plugin follows the standard Claude Code plugin structure:
<plugin-name>/
├── .claude-plugin/
│ └── plugin.json # Plugin manifest
├── README.md # Plugin documentation
├── CHANGELOG.md # Auto-generated by release-please
├── skills/
│ └── <skill-name>/
│ └── SKILL.md # Skill definition
└── agents/ # Agent definitions (optional)
└── <agent>.md
Plugins use release-please for automated versioning. Use conventional commits to trigger releases:
feat(git-plugin): add worktree support # minor bump
fix(python-plugin): handle empty venv # patch bumpSee CLAUDE.md for detailed development instructions.
The flat plugin list can be generated from marketplace.json:
jq -r '.plugins[] | "| **\(.name)** | \(.category) | \(.description) |"' .claude-plugin/marketplace.jsonMIT