$git clone https://github.com/FlorianBruniaux/claude-code-pluginsProduction-ready Claude Code plugins: skills, hooks, agents, slash commands, and MCP templates.
| 1 | # Claude Code Plugins |
| 2 | |
| 3 | Production-ready plugins for [Claude Code](https://docs.anthropic.com/en/docs/claude-code) from the [Ultimate Guide](https://github.com/FlorianBruniaux/claude-code-ultimate-guide). 212 templates across 8 focused plugins. |
| 4 | |
| 5 | ## StarMapper |
| 6 | |
| 7 | <a href="https://starmapper.bruniaux.com/FlorianBruniaux/claude-code-plugins"> |
| 8 | <picture> |
| 9 | <source media="(prefers-color-scheme: dark)" srcset="https://starmapper.bruniaux.com/api/map-image/FlorianBruniaux/claude-code-plugins?theme=dark" /> |
| 10 | <source media="(prefers-color-scheme: light)" srcset="https://starmapper.bruniaux.com/api/map-image/FlorianBruniaux/claude-code-plugins?theme=light" /> |
| 11 | <img alt="StarMapper: see who stars this repo on a world map" src="https://starmapper.bruniaux.com/api/map-image/FlorianBruniaux/claude-code-plugins" /> |
| 12 | </picture> |
| 13 | </a> |
| 14 | |
| 15 | ## Quick Install |
| 16 | |
| 17 | ```bash |
| 18 | # 1. Add the marketplace |
| 19 | claude plugin marketplace add FlorianBruniaux/claude-code-plugins |
| 20 | |
| 21 | # 2. Install the plugins you need |
| 22 | claude plugin install security-suite |
| 23 | claude plugin install devops-pipeline |
| 24 | claude plugin install release-automation |
| 25 | claude plugin install code-quality |
| 26 | claude plugin install pr-workflow |
| 27 | claude plugin install session-tools |
| 28 | claude plugin install ai-methodology |
| 29 | claude plugin install session-summary |
| 30 | ``` |
| 31 | |
| 32 | That's it. Hooks are auto-wired, no manual configuration needed. |
| 33 | |
| 34 | ## Available Plugins |
| 35 | |
| 36 | | Plugin | Description | Templates | Version | |
| 37 | |--------|-------------|-----------|---------| |
| 38 | | [security-suite](./plugins/security-suite/) | OWASP auditing, cyber-defense pipeline, 13 protective hooks | 29 | 1.0.0 | |
| 39 | | [devops-pipeline](./plugins/devops-pipeline/) | CI/CD, git worktrees, deploy automation, GitHub Actions | 50+ | 1.0.0 | |
| 40 | | [release-automation](./plugins/release-automation/) | Changelog, release notes (3 formats), social content | 20+ | 1.0.0 | |
| 41 | | [code-quality](./plugins/code-quality/) | SOLID refactoring, TDD, GoF patterns, 6 review agents | 30 | 1.0.0 | |
| 42 | | [pr-workflow](./plugins/pr-workflow/) | Planning gates, PR/issue triage, handoffs | 23 | 1.0.0 | |
| 43 | | [session-tools](./plugins/session-tools/) | ccboard monitoring, voice refinement, 11 session hooks | 40+ | 1.0.0 | |
| 44 | | [ai-methodology](./plugins/ai-methodology/) | Scaffolding, 6-stage talk pipeline, context-engineering | 45+ | 1.0.0 | |
| 45 | | [session-summary](./plugins/session-summary/) | Session analytics dashboard, 15 configurable sections | 1 | 3.0.0 | |
| 46 | |
| 47 | ## Plugin Details |
| 48 | |
| 49 | ### security-suite |
| 50 | |
| 51 | Security auditing pipeline with OWASP checks, vulnerability scanning, and a 4-agent cyber-defense pipeline (anomaly detection → risk classification → threat reporting). |
| 52 | |
| 53 | **Commands**: `/security`, `/security-audit`, `/security-check`, `/update-threat-db`, `/sandbox-status` |
| 54 | |
| 55 | **Agents**: security-auditor, security-patcher, anomaly-detector, log-ingestor, risk-classifier, threat-reporter |
| 56 | |
| 57 | **Hooks (13)**: secrets scanner, prompt injection detector, dangerous actions blocker, sandbox validation, repo integrity scanner, MCP config integrity, security gate, and more |
| 58 | |
| 59 | --- |
| 60 | |
| 61 | ### devops-pipeline |
| 62 | |
| 63 | CI/CD automation with git worktree isolation, full deploy pipeline, canary monitoring, and auto-format/test hooks. Auto-detects Python / Node / Rust stacks. |
| 64 | |
| 65 | **Commands**: `/ci:all`, `/ci:pipeline`, `/ci:status`, `/ci:tests`, `/canary`, `/land-and-deploy`, `/ship`, `/git-worktree`, `/commit` |
| 66 | |
| 67 | **Hooks (8)**: auto-format (bash + PowerShell), test-on-change, typecheck-on-save, pre-commit-evaluator, auto-checkpoint, notification, setup-init |
| 68 | |
| 69 | --- |
| 70 | |
| 71 | ### release-automation |
| 72 | |
| 73 | From `git log` to published release notes and social posts in one command. Generates CHANGELOG.md entries, PR descriptions, Slack announcements, LinkedIn posts, and newsletters. |
| 74 | |
| 75 | **Commands**: `/release-notes`, `/commit` |
| 76 | |
| 77 | **Skills**: release-notes-generator, guide-recap |
| 78 | |
| 79 | --- |
| 80 | |
| 81 | ### code-quality |
| 82 | |
| 83 | Code review and refactoring pipeline with 6 specialist agents and GoF design pattern reference. Enforces SOLID, detects N+1 and complexity issues, drives TDD cycles. |
| 84 | |
| 85 | **Commands**: `/refactor`, `/optimize`, `/generate-tests`, `/explain`, `/review-plan`, `/qa`, `/investigate`, `/sonarqube` |
| 86 | |
| 87 | **Agents**: code-reviewer, refactoring-specialist, architecture-reviewer, test-writer, integration-reviewer, output-evaluator |
| 88 | |
| 89 | --- |
| 90 | |
| 91 | ### pr-workflow |
| 92 | |
| 93 | Full PR lifecycle from idea to merged. CEO + Engineering planning gates enforce architecture review before any code is written. Includes backlog triage for PRs and issues. |
| 94 | |
| 95 | **Commands**: `/plan-start`, `/plan-ceo-review`, `/plan-eng-review`, `/plan-execute`, `/plan-validate`, `/pr`, `/review-pr`, handoff commands |
| 96 | |
| 97 | **Skills**: pr-triage, issue-triage |
| 98 | |
| 99 | --- |
| 100 | |
| 101 | ### session-tools |
| 102 | |
| 103 | Session productivity toolkit: cost/token monitoring dashboard (ccboard), voice memo refinement, context restoration after `/clear`, and MCP integration templates. |
| 104 | |
| 105 | **Commands**: `/catchup`, `/session-save`, `/diagnose`, `/routines-discover`, `/autoresearch` |
| 106 | |
| 107 | **Skills**: ccboard (TUI/Web dashboard), voice-refine, token-audit, mcp-integration-reference |
| 108 | |
| 109 | **Hooks (11)**: sessi |