Community-Driven Agent Marketplace - A comprehensive collection of specialized agents, automation workflows, and developer productivity tools
A comprehensive marketplace of production-ready agents and tools designed to solve real developer pain points. Built by the community, for the community.
| Category | What We Provide | How It Helps |
|---|---|---|
| Multi-Agent Coordination | 5 parallel agents for code review | Comprehensive analysis from security, performance, testing, architecture, and style perspectives |
| Workflow Orchestration | YAML-based agent chaining | Automate complex pipelines with conditional logic and parallel execution |
| Quick Access | 7 slash commands | Instant access to common development tasks |
| Integrations | Database queries + 100+ APIs | Natural language interface to your entire stack |
| Infrastructure | Docker, Kubernetes, CI/CD | Production-ready configurations and best practices |
| Full SDLC Coverage | 23+ specialized agents | End-to-end support from development to deployment |
Comprehensive: 23+ specialized agents covering every stage of development Collaborative: Multi-agent coordination for complex tasks Automated: Workflow orchestration to chain agents together Production-Ready: Battle-tested configurations and best practices Open Source: Community-driven with transparent development Extensible: Easy to add your own agents and workflows
We're always improving - contributions welcome! See our Contributing Guide to help make this marketplace even better.
graph TD
A[Pull Request] --> B[PR Reviewer Skill]
B --> C[Security Agent]
B --> D[Performance Agent]
B --> E[Testing Agent]
B --> F[Architecture Agent]
B --> G[Style Agent]
C --> H[Synthesizer]
D --> H
E --> H
F --> H
G --> H
H --> I[Comprehensive Review Report]
I --> J[Auto-Generated Fixes]
┌─────────────────────────────────────────────────────────────┐
│ Workflow Composer │
├─────────────────────────────────────────────────────────────┤
│ │
│ Step 1: Code Quality Checks (Parallel) │
│ ┌──────────┐ ┌──────────┐ ┌──────────┐ │
│ │ Linter │ │ Security │ │ Tests │ │
│ └────┬─────┘ └────┬─────┘ └────┬─────┘ │
│ └─────────────┼─────────────┘ │
│ ↓ │
│ Step 2: Conditional Logic │
│ ┌─────────────────────────────────────┐ │
│ │ IF all_passed THEN proceed │ │
│ │ ELSE notify and exit │ │
│ └────────────────┬────────────────────┘ │
│ ↓ │
│ Step 3: Deployment │
│ ┌─────────────────────────────────────┐ │
│ │ Deploy with retry (max 3 attempts) │ │
│ └─────────────────────────────────────┘ │
│ │
└─────────────────────────────────────────────────────────────┘
/plugin marketplace add https://github.com/GLINCKER/claude-code-marketplace# Core development agents
/plugin install pr-reviewer@glincker-marketplace
/plugin install security-scanner@glincker-marketplace
/plugin install docker-wizard@glincker-marketplace
# Or install all
/plugin marketplace install glincker-marketplace/review # Multi-agent code review (5 agents)
/test # Generate unit tests
/security-scan # OWASP Top 10 audit
/docker-setup # Generate Docker config
/k8s-setup # Generate Kubernetes manifests
/deploy staging # Orchestrated deployment
/workflow # Create automated workflow# Database queries
"Show me users who signed up last month with revenue > $100"
# API integrations
"Send Slack message to #engineering: Deployment complete"
# Code migration
"Migrate this React component from class to hooks"
# Infrastructure
"Generate production-ready K8s manifests with autoscaling"
# Workflows
"Create workflow: test → security scan → deploy if all pass"Location: skills/devops/pr-reviewer/
Multi-agent code review system with 5 specialized agents working in parallel.
- Security Agent: Vulnerability scanning, OWASP compliance
- Performance Agent: Bottleneck detection, optimization suggestions
- Testing Agent: Coverage analysis, test case generation
- Architecture Agent: Design pattern review, SOLID principles
- Style Agent: Code style, documentation quality
Unique value: 5x more thorough than single-agent reviews, generates actionable fixes.
Location: skills/automation/workflow-composer/
First skill composition framework for Claude Code. Chain multiple skills with YAML configuration.
steps:
- name: quality-checks
parallel:
- skill: security-scan
- skill: test-runner
- skill: linter
- name: deploy
when: ${steps.quality-checks.all_passed}
skill: deploy-orchestrator
retry:
max_attempts: 3
backoff: exponentialUnique value: Build complex automation pipelines without coding.
Location: skills/integrations/database-query/
Query any database using natural language with automatic optimization.
-- Input: "Show me users who signed up last month"
-- Generated:
SELECT * FROM users
WHERE created_at >= NOW() - INTERVAL '1 month'
ORDER BY created_at DESC;
-- Includes: Query optimization, index suggestions, EXPLAIN ANALYZESupported: PostgreSQL, MySQL, MongoDB, SQLite, Redis
Unique value: Only skill with query optimization and index suggestions.
Location: skills/development/code-migrator/
Automated legacy code modernization with risk assessment.
Supported migrations:
- Python 2 to Python 3
- JavaScript to TypeScript
- React Classes to Hooks
- Callbacks to Async/Await
- Framework upgrades (Django, Rails, Express)
Unique value: AI-powered risk assessment + automated test generation.
Location: skills/integrations/api-connector/
Natural language interface to 100+ popular APIs.
Supported services:
- Development: GitHub, GitLab, Linear, Jira
- Communication: Slack, Discord, Twilio
- Payments: Stripe, PayPal, Square
- Cloud: AWS, Google Cloud, Azure
- AI: OpenAI, Anthropic, Hugging Face
- And 90+ more
Unique value: Handles authentication (OAuth, JWT), generates integration code.
- README Generator (
skills/documentation/readme-generator/): Analyze project structure and generate comprehensive documentation - Unit Test Generator (
skills/testing/unit-test-generator/): Create tests for multiple languages with coverage analysis
| Feature | GLINCKER | Other Marketplaces |
|---|---|---|
| Multi-Agent Skills | 5 parallel agents | None |
| Workflow Orchestration | YAML-based | None |
| API Integrations | 100+ services | Few (5-10) |
| Database Query | With optimization | Basic/None |
| Code Migration | AI + risk assessment | None |
| Code Generation | Multi-language | Limited |
Startup: "Set up CI/CD, generate tests, create documentation" → Automated workflow handles everything
Enterprise: "Migrate Python 2 monolith to Python 3 microservices" → Risk-assessed migration with automated testing
Developer: "Review code, optimize, and deploy" → Multi-agent review with automated deployment
skills/
├── development/ # Code migration, refactoring, architecture
├── devops/ # PR review, CI/CD, deployment
├── testing/ # Unit tests, integration tests, coverage
├── documentation/ # README, API docs, changelogs
├── integrations/ # APIs, databases, external services
├── automation/ # Workflows, task automation
├── data-science/ # Data analysis, visualization
└── security/ # Audits, vulnerability scanning
skills/category/your-skill/
├── SKILL.md # Required: Skill definition with YAML frontmatter
├── scripts/ # Optional: Helper scripts
└── templates/ # Optional: File templates
---
name: your-skill
description: What your skill does
allowed-tools: ["Read", "Write"]
version: 1.0.0
author: Your Name
---
# Instructions
Clear instructions for Claude on executing this skill.
## Examples
Concrete usage examples.- Fork repository
- Create skill in appropriate category
- Follow Skill Template
- Submit pull request
- Pass community review
Resources:
- Contributing Guide - Detailed instructions
- Quick Start - Fast-track guide
- Unique Features - What makes us different
All skills must have:
- Clear documentation with examples
- Minimal tool permissions (principle of least privilege)
- Security-conscious implementation
- Error handling for edge cases
- Automated testing where applicable
Skills execute code on your system. Before installing:
- Review source code
- Check author reputation
- Understand required permissions
- Only install from trusted sources
- Discussions: Ask questions, share workflows
- Issues: Report bugs, request features
- Contributing: Contribution guidelines
Apache License 2.0 - See LICENSE
Built on:
- Anthropic's Skills - Foundation
- Claude Code community - Inspiration
- Open source contributors - Innovation
Made with Claude Code by the GLINCKER community