Claude Code Toolkit
The complete developer's toolkit for Claude Code -- plugins, agents, skills, commands, hooks, rules, templates, and setup guides.

Quick Install
Plugin marketplace (recommended):
/plugin marketplace add rohitg00/awesome-claude-code-toolkit
Manual clone:
git clone https://github.com/rohitg00/awesome-claude-code-toolkit.git ~/.claude/plugins/claude-code-toolkit
One-liner:
curl -fsSL https://raw.githubusercontent.com/rohitg00/awesome-claude-code-toolkit/main/setup/install.sh | bash
Table of Contents
Plugins
Six production-ready plugins that extend Claude Code with domain-specific capabilities.
| Plugin | Description |
|---|
| smart-commit | Analyzes diffs and generates conventional commit messages with scope detection, breaking change flags, and co-author attribution. |
| code-guardian | Real-time code quality enforcement. Runs linting, complexity analysis, and security checks before every commit. |
| deploy-pilot | End-to-end deployment orchestration. Supports Docker, Kubernetes, Vercel, AWS, and custom pipelines. |
| api-architect | Generates OpenAPI specs, route handlers, validation schemas, and client SDKs from natural language descriptions. |
| perf-profiler | Identifies performance bottlenecks. Profiles memory, CPU, bundle size, and database queries with actionable recommendations. |
| doc-forge | Generates documentation from code. Produces READMEs, API references, changelogs, and architecture decision records. |
Installing a Plugin
/plugin install claude-code-toolkit@smart-commit
Or install all plugins at once:
/plugin install claude-code-toolkit
Agents
Twenty-two specialized agents organized into five categories. Each agent is a Markdown file that defines a persona, system instructions, and tool access patterns for Claude Code.
Core Development
| Agent | File | Purpose |
|---|
| Architect | agents/core-development/architect.md | System design, component boundaries, dependency decisions |
| Implementer | agents/core-development/implementer.md | Feature implementation with best practices and error handling |
| Debugger | agents/core-development/debugger.md | Root cause analysis, step-through debugging, fix verification |
| Refactorer | agents/core-development/refactorer.md | Code restructuring while preserving behavior and test coverage |
Language Experts
| Agent | File | Purpose |
|---|
| TypeScript | agents/language-experts/typescript.md | Type-safe patterns, generics, module design, build config |
| Python | agents/language-experts/python.md | Pythonic patterns, packaging, type hints, async patterns |
| Rust | agents/language-experts/rust.md | Ownership, lifetimes, trait design, unsafe boundaries |
| Go | agents/language-experts/go.md | Interfaces, goroutines, error handling, module structure |
Infrastructure
| Agent | File | Purpose |
|---|
| Docker | agents/infrastructure/docker.md | Multi-stage builds, compose files, image optimization |
| Kubernetes | agents/infrastructure/kubernetes.md | Manifests, Helm charts, operators, cluster troubleshooting |
| CI/CD | agents/infrastructure/cicd.md | Pipeline design for GitHub Actions, GitLab CI, CircleCI |
| Cloud | agents/infrastructure/cloud.md | AWS, GCP, Azure resource provisioning and IaC patterns |
Quality Assurance
| Agent | File | Purpose |
|---|
| Test Writer | agents/quality-assurance/test-writer.md | Unit, integration, and E2E test generation with high coverage |
| Code Reviewer | agents/quality-assurance/code-reviewer.md | PR review with security, performance, and maintainability focus |
| Security Auditor | agents/quality-assurance/security-auditor.md | Vulnerability scanning, dependency audit, OWASP compliance |
| Accessibility | agents/quality-assurance/accessibility.md | WCAG compliance, screen reader testing, ARIA patterns |
Orchestration