DevsForge Marketplace is the ultimate plugin ecosystem for Claude Code CLI, providing 161 enterprise-grade plugins including 93 AI agents, 65 commands, and 3 advanced super plugins. This community-driven marketplace transforms Claude Code from a powerful AI coding assistant into a comprehensive development platform with specialized capabilities across all aspects of software development, DevOps, security, and business operations.
Version: 1.2.0 Repository: https://github.com/devsforge/marketplace License: MIT Status: Production Ready
- 161 Production-Ready Plugins: Curated, tested, and enterprise-validated
- Zero Dependencies: Fully audited code with no external dependencies
- Advanced Features: Hooks, MCP servers, and event-driven automation
- Comprehensive Documentation: 250+ lines per plugin with real-world examples
- Security First: All plugins manually reviewed and security scanned
- Community Driven: Open source with active contributor community
devsforge-marketplace/
├── .claude-plugin/
│ └── marketplace.json # Central marketplace registry (v1.2.0)
│ # - 161 plugin definitions
│ # - Metadata and versioning
│ # - Plugin source paths
│
├── plugins/
│ ├── agents/ # 93 AI Agent Plugins
│ │ ├── ai-architect/
│ │ │ ├── .claude-plugin/
│ │ │ │ └── plugin.json # Agent metadata
│ │ │ └── agents/
│ │ │ └── ai-engineer.md # Agent prompt template
│ │ │
│ │ ├── authentication-specialist/ # v1.1 - JWT/OAuth2 expert
│ │ ├── cache-strategist/ # v1.1 - Redis/caching patterns
│ │ ├── cors-security-expert/ # v1.1 - CORS configuration
│ │ ├── cost-optimizer/ # v1.1 - Cloud cost optimization
│ │ ├── database-expert/ # v1.1 - SQL optimization
│ │ ├── docker-specialist/ # v1.1 - Container optimization
│ │ ├── error-handler/ # v1.1 - Error handling patterns
│ │ ├── file-upload-specialist/ # v1.1 - S3/file handling
│ │ ├── form-validation-expert/ # v1.1 - Input validation
│ │ ├── git-workflow-expert/ # v1.1 - Git strategies
│ │ ├── graphql-specialist/ # v1.1 - GraphQL design
│ │ ├── microservices-architect/ # v1.1 - Microservices patterns
│ │ ├── pagination-expert/ # v1.1 - Pagination strategies
│ │ ├── rate-limiter/ # v1.1 - Rate limiting
│ │ ├── regex-master/ # v1.1 - Regex patterns
│ │ ├── rest-api-designer/ # v1.1 - REST API design
│ │ ├── serverless-engineer/ # v1.1 - Serverless architecture
│ │ ├── sql-query-optimizer/ # v1.1 - SQL optimization
│ │ ├── sre-reliability-engineer/ # v1.1 - SRE practices
│ │ ├── technical-writer-pro/ # v1.1 - Documentation
│ │ └── webhook-integrator/ # v1.1 - Webhook patterns
│ │ └── ... (70 more agents)
│ │
│ ├── commands/ # 65 Command Plugins
│ │ ├── api-contract-tester/ # v1.1 - API testing
│ │ ├── bundle-analyzer/ # v1.1 - Bundle analysis
│ │ ├── changelog-generator/ # v1.1 - Changelog automation
│ │ ├── console-cleaner/ # v1.1 - Remove console logs
│ │ ├── docker-compose-generator/ # v1.1 - Docker compose files
│ │ ├── env-config-manager/ # v1.1 - Environment config
│ │ ├── env-validator/ # v1.1 - .env validation
│ │ ├── feature-flag-manager/ # v1.1 - Feature flags
│ │ ├── git-commit-helper/ # v1.1 - Smart commits
│ │ ├── hotfix-deployer/ # v1.1 - Hotfix workflows
│ │ ├── htaccess-generator/ # v1.1 - Apache config
│ │ ├── import-organizer/ # v1.1 - Import sorting
│ │ ├── incident-reporter/ # v1.1 - Incident management
│ │ ├── json-validator/ # v1.1 - JSON validation
│ │ ├── license-compliance/ # v1.1 - License checking
│ │ ├── migration-helper/ # v1.1 - DB migrations
│ │ ├── mock-data-generator/ # v1.1 - Test data
│ │ ├── nginx-config-generator/ # v1.1 - Nginx config
│ │ ├── package-updater/ # v1.1 - Dependency updates
│ │ ├── regex-tester/ # v1.1 - Regex testing
│ │ ├── robots-txt-generator/ # v1.1 - Robots.txt
│ │ ├── schema-generator/ # v1.1 - Schema generation
│ │ ├── sql-formatter/ # v1.1 - SQL beautification
│ │ ├── type-generator/ # v1.1 - TypeScript types
│ │ └── unused-code-finder/ # v1.1 - Dead code detection
│ │ └── ... (40 more commands)
│ │
│ └── super/ # 3 Super Plugins (Advanced)
│ ├── enterprise-workspace/
│ │ ├── .claude-plugin/
│ │ │ └── plugin.json # With hooks & MCP server config
│ │ ├── commands/ # workspace-init, workspace-sync, workspace-audit
│ │ ├── agents/ # workspace-architect, compliance-auditor
│ │ ├── scripts/ # validate-workspace.sh
│ │ └── servers/ # workspace-state MCP server
│ │
│ ├── ai-studio-orchestrator/
│ │ ├── commands/ # orchestrate-task, monitor-performance, optimize-workflow
│ │ ├── agents/ # task-coordinator, performance-analyzer
│ │ ├── scripts/ # task-logger.sh
│ │ └── servers/ # orchestrator-state MCP server
│ │
│ └── devops-platform/
│ ├── commands/ # setup-pipeline, deploy-application, manage-infrastructure
│ ├── agents/ # cicd-architect, infrastructure-engineer
│ ├── scripts/ # validate-devops-config.sh
│ └── servers/ # devops-state MCP server
│
├── PLUGIN_CATALOG.md # Complete plugin catalog with usage examples
├── README.md # User-facing documentation
├── CHANGELOG.md # Version history and changes
├── CONTRIBUTING.md # Contribution guidelines
└── LICENSE # MIT License
AI-powered development assistants that provide specialized expertise and can be invoked using the Task tool in Claude Code.
Structure:
plugins/agents/{plugin-name}/
├── .claude-plugin/
│ └── plugin.json # Metadata: name, version, category, keywords
└── agents/
└── {agent-name}.md # Agent prompt template with expertise and workflows
Categories:
- Development & Code Quality (25 plugins)
- Security & Authentication (15 plugins)
- Data & APIs (18 plugins)
- DevOps & Infrastructure (12 plugins)
- Testing & QA (10 plugins)
- UI/UX & Design (8 plugins)
- Documentation (5 plugins)
Instant productivity tools that provide slash commands for common development tasks.
Structure:
plugins/commands/{plugin-name}/
├── .claude-plugin/
│ └── plugin.json # Metadata
└── commands/
└── {command-name}.md # Command prompt and instructions
Categories:
- Git & Version Control (12 plugins)
- Code Quality & Analysis (10 plugins)
- Configuration & Setup (15 plugins)
- Testing & Validation (8 plugins)
- Documentation (6 plugins)
- DevOps & Deployment (14 plugins)
Advanced multi-component platforms with hooks, MCP servers, and complex automation.
Components:
- Multiple commands (3+ per plugin)
- Multiple agents (2+ per plugin)
- Automation scripts (bash/shell)
- MCP servers (Node.js/TypeScript)
- Event hooks (PreToolUse/PostToolUse)
- Claude Code CLI (latest version recommended)
- Git (for marketplace installation)
- Node.js (optional, required for super plugins with MCP servers)
- Add DevsForge Marketplace
/plugin marketplace add https://github.com/devsforge/marketplace.git- Verify Installation
/plugin marketplace list
# Expected output: devsforge-marketplace (1.2.0) - 161 plugins available- Install Plugins
# Browse available plugins
/plugin
# Install specific plugin
/plugin install ai-architect@devsforge-marketplace
# Install super plugin (with hooks & MCP)
/plugin install enterprise-workspace@devsforge-marketplaceThe marketplace is configured via .claude-plugin/marketplace.json:
{
"name": "devsforge-marketplace",
"owner": {
"name": "DevsForge Community",
"url": "https://github.com/devsforge/marketplace"
},
"metadata": {
"description": "DevsForge Plugin Marketplace - Premium enterprise-grade plugins for Claude Code",
"version": "1.2.0",
"homepage": "https://github.com/devsforge/marketplace",
"repository": "https://github.com/devsforge/marketplace",
"pluginRoot": ".."
},
"plugins": [
// 161 plugin definitions...
]
}Key Configuration:
pluginRoot: ".."- Resolves plugin paths relative to parent directory- Each plugin has
sourcepointing to./plugins/{category}/{plugin-name} - Plugin metadata includes name, description, version, author, category, keywords
# List installed plugins
/plugin list
# Update specific plugin
/plugin update ai-architect@devsforge-marketplace
# Update all plugins from marketplace
/plugin marketplace update devsforge-marketplace
# Remove plugin
/plugin remove debugger@devsforge-marketplace
# Search for plugins
/plugin search "security"
/plugin search "api design"
# Show plugin details
/plugin info ai-architect@devsforge-marketplaceAgent plugins are invoked through Claude Code's Task tool:
# Example: Using the database-expert agent
User: "Optimize this SQL query for better performance"
Claude: [Uses Task tool with database-expert agent]
# Example: Using the git-workflow-expert agent
User: "Help me resolve this merge conflict"
Claude: [Uses Task tool with git-workflow-expert agent]Command plugins provide slash commands:
# Environment validation
/env-validator
# Import organization
/import-organizer src/
# Code cleanup
/console-cleaner src/components/
# Type generation
/type-generator api-response.json
# Git operations
/git-commit-helper
/update-branch-name feature/new-design- Create directory structure:
mkdir -p plugins/agents/my-agent/.claude-plugin
mkdir -p plugins/agents/my-agent/agents- Create
plugin.json:
{
"name": "my-agent",
"version": "1.0.0",
"author": {
"name": "Your Name"
},
"category": "agents",
"homepage": "https://github.com/devsforge/marketplace/tree/main/plugins/agents/my-agent",
"keywords": ["devsforge", "agent", "my", "agent"]
}-
Create agent prompt in
agents/my-specialist.md(200-700+ lines recommended) -
Add to marketplace.json:
{
"name": "my-agent",
"source": "./plugins/agents/my-agent",
"description": "Clear, concise description of agent capabilities",
"version": "1.0.0",
"author": { "name": "Your Name" },
"category": "agents",
"homepage": "https://github.com/devsforge/marketplace/tree/main/plugins/agents/my-agent",
"keywords": ["devsforge", "agent", "my", "agent"]
}- Create directory structure:
mkdir -p plugins/commands/my-command/.claude-plugin
mkdir -p plugins/commands/my-command/commands-
Create
plugin.json(same format as agents) -
Create command prompt in
commands/my-command.md -
Add to marketplace.json
All plugins must meet these standards:
- ✅ Documentation: Minimum 200 lines with real-world examples
- ✅ Code Examples: Practical templates and patterns
- ✅ Methodology: Phase-based workflows
- ✅ Best Practices: Industry standards and anti-patterns
- ✅ Testing: Validated with Claude Code CLI
- ✅ Security: No external dependencies, audited code
Key Plugins:
database-expert- SQL optimization, indexing, query tuningdocker-specialist- Container optimization, multi-stage buildsgit-workflow-expert- Gitflow, merge conflicts, rebasingrest-api-designer- RESTful design, versioning, paginationgraphql-specialist- Schema design, DataLoader, subscriptions
Use Cases:
- Optimize database queries and indexes
- Debug Docker container issues
- Resolve complex merge conflicts
- Design scalable REST APIs
- Implement GraphQL schemas with type safety
Key Plugins:
authentication-specialist- JWT, OAuth2, 2FA, session managementcors-security-expert- CORS configuration and securityrate-limiter- DDoS protection, token bucket algorithmsform-validation-expert- XSS prevention, input sanitizationsecurity-scanner- Vulnerability detection and remediation
Use Cases:
- Implement secure authentication flows
- Configure CORS policies
- Prevent SQL injection and XSS attacks
- Set up rate limiting for APIs
- Audit code for security vulnerabilities
Key Plugins:
cache-strategist- Redis patterns, cache invalidationwebhook-integrator- HMAC verification, retry logicmicroservices-architect- Service decomposition, API gatewayserverless-engineer- Lambda optimization, event-driven architecturepagination-expert- Cursor-based, offset pagination
Use Cases:
- Implement efficient caching strategies
- Integrate third-party webhooks securely
- Design microservices architecture
- Optimize serverless functions
- Add pagination to large datasets
Key Plugins:
error-handler- Custom errors, Sentry integration, loggingapi-contract-tester- Contract testing, API validationbundle-analyzer- Bundle size optimizationunused-code-finder- Dead code detectiontype-generator- Generate TypeScript types from JSON
Use Cases:
- Implement comprehensive error handling
- Test API contracts and schemas
- Reduce JavaScript bundle sizes
- Clean up unused code and imports
- Generate type-safe interfaces
Key Plugins:
env-validator- Validate environment variablesimport-organizer- Sort and group importsconsole-cleaner- Remove debug statementsgit-commit-helper- Smart commit messageschangelog-generator- Automated changelogs
Use Cases:
- Validate .env files before deployment
- Organize imports automatically
- Clean production code
- Generate conventional commits
- Maintain changelog documentation
Plugin Structure Compliance:
- Removed invalid
commandsarray field from all 65 command plugin.json files - Command plugins now follow Claude Code auto-discovery pattern (commands/ folder)
- All 161 plugins validated for Claude Code CLI compatibility
- Super plugins retain multi-component structure (commands, agents, hooks, mcpServers)
Quality Improvements:
- All plugin.json files validated for proper JSON syntax
- All referenced files (agents/.md, commands/.md) verified to exist
- Consistent plugin metadata structure across all categories
- Updated marketplace version from 1.1.0 to 1.2.0
Documentation Updates:
- Updated CLAUDE.md with v1.2.0 information
- Version references updated throughout documentation
- Roadmap updated with completed v1.2.0 features
| Category | Count | Status |
|---|---|---|
| Agent Plugins | 93 | ✅ Valid |
| Command Plugins | 65 | ✅ Fixed & Valid |
| Super Plugins | 3 | ✅ Valid |
| Total | 161 | ✅ All Compliant |
No breaking changes. Plugins updated for better Claude Code compliance.
Practical Development Agents (24 new):
authentication-specialist- JWT, OAuth2, and security patternscache-strategist- Redis and caching strategiescors-security-expert- CORS configuration and best practicescost-optimizer- Cloud cost optimization (FinOps)database-expert- SQL optimization and database tuningdocker-specialist- Container optimization and debuggingerror-handler- Error handling patterns and loggingfile-upload-specialist- S3 integration and file handlingform-validation-expert- Input validation and sanitizationgit-workflow-expert- Git strategies and workflowsgraphql-specialist- GraphQL schema designiot-solutions-architect- IoT architecture patternslocalization-expert- i18n and l10n strategiesmicroservices-architect- Microservices patternspagination-expert- Pagination strategiesquantum-computing-specialist- Quantum algorithmsrate-limiter- Rate limiting and DDoS protectionregex-master- Regular expression patternsrest-api-designer- REST API design and best practicesserverless-engineer- Serverless architecturesql-query-optimizer- Advanced SQL optimizationsre-reliability-engineer- SRE practices and incident responsetechnical-writer-pro- Technical documentationwebhook-integrator- Webhook patterns and integration
Practical Development Commands (25 new):
api-contract-tester- API contract testingbundle-analyzer- JavaScript bundle analysischangelog-generator- Automated changelog generationconsole-cleaner- Remove console statementsdocker-compose-generator- Generate docker-compose filesenv-config-manager- Environment configuration managementenv-validator- Validate .env filesfeature-flag-manager- Feature flag implementationgit-commit-helper- Smart commit message generationhotfix-deployer- Hotfix deployment workflowshtaccess-generator- Apache .htaccess configurationimport-organizer- Organize and sort importsincident-reporter- Incident reporting and trackingjson-validator- JSON validation and formattinglicense-compliance- License compliance checkingmigration-helper- Database migration assistancemock-data-generator- Generate test datanginx-config-generator- Nginx configurationpackage-updater- Dependency update automationregex-tester- Regular expression testingrobots-txt-generator- Generate robots.txtschema-generator- Schema generation utilitiessql-formatter- SQL query formattingtype-generator- TypeScript type generationunused-code-finder- Dead code detection
- Marketplace Version: Updated from 1.0.0 to 1.1.0
- Plugin Root Path: Changed from "." to ".." for proper plugin resolution
- Total Plugins: Increased from 112 to 161 plugins
- Documentation: Added comprehensive PLUGIN_CATALOG.md
- Standardized Plugin Structure: All plugin.json files now follow strict schema
- Enhanced Documentation: Each new plugin includes 200-700+ lines of documentation
- Real-World Examples: Added practical code examples and templates
- Quality Metrics: Implemented comprehensive validation and testing
- Fixed plugin source paths to reference parent directory correctly
- Removed invalid "commands" field from plugin.json files
- Fixed trailing commas in JSON configuration files
- Corrected repository URLs in marketplace metadata
- Standardized all agent and command plugins to Claude Code specifications
- Created comprehensive PLUGIN_CATALOG.md with all 161 plugins
- Enhanced README.md with better navigation and categorization
- Added troubleshooting section for common issues
- Expanded contributing guidelines with quality standards
- Added security measures and best practices documentation
None. All v1.0.0 plugins remain fully compatible.
If you installed plugins before v1.1.0:
- Update marketplace:
/plugin marketplace update devsforge - Reinstall affected plugins to get latest versions
- Review new plugin categories and install relevant tools
DevsForge Marketplace is an independent, community-driven project:
- ❌ NOT affiliated with Anthropic or Claude
- ❌ NOT officially endorsed by Anthropic
- ✅ Community maintained by open-source contributors
⚠️ Use at your own risk - always review plugin code before production use
Our Security Practices:
- ✅ All plugins manually reviewed before inclusion
- ✅ Zero external dependencies policy
- ✅ Static code analysis on all submissions
- ✅ Open source transparency - all code visible
- ✅ Regular security audits
- ✅ Community moderation and reporting
Your Responsibilities:
- 🔍 Always review plugin source code before installation
- 🧪 Test plugins in development environment first
- 🐛 Report security issues via GitHub
- 🔄 Keep plugins updated to latest versions
- 🔒 Follow least privilege principle
- 📖 Read plugin documentation carefully
- Documentation First: Write comprehensive docs (200+ lines minimum)
- Real-World Focus: Include practical examples and use cases
- Security Minded: No external dependencies, security-first design
- Quality Standards: Follow enterprise-grade coding practices
- Testing: Validate thoroughly with Claude Code CLI
- Community: Engage with feedback and iterate
- Selective Installation: Only install plugins you actively use
- Regular Updates: Keep marketplace and plugins updated
- Local Development: Clone marketplace locally for faster access
- Resource Management: Monitor system resources with multiple plugins
- Issues: Report bugs on GitHub Issues
- Discussions: Join conversations on GitHub Discussions
- Contributing: See CONTRIBUTING.md for guidelines
- Documentation: Browse PLUGIN_CATALOG.md for complete plugin list
- ✅ Plugin structure compliance validation
- ✅ Automated plugin validation and testing
- ✅ Command plugin auto-discovery pattern
- ✅ Enhanced documentation and quality standards
- Plugin dependency management
- Plugin version pinning and rollback
- Plugin usage analytics
- Enhanced search and discovery
- Plugin collections/bundles
- Plugin marketplace web interface
- Community ratings and reviews
- Verified publisher program
- Premium plugin support
- Integration with CI/CD pipelines
- Cross-marketplace plugin sharing
DevsForge Marketplace - Transforming Claude Code into the ultimate development platform.
Last Updated: 2026-01-13