mirror of
https://github.com/wshobson/agents.git
synced 2026-03-18 09:37:15 +00:00
docs: update README for v1.1.0 with two-tier plugin layout
Major documentation restructure to improve discoverability and usability: ## Two-Tier Plugin Documentation - Quick Start section: 12 essential plugins with full descriptions - Complete Reference: All 62 plugins in categorized tables (23 categories) - Reduces documentation from verbose listings to scannable tables - Only +31 lines despite documenting +26 more plugins ## Corrected Counts - Tools: 42 → 44 (correct actual count) - Plugins: 36 → 62 (v1.1.0 refactoring) - Agents: 84, Workflows: 15 (verified) ## Content Improvements - Removed promotional 'new' language throughout - Updated version highlights to be factual - Added Claude Code Plugins Guide link to Resources - Reorganized plugin categories with emoji icons for scanning - Updated repository structure to show v1.1.0 tools ## Structure Quick Start (12 plugins): - Development Essentials (3) - Full-Stack Development (3) - Testing & Quality (2) - Infrastructure & Operations (2) - Language Support (2) Complete Reference (62 plugins): - 23 categories with 1-6 plugins each - Compact table format (plugin | description | install) - Covers: Development, Documentation, Workflows, Testing, Quality, Utilities, AI/ML, Data, Database, Operations, Performance, Infrastructure, Security, Modernization, API, Marketing, Business, Languages, Blockchain, Finance, Payments, Gaming, Accessibility
This commit is contained in:
493
README.md
493
README.md
@@ -1,23 +1,23 @@
|
|||||||
# Claude Code Workflows & Agents
|
# Claude Code Workflows & Agents
|
||||||
|
|
||||||
A comprehensive production-ready system combining **84 specialized AI agents**, **15 multi-agent workflow orchestrators**, and **42 development tools** organized into **36 focused, single-purpose plugins** for [Claude Code](https://docs.anthropic.com/en/docs/claude-code).
|
A comprehensive production-ready system combining **84 specialized AI agents**, **15 multi-agent workflow orchestrators**, and **44 development tools** organized into **62 focused, single-purpose plugins** for [Claude Code](https://docs.anthropic.com/en/docs/claude-code).
|
||||||
|
|
||||||
## Overview
|
## Overview
|
||||||
|
|
||||||
This unified repository provides everything needed for intelligent automation and multi-agent orchestration across modern software development:
|
This unified repository provides everything needed for intelligent automation and multi-agent orchestration across modern software development:
|
||||||
|
|
||||||
- **36 Focused Plugins** - Single-purpose plugins following industry best practices (VSCode, npm patterns)
|
- **62 Focused Plugins** - Granular, single-purpose plugins optimized for minimal token usage and composability
|
||||||
- **84 Specialized Agents** - Domain experts with deep knowledge across architecture, languages, infrastructure, quality, data/AI, documentation, business operations, and SEO
|
- **84 Specialized Agents** - Domain experts with deep knowledge across architecture, languages, infrastructure, quality, data/AI, documentation, business operations, and SEO
|
||||||
- **15 Workflow Orchestrators** - Multi-agent coordination systems for complex operations like full-stack development, security hardening, ML pipelines, and incident response
|
- **15 Workflow Orchestrators** - Multi-agent coordination systems for complex operations like full-stack development, security hardening, ML pipelines, and incident response
|
||||||
- **42 Development Tools** - Optimized utilities (avg 626 lines, 58% reduction) for specific tasks including API scaffolding, security scanning, test automation, and infrastructure setup
|
- **44 Development Tools** - Optimized utilities including project scaffolding, security scanning, test automation, and infrastructure setup
|
||||||
|
|
||||||
### 🎉 Version 1.0.5 - Recent Improvements
|
### Version 1.1.0 Highlights
|
||||||
|
|
||||||
- **Marketplace Refactored**: 27 bloated plugins → 36 focused, single-purpose plugins (+33%)
|
- **Marketplace Refactored**: 36 plugins → 62 focused plugins (+72% granularity)
|
||||||
- **Files Optimized**: 24,392 lines eliminated through aggressive optimization (58% reduction)
|
- **Tools Expanded**: 6 additional tools (test generation, component scaffolding, XSS scanning, project scaffolding for Python/TypeScript/Rust)
|
||||||
- **Zero Bloat**: All plugins now under 12 components, following single-responsibility principle
|
- **100% Agent Coverage**: All plugins have at least one agent
|
||||||
- **Better Performance**: 2-3x faster loading times, improved context window utilization
|
- **Better Discoverability**: 23 clear categories with 1-6 plugins each
|
||||||
- **Industry-Aligned**: Following proven patterns from VSCode, npm, and Chrome extension ecosystems
|
- **Optimized Architecture**: Average 3.4 components per plugin (follows Anthropic's 2-8 pattern)
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
@@ -33,267 +33,299 @@ Then browse and install plugins using:
|
|||||||
/plugin
|
/plugin
|
||||||
```
|
```
|
||||||
|
|
||||||
### Available Plugins (36 Total)
|
## Quick Start - Essential Plugins
|
||||||
|
|
||||||
> 💡 **Plugin Organization**: All plugins follow single-responsibility principle with clear, focused purposes. Average 6.2 components per plugin (down from 8-10).
|
> 💡 **Getting Started?** Install these popular plugins for immediate productivity gains.
|
||||||
|
|
||||||
#### Getting Started
|
### Development Essentials
|
||||||
|
|
||||||
**claude-code-essentials** - Essential tools for daily development
|
**code-documentation** - Documentation and technical writing
|
||||||
```bash
|
```bash
|
||||||
/plugin install claude-code-essentials
|
/plugin install code-documentation
|
||||||
```
|
```
|
||||||
Includes: Code explanation, debugging, documentation, PR enhancement, git workflows
|
Automated doc generation, code explanation, and tutorial creation for comprehensive technical documentation.
|
||||||
|
|
||||||
#### Complete Workflow Systems
|
**debugging-toolkit** - Smart debugging and developer experience
|
||||||
|
|
||||||
**full-stack-development** - End-to-end feature implementation
|
|
||||||
```bash
|
```bash
|
||||||
/plugin install full-stack-development
|
/plugin install debugging-toolkit
|
||||||
```
|
```
|
||||||
Multi-agent coordination: Backend API → Frontend UI → Mobile → Testing → Security → Deployment
|
Interactive debugging, error analysis, and DX optimization for faster problem resolution.
|
||||||
|
|
||||||
**performance-optimization** - System profiling and optimization
|
**git-pr-workflows** - Git automation and PR enhancement
|
||||||
```bash
|
```bash
|
||||||
/plugin install performance-optimization
|
/plugin install git-pr-workflows
|
||||||
```
|
```
|
||||||
Profiling → Query optimization → Caching → Scalability assessment
|
Git workflow automation, pull request enhancement, and team onboarding processes.
|
||||||
|
|
||||||
**code-quality-review** - Multi-perspective code analysis
|
### Full-Stack Development
|
||||||
|
|
||||||
|
**backend-development** - Backend API design and architecture
|
||||||
```bash
|
```bash
|
||||||
/plugin install code-quality-review
|
/plugin install backend-development
|
||||||
```
|
```
|
||||||
Architecture → Security → Performance → Test coverage analysis
|
RESTful and GraphQL API design with test-driven development and modern backend architecture patterns.
|
||||||
|
|
||||||
**legacy-modernization** - Codebase modernization workflows
|
**frontend-mobile-development** - UI and mobile development
|
||||||
```bash
|
```bash
|
||||||
/plugin install legacy-modernization
|
/plugin install frontend-mobile-development
|
||||||
```
|
```
|
||||||
Framework migration → Dependency updates → Refactoring → Compatibility testing
|
React/React Native component development with automated scaffolding and cross-platform implementation.
|
||||||
|
|
||||||
**multi-platform-apps** - Cross-platform development
|
**full-stack-orchestration** - End-to-end feature development
|
||||||
```bash
|
```bash
|
||||||
/plugin install multi-platform-apps
|
/plugin install full-stack-orchestration
|
||||||
```
|
```
|
||||||
Web (React/Next.js) → iOS (Swift) → Android (Kotlin) → Desktop coordination
|
Multi-agent coordination from backend → frontend → testing → security → deployment.
|
||||||
|
|
||||||
**cicd-automation** - CI/CD pipeline configuration
|
### Testing & Quality
|
||||||
|
|
||||||
|
**unit-testing** - Automated test generation
|
||||||
```bash
|
```bash
|
||||||
/plugin install cicd-automation
|
/plugin install unit-testing
|
||||||
```
|
```
|
||||||
GitHub Actions/GitLab CI → Progressive deployment → Pipeline orchestration
|
Generate pytest (Python) and Jest (JavaScript) unit tests automatically with comprehensive edge case coverage.
|
||||||
|
|
||||||
**documentation-generation** - Technical documentation automation
|
**code-review-ai** - AI-powered code review
|
||||||
```bash
|
```bash
|
||||||
/plugin install documentation-generation
|
/plugin install code-review-ai
|
||||||
```
|
```
|
||||||
OpenAPI specs → Mermaid diagrams → Tutorials → API references
|
Architectural analysis, security assessment, and code quality review with actionable feedback.
|
||||||
|
|
||||||
#### API Development (Focused Split)
|
### Infrastructure & Operations
|
||||||
|
|
||||||
**api-scaffolding** - REST/GraphQL API generation
|
**cloud-infrastructure** - Cloud architecture design
|
||||||
```bash
|
|
||||||
/plugin install api-scaffolding
|
|
||||||
```
|
|
||||||
API scaffolding → Framework selection → Backend architecture → FastAPI/Django
|
|
||||||
|
|
||||||
**api-testing-observability** - API testing and monitoring
|
|
||||||
```bash
|
|
||||||
/plugin install api-testing-observability
|
|
||||||
```
|
|
||||||
API testing → Mocking → OpenAPI docs → Observability setup
|
|
||||||
|
|
||||||
**data-validation-suite** - Schema and data quality validation
|
|
||||||
```bash
|
|
||||||
/plugin install data-validation-suite
|
|
||||||
```
|
|
||||||
Schema validation → Data quality monitoring → Streaming validation
|
|
||||||
|
|
||||||
#### Security (Focused Split)
|
|
||||||
|
|
||||||
**security-scanning** - SAST and vulnerability scanning
|
|
||||||
```bash
|
|
||||||
/plugin install security-scanning
|
|
||||||
```
|
|
||||||
SAST analysis → Dependency scanning → OWASP Top 10 → Container security
|
|
||||||
|
|
||||||
**security-compliance** - SOC2/HIPAA/GDPR compliance
|
|
||||||
```bash
|
|
||||||
/plugin install security-compliance
|
|
||||||
```
|
|
||||||
Compliance validation → Secrets scanning → Regulatory documentation
|
|
||||||
|
|
||||||
**backend-api-security** - API security hardening
|
|
||||||
```bash
|
|
||||||
/plugin install backend-api-security
|
|
||||||
```
|
|
||||||
Authentication → Authorization → Rate limiting → Input validation
|
|
||||||
|
|
||||||
**frontend-mobile-security** - XSS/CSRF/mobile security
|
|
||||||
```bash
|
|
||||||
/plugin install frontend-mobile-security
|
|
||||||
```
|
|
||||||
XSS prevention → CSRF protection → CSP → Mobile app security
|
|
||||||
|
|
||||||
#### Testing & Quality
|
|
||||||
|
|
||||||
**testing-quality-suite** - Comprehensive testing workflows
|
|
||||||
```bash
|
|
||||||
/plugin install testing-quality-suite
|
|
||||||
```
|
|
||||||
TDD workflows → Test generation → Unit/integration/e2e → Quality gates
|
|
||||||
|
|
||||||
**development-utilities** - Daily productivity tools
|
|
||||||
```bash
|
|
||||||
/plugin install development-utilities
|
|
||||||
```
|
|
||||||
Refactoring → Dependency auditing → Error analysis → Standup automation
|
|
||||||
|
|
||||||
#### Infrastructure (Focused Split)
|
|
||||||
|
|
||||||
**kubernetes-operations** - K8s lifecycle management
|
|
||||||
```bash
|
|
||||||
/plugin install kubernetes-operations
|
|
||||||
```
|
|
||||||
K8s manifests → Networking → Security policies → GitOps → Auto-scaling
|
|
||||||
|
|
||||||
**docker-containerization** - Container optimization
|
|
||||||
```bash
|
|
||||||
/plugin install docker-containerization
|
|
||||||
```
|
|
||||||
Multi-stage builds → Image optimization → Container security → CI/CD
|
|
||||||
|
|
||||||
**deployment-orchestration** - Deployment strategies
|
|
||||||
```bash
|
|
||||||
/plugin install deployment-orchestration
|
|
||||||
```
|
|
||||||
Pre-flight checks → Rollout strategies → Rollback → Configuration validation
|
|
||||||
|
|
||||||
**cloud-infrastructure** - AWS/Azure/GCP architecture
|
|
||||||
```bash
|
```bash
|
||||||
/plugin install cloud-infrastructure
|
/plugin install cloud-infrastructure
|
||||||
```
|
```
|
||||||
Cloud design → Hybrid cloud → Multi-cloud cost optimization
|
AWS/Azure/GCP architecture, Kubernetes setup, Terraform IaC, and multi-cloud cost optimization.
|
||||||
|
|
||||||
#### Data & ML (Focused Split)
|
**incident-response** - Production incident management
|
||||||
|
|
||||||
**data-engineering** - ETL and data pipelines
|
|
||||||
```bash
|
```bash
|
||||||
/plugin install data-engineering
|
/plugin install incident-response
|
||||||
```
|
```
|
||||||
ETL pipelines → Data warehouse design → Batch processing
|
Rapid incident triage, root cause analysis, and automated resolution workflows for production systems.
|
||||||
|
|
||||||
**machine-learning-ops** - ML training and deployment
|
### Language Support
|
||||||
|
|
||||||
|
**python-development** - Python project scaffolding
|
||||||
```bash
|
```bash
|
||||||
/plugin install machine-learning-ops
|
/plugin install python-development
|
||||||
```
|
```
|
||||||
Model training → Hyperparameter tuning → MLOps → Experiment tracking
|
FastAPI/Django project initialization with modern tooling (uv, ruff) and production-ready architecture.
|
||||||
|
|
||||||
**ai-agent-development** - LLM agents and RAG systems
|
**javascript-typescript** - JavaScript/TypeScript scaffolding
|
||||||
```bash
|
```bash
|
||||||
/plugin install ai-agent-development
|
/plugin install javascript-typescript
|
||||||
```
|
```
|
||||||
LangChain agents → RAG systems → Prompt engineering → Context management
|
Next.js, React + Vite, and Node.js project setup with pnpm and TypeScript best practices.
|
||||||
|
|
||||||
#### Operations & Reliability (Focused Split)
|
---
|
||||||
|
|
||||||
**incident-diagnostics** - Production incident triage
|
## Complete Plugin Reference
|
||||||
```bash
|
|
||||||
/plugin install incident-diagnostics
|
|
||||||
```
|
|
||||||
Incident response → Root cause analysis → Distributed tracing
|
|
||||||
|
|
||||||
**observability-monitoring** - Metrics and SLO
|
> 📋 **All 62 Plugins** - Browse by category to find specialized plugins for your workflow.
|
||||||
```bash
|
|
||||||
/plugin install observability-monitoring
|
|
||||||
```
|
|
||||||
Metrics collection → Logging → Tracing → SLO implementation
|
|
||||||
|
|
||||||
#### Database
|
### 🎨 Development (4 plugins)
|
||||||
|
|
||||||
**database-operations** - Database optimization and administration
|
| Plugin | Description | Install |
|
||||||
```bash
|
|--------|-------------|---------|
|
||||||
/plugin install database-operations
|
| **debugging-toolkit** | Interactive debugging and DX optimization | `/plugin install debugging-toolkit` |
|
||||||
```
|
| **backend-development** | Backend API design with GraphQL and TDD | `/plugin install backend-development` |
|
||||||
Schema design → Query optimization → Migrations → PostgreSQL/MySQL/MongoDB
|
| **frontend-mobile-development** | Frontend UI and mobile development | `/plugin install frontend-mobile-development` |
|
||||||
|
| **multi-platform-apps** | Cross-platform app coordination (web/iOS/Android) | `/plugin install multi-platform-apps` |
|
||||||
|
|
||||||
#### Marketing & Business
|
### 📚 Documentation (2 plugins)
|
||||||
|
|
||||||
**seo-content-suite** - SEO optimization toolkit
|
| Plugin | Description | Install |
|
||||||
```bash
|
|--------|-------------|---------|
|
||||||
/plugin install seo-content-suite
|
| **code-documentation** | Documentation generation and code explanation | `/plugin install code-documentation` |
|
||||||
```
|
| **documentation-generation** | OpenAPI specs, Mermaid diagrams, tutorials | `/plugin install documentation-generation` |
|
||||||
Content analysis → Keyword research → Meta optimization → E-E-A-T signals
|
|
||||||
|
|
||||||
**business-analytics** - Business intelligence and metrics
|
### 🔄 Workflows (3 plugins)
|
||||||
```bash
|
|
||||||
/plugin install business-analytics
|
|
||||||
```
|
|
||||||
KPI tracking → Financial reporting → Data-driven decision making
|
|
||||||
|
|
||||||
**hr-legal-compliance** - HR and legal documentation
|
| Plugin | Description | Install |
|
||||||
```bash
|
|--------|-------------|---------|
|
||||||
/plugin install hr-legal-compliance
|
| **git-pr-workflows** | Git automation and PR enhancement | `/plugin install git-pr-workflows` |
|
||||||
```
|
| **full-stack-orchestration** | End-to-end feature orchestration | `/plugin install full-stack-orchestration` |
|
||||||
HR policies → Legal templates → GDPR/SOC2/HIPAA compliance → Employment contracts
|
| **tdd-workflows** | Test-driven development methodology | `/plugin install tdd-workflows` |
|
||||||
|
|
||||||
**customer-sales-automation** - Customer relationship workflows
|
### ✅ Testing (1 plugin)
|
||||||
```bash
|
|
||||||
/plugin install customer-sales-automation
|
|
||||||
```
|
|
||||||
Support automation → Sales pipeline → Email campaigns → CRM integration
|
|
||||||
|
|
||||||
#### Specialized Domains
|
| Plugin | Description | Install |
|
||||||
|
|--------|-------------|---------|
|
||||||
|
| **unit-testing** | Automated unit test generation (Python/JavaScript) | `/plugin install unit-testing` |
|
||||||
|
|
||||||
**blockchain-web3** - Blockchain and smart contract development
|
### 🔍 Quality (3 plugins)
|
||||||
```bash
|
|
||||||
/plugin install blockchain-web3
|
|
||||||
```
|
|
||||||
Solidity → Smart contracts → DeFi protocols → NFT platforms → Web3 apps
|
|
||||||
|
|
||||||
**quantitative-trading** - Financial modeling and algorithmic trading
|
| Plugin | Description | Install |
|
||||||
```bash
|
|--------|-------------|---------|
|
||||||
/plugin install quantitative-trading
|
| **code-review-ai** | AI-powered architectural review | `/plugin install code-review-ai` |
|
||||||
```
|
| **comprehensive-review** | Multi-perspective code analysis | `/plugin install comprehensive-review` |
|
||||||
Quant analysis → Trading strategies → Portfolio risk → Backtesting
|
| **performance-testing-review** | Performance analysis and test coverage review | `/plugin install performance-testing-review` |
|
||||||
|
|
||||||
**payment-processing** - Payment gateway integration
|
### 🛠️ Utilities (4 plugins)
|
||||||
```bash
|
|
||||||
/plugin install payment-processing
|
|
||||||
```
|
|
||||||
Stripe/PayPal integration → Checkout flows → Subscription billing → PCI compliance
|
|
||||||
|
|
||||||
**game-development** - Unity and Minecraft development
|
| Plugin | Description | Install |
|
||||||
```bash
|
|--------|-------------|---------|
|
||||||
/plugin install game-development
|
| **code-refactoring** | Code cleanup and technical debt management | `/plugin install code-refactoring` |
|
||||||
```
|
| **dependency-management** | Dependency auditing and version management | `/plugin install dependency-management` |
|
||||||
Unity C# scripting → Minecraft Bukkit/Spigot plugins → Game mechanics
|
| **error-debugging** | Error analysis and trace debugging | `/plugin install error-debugging` |
|
||||||
|
| **team-collaboration** | Team workflows and standup automation | `/plugin install team-collaboration` |
|
||||||
|
|
||||||
**accessibility-compliance** - WCAG accessibility auditing
|
### 🤖 AI & ML (4 plugins)
|
||||||
```bash
|
|
||||||
/plugin install accessibility-compliance
|
| Plugin | Description | Install |
|
||||||
```
|
|--------|-------------|---------|
|
||||||
WCAG validation → Screen reader testing → Keyboard navigation → Inclusive design
|
| **llm-application-dev** | LLM apps and prompt engineering | `/plugin install llm-application-dev` |
|
||||||
|
| **agent-orchestration** | Multi-agent system optimization | `/plugin install agent-orchestration` |
|
||||||
|
| **context-management** | Context persistence and restoration | `/plugin install context-management` |
|
||||||
|
| **machine-learning-ops** | ML training pipelines and MLOps | `/plugin install machine-learning-ops` |
|
||||||
|
|
||||||
|
### 📊 Data (2 plugins)
|
||||||
|
|
||||||
|
| Plugin | Description | Install |
|
||||||
|
|--------|-------------|---------|
|
||||||
|
| **data-engineering** | ETL pipelines and data warehouses | `/plugin install data-engineering` |
|
||||||
|
| **data-validation-suite** | Schema validation and data quality | `/plugin install data-validation-suite` |
|
||||||
|
|
||||||
|
### 🗄️ Database (2 plugins)
|
||||||
|
|
||||||
|
| Plugin | Description | Install |
|
||||||
|
|--------|-------------|---------|
|
||||||
|
| **database-design** | Database architecture and schema design | `/plugin install database-design` |
|
||||||
|
| **database-migrations** | Database migration automation | `/plugin install database-migrations` |
|
||||||
|
|
||||||
|
### 🚨 Operations (4 plugins)
|
||||||
|
|
||||||
|
| Plugin | Description | Install |
|
||||||
|
|--------|-------------|---------|
|
||||||
|
| **incident-response** | Production incident management | `/plugin install incident-response` |
|
||||||
|
| **error-diagnostics** | Error tracing and root cause analysis | `/plugin install error-diagnostics` |
|
||||||
|
| **distributed-debugging** | Distributed system tracing | `/plugin install distributed-debugging` |
|
||||||
|
| **observability-monitoring** | Metrics, logging, tracing, and SLO | `/plugin install observability-monitoring` |
|
||||||
|
|
||||||
|
### ⚡ Performance (2 plugins)
|
||||||
|
|
||||||
|
| Plugin | Description | Install |
|
||||||
|
|--------|-------------|---------|
|
||||||
|
| **application-performance** | Application profiling and optimization | `/plugin install application-performance` |
|
||||||
|
| **database-cloud-optimization** | Database query and cloud cost optimization | `/plugin install database-cloud-optimization` |
|
||||||
|
|
||||||
|
### ☁️ Infrastructure (5 plugins)
|
||||||
|
|
||||||
|
| Plugin | Description | Install |
|
||||||
|
|--------|-------------|---------|
|
||||||
|
| **deployment-strategies** | Deployment patterns and rollback automation | `/plugin install deployment-strategies` |
|
||||||
|
| **deployment-validation** | Pre-deployment checks and validation | `/plugin install deployment-validation` |
|
||||||
|
| **kubernetes-operations** | K8s manifests and GitOps workflows | `/plugin install kubernetes-operations` |
|
||||||
|
| **cloud-infrastructure** | AWS/Azure/GCP cloud architecture | `/plugin install cloud-infrastructure` |
|
||||||
|
| **cicd-automation** | CI/CD pipeline configuration | `/plugin install cicd-automation` |
|
||||||
|
|
||||||
|
### 🔒 Security (4 plugins)
|
||||||
|
|
||||||
|
| Plugin | Description | Install |
|
||||||
|
|--------|-------------|---------|
|
||||||
|
| **security-scanning** | SAST analysis and vulnerability scanning | `/plugin install security-scanning` |
|
||||||
|
| **security-compliance** | SOC2/HIPAA/GDPR compliance | `/plugin install security-compliance` |
|
||||||
|
| **backend-api-security** | API security and authentication | `/plugin install backend-api-security` |
|
||||||
|
| **frontend-mobile-security** | XSS/CSRF prevention and mobile security | `/plugin install frontend-mobile-security` |
|
||||||
|
|
||||||
|
### 🔄 Modernization (2 plugins)
|
||||||
|
|
||||||
|
| Plugin | Description | Install |
|
||||||
|
|--------|-------------|---------|
|
||||||
|
| **framework-migration** | Framework upgrades and migration planning | `/plugin install framework-migration` |
|
||||||
|
| **codebase-cleanup** | Technical debt reduction and cleanup | `/plugin install codebase-cleanup` |
|
||||||
|
|
||||||
|
### 🌐 API (2 plugins)
|
||||||
|
|
||||||
|
| Plugin | Description | Install |
|
||||||
|
|--------|-------------|---------|
|
||||||
|
| **api-scaffolding** | REST/GraphQL API generation | `/plugin install api-scaffolding` |
|
||||||
|
| **api-testing-observability** | API testing and monitoring | `/plugin install api-testing-observability` |
|
||||||
|
|
||||||
|
### 📢 Marketing (4 plugins)
|
||||||
|
|
||||||
|
| Plugin | Description | Install |
|
||||||
|
|--------|-------------|---------|
|
||||||
|
| **seo-content-creation** | SEO content writing and planning | `/plugin install seo-content-creation` |
|
||||||
|
| **seo-technical-optimization** | Meta tags, keywords, and schema markup | `/plugin install seo-technical-optimization` |
|
||||||
|
| **seo-analysis-monitoring** | Content analysis and authority building | `/plugin install seo-analysis-monitoring` |
|
||||||
|
| **content-marketing** | Content strategy and web research | `/plugin install content-marketing` |
|
||||||
|
|
||||||
|
### 💼 Business (3 plugins)
|
||||||
|
|
||||||
|
| Plugin | Description | Install |
|
||||||
|
|--------|-------------|---------|
|
||||||
|
| **business-analytics** | KPI tracking and financial reporting | `/plugin install business-analytics` |
|
||||||
|
| **hr-legal-compliance** | HR policies and legal templates | `/plugin install hr-legal-compliance` |
|
||||||
|
| **customer-sales-automation** | Support and sales automation | `/plugin install customer-sales-automation` |
|
||||||
|
|
||||||
|
### 💻 Languages (6 plugins)
|
||||||
|
|
||||||
|
| Plugin | Description | Install |
|
||||||
|
|--------|-------------|---------|
|
||||||
|
| **python-development** | Python 3.12+ with Django/FastAPI | `/plugin install python-development` |
|
||||||
|
| **javascript-typescript** | JavaScript/TypeScript with Node.js | `/plugin install javascript-typescript` |
|
||||||
|
| **systems-programming** | Rust, Go, C, C++ for systems development | `/plugin install systems-programming` |
|
||||||
|
| **jvm-languages** | Java, Scala, C# with enterprise patterns | `/plugin install jvm-languages` |
|
||||||
|
| **web-scripting** | PHP and Ruby for web applications | `/plugin install web-scripting` |
|
||||||
|
| **functional-programming** | Elixir with OTP and Phoenix | `/plugin install functional-programming` |
|
||||||
|
|
||||||
|
### 🔗 Blockchain (1 plugin)
|
||||||
|
|
||||||
|
| Plugin | Description | Install |
|
||||||
|
|--------|-------------|---------|
|
||||||
|
| **blockchain-web3** | Smart contracts and DeFi protocols | `/plugin install blockchain-web3` |
|
||||||
|
|
||||||
|
### 💰 Finance (1 plugin)
|
||||||
|
|
||||||
|
| Plugin | Description | Install |
|
||||||
|
|--------|-------------|---------|
|
||||||
|
| **quantitative-trading** | Algorithmic trading and risk management | `/plugin install quantitative-trading` |
|
||||||
|
|
||||||
|
### 💳 Payments (1 plugin)
|
||||||
|
|
||||||
|
| Plugin | Description | Install |
|
||||||
|
|--------|-------------|---------|
|
||||||
|
| **payment-processing** | Stripe/PayPal integration and billing | `/plugin install payment-processing` |
|
||||||
|
|
||||||
|
### 🎮 Gaming (1 plugin)
|
||||||
|
|
||||||
|
| Plugin | Description | Install |
|
||||||
|
|--------|-------------|---------|
|
||||||
|
| **game-development** | Unity and Minecraft plugin development | `/plugin install game-development` |
|
||||||
|
|
||||||
|
### ♿ Accessibility (1 plugin)
|
||||||
|
|
||||||
|
| Plugin | Description | Install |
|
||||||
|
|--------|-------------|---------|
|
||||||
|
| **accessibility-compliance** | WCAG auditing and inclusive design | `/plugin install accessibility-compliance` |
|
||||||
|
|
||||||
## Repository Structure
|
## Repository Structure
|
||||||
|
|
||||||
```
|
```
|
||||||
claude-agents/
|
claude-agents/
|
||||||
├── .claude-plugin/
|
├── .claude-plugin/
|
||||||
│ └── marketplace.json # 36 focused plugins (v1.0.5)
|
│ └── marketplace.json # 62 focused plugins (v1.1.0)
|
||||||
├── agents/ # 84 specialized AI agents
|
├── agents/ # 84 specialized AI agents
|
||||||
│ ├── backend-architect.md
|
│ ├── backend-architect.md
|
||||||
│ ├── frontend-developer.md
|
│ ├── frontend-developer.md
|
||||||
|
│ ├── python-pro.md
|
||||||
│ └── ... (all agent definitions)
|
│ └── ... (all agent definitions)
|
||||||
├── workflows/ # 15 multi-agent orchestrators
|
├── workflows/ # 15 multi-agent orchestrators
|
||||||
│ ├── feature-development.md
|
│ ├── feature-development.md
|
||||||
│ ├── full-stack-feature.md
|
│ ├── full-stack-feature.md
|
||||||
│ ├── security-hardening.md
|
│ ├── security-hardening.md
|
||||||
│ └── ... (workflow commands)
|
│ └── ... (workflow commands)
|
||||||
├── tools/ # 42 optimized development utilities
|
├── tools/ # 44 development tools
|
||||||
│ ├── api-python.md # Optimized (avg 626 lines)
|
│ ├── test-generate.md # Automated test generation
|
||||||
│ ├── security-sast.md # Optimized (1,216 → 473 lines)
|
│ ├── component-scaffold.md # React/RN scaffolding
|
||||||
│ └── ... (tool commands)
|
│ ├── xss-scan.md # XSS vulnerability scanner
|
||||||
|
│ ├── python-scaffold.md # Python project init
|
||||||
|
│ ├── typescript-scaffold.md # TypeScript project init
|
||||||
|
│ ├── rust-project.md # Rust project init
|
||||||
|
│ └── ... (other tools)
|
||||||
└── README.md # This file
|
└── README.md # This file
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -579,44 +611,44 @@ Agents are assigned to specific Claude models based on task complexity and compu
|
|||||||
|
|
||||||
## Architecture & Design Principles
|
## Architecture & Design Principles
|
||||||
|
|
||||||
### Version 1.0.5 Refactoring
|
### Version 1.1.0 Refactoring
|
||||||
|
|
||||||
This marketplace has been extensively refactored following industry best practices from VSCode, npm, and Chrome extension ecosystems:
|
This marketplace follows industry best practices with a focus on granularity, composability, and minimal token usage:
|
||||||
|
|
||||||
#### Single Responsibility Principle
|
#### Single Responsibility Principle
|
||||||
- Each plugin does **one thing well** (Unix philosophy)
|
- Each plugin does **one thing well** (Unix philosophy)
|
||||||
- Clear, focused purposes (describable in 5-7 words)
|
- Clear, focused purposes (describable in 5-10 words)
|
||||||
- Average plugin size: **6.2 components** (down from 8-10)
|
- Average plugin size: **3.4 components** (follows Anthropic's 2-8 pattern)
|
||||||
- **Zero bloated plugins** (all under 12 components)
|
- **Zero bloated plugins** - all plugins focused and purposeful
|
||||||
|
|
||||||
#### Focused Plugin Architecture
|
#### Granular Plugin Architecture
|
||||||
- **27 plugins → 36 plugins** (+33% more focused)
|
- **36 plugins → 62 plugins** (+72% more granular)
|
||||||
- Extracted common functionality: `data-validation-suite`, `deployment-orchestration`
|
- **23 clear categories** with 1-6 plugins each for easy discovery
|
||||||
- Split bloated plugins into specialized ones:
|
- Split into focused domains:
|
||||||
- `infrastructure-devops` (22) → `kubernetes-operations`, `docker-containerization`, `deployment-orchestration`
|
- **Development**: 4 plugins (debugging, backend, frontend, multi-platform)
|
||||||
- `security-hardening` (18) → `security-scanning`, `security-compliance`, `backend-api-security`, `frontend-mobile-security`
|
- **Security**: 4 plugins (scanning, compliance, backend-api, frontend-mobile)
|
||||||
- `data-ml-pipeline` (17) → `data-engineering`, `machine-learning-ops`, `ai-agent-development`
|
- **Operations**: 4 plugins (incident, diagnostics, distributed, observability)
|
||||||
- `api-development-kit` (17) → `api-scaffolding`, `api-testing-observability`, `data-validation-suite`
|
- **Languages**: 6 plugins (Python, JS/TS, systems, JVM, scripting, functional)
|
||||||
- `incident-response` (16) → `incident-diagnostics`, `observability-monitoring`
|
- **Infrastructure**: 5 plugins (deployment, validation, K8s, cloud, CI/CD)
|
||||||
|
- And 18 more specialized categories
|
||||||
|
|
||||||
#### Aggressive File Optimization
|
#### Tools & Capabilities (v1.1.0)
|
||||||
- **24,392 lines eliminated** (58% reduction in problematic files)
|
- **44 development tools** including:
|
||||||
- **10 high-priority files optimized** (62% average reduction)
|
- `test-generate.md` - Automated unit test generation (pytest/Jest)
|
||||||
- **8 legacy monolithic files archived** (14,698 lines)
|
- `component-scaffold.md` - React/React Native scaffolding
|
||||||
- Removed redundant examples, consolidated code blocks, streamlined documentation
|
- `xss-scan.md` - XSS vulnerability scanner with secure patterns
|
||||||
- All tools remain **fully functional** with zero breaking changes
|
- `python-scaffold.md` - Python project scaffolding (FastAPI/Django)
|
||||||
|
- `typescript-scaffold.md` - TypeScript project scaffolding (Next.js/Vite)
|
||||||
|
- `rust-project.md` - Rust project scaffolding (cargo/Axum)
|
||||||
|
- **100% agent coverage** - all plugins have at least one agent
|
||||||
|
- **Language-specific plugins** - 6 dedicated plugins for language experts
|
||||||
|
|
||||||
#### Performance Improvements
|
#### Performance & Quality
|
||||||
- **2-3x faster loading times** (average file size reduced by 58%)
|
- **Optimized token usage** - smaller plugins load faster
|
||||||
- **Better context window utilization** (tools avg 626 lines vs 954 lines)
|
- **Better context efficiency** - granular plugins reduce unnecessary context
|
||||||
- **Improved LLM response quality** (smaller, more focused tools)
|
- **Improved discoverability** - clear categories and focused purposes
|
||||||
- **Lower token costs** (less content to process)
|
- **Component reuse** - shared agents/tools across related plugins
|
||||||
|
- **100% component coverage** - all 84 agents utilized
|
||||||
#### Quality Metrics
|
|
||||||
- ✅ **223 component references validated** (0 broken)
|
|
||||||
- ✅ **12.6% tool duplication** (minimal and intentional)
|
|
||||||
- ✅ **100% naming compliance** (kebab-case standard)
|
|
||||||
- ✅ **90.5% component coverage** (high utilization)
|
|
||||||
|
|
||||||
### Design Philosophy
|
### Design Philosophy
|
||||||
|
|
||||||
@@ -678,5 +710,6 @@ MIT License - see [LICENSE](LICENSE) file for details.
|
|||||||
## Resources
|
## Resources
|
||||||
|
|
||||||
- [Claude Code Documentation](https://docs.anthropic.com/en/docs/claude-code)
|
- [Claude Code Documentation](https://docs.anthropic.com/en/docs/claude-code)
|
||||||
|
- [Claude Code Plugins Guide](https://docs.claude.com/en/docs/claude-code/plugins)
|
||||||
- [Subagents Documentation](https://docs.anthropic.com/en/docs/claude-code/sub-agents)
|
- [Subagents Documentation](https://docs.anthropic.com/en/docs/claude-code/sub-agents)
|
||||||
- [Claude Code GitHub](https://github.com/anthropics/claude-code)
|
- [Claude Code GitHub](https://github.com/anthropics/claude-code)
|
||||||
|
|||||||
Reference in New Issue
Block a user