Intelligent automation and multi-agent orchestration for Claude Code
npx skills add https://github.com/wshobson/agents --skill embedding-strategiesInstale esta skill com a CLI e comece a usar o fluxo de trabalho SKILL.md em seu espaço de trabalho.
⚡ Updated for Opus 4.7, Sonnet 4.6 & Haiku 4.5 — Three-tier model strategy for optimal performance
🎯 Agent Skills Enabled — 150 specialized skills extend Claude's capabilities across plugins with progressive disclosure
A comprehensive production-ready system combining 184 specialized AI agents, 16 multi-agent workflow orchestrators, 150 agent skills, and 98 commands organized into 78 focused, single-purpose plugins for Claude Code.
This unified repository provides everything needed for intelligent automation and multi-agent orchestration across modern software development:
Each plugin is completely isolated with its own agents, commands, and skills:
Example: Installing python-development loads 3 Python agents, 1 scaffolding tool, and makes 16 skills available (~1000 tokens), not the entire marketplace.
Add this marketplace to Claude Code:
/plugin marketplace add wshobson/agents
This makes all 78 plugins available for installation, but does not load any agents or tools into your context.
Browse available plugins:
/plugin
Install the plugins you need:
# Essential development plugins
/plugin install python-development # Python with 16 specialized skills
/plugin install javascript-typescript # JS/TS with 4 specialized skills
/plugin install backend-development # Backend APIs with 3 architecture skills
# Infrastructure & operations
/plugin install kubernetes-operations # K8s with 4 deployment skills
/plugin install cloud-infrastructure # AWS/Azure/GCP with 4 cloud skills
# Security & quality
/plugin install security-scanning # SAST with security skill
/plugin install comprehensive-review # Multi-perspective code analysis
# Full-stack orchestration
/plugin install full-stack-orchestration # Multi-agent workflows
Each installed plugin loads only its specific agents, commands, and skills into Claude's context.
You install plugins, which bundle agents:
| Plugin | Agents |
|---|---|
comprehensive-review |
architect-review, code-reviewer, security-auditor |
javascript-typescript |
javascript-pro, typescript-pro |
python-development |
python-pro, django-pro, fastapi-pro |
blockchain-web3 |
blockchain-developer |
# ❌ Wrong - can't install agents directly
/plugin install typescript-pro
# ✅ Right - install the plugin
/plugin install javascript-typescript@claude-code-workflows
"Plugin not found" → Use plugin names, not agent names. Add @claude-code-workflows suffix.
Plugins not loading → Clear cache and reinstall:
rm -rf ~/.claude/plugins/cache/claude-code-workflows && rm ~/.claude/plugins/installed_plugins.json
A three-layer evaluation framework for measuring and certifying plugin/skill quality:
/plugin install plugin-eval@claude-code-workflows
uv run plugin-eval score/certify/compare or /eval, /certify, /compare commands--threshold flag exits non-zero below a minimum score# Quick evaluation (static only, instant)
uv run plugin-eval score path/to/skill --depth quick
# Standard evaluation (static + LLM judge)
uv run plugin-eval score path/to/skill --depth standard
# Full certification (all layers + Elo)
uv run plugin-eval certify path/to/skill
→ View PluginEval documentation
Orchestrate multi-agent teams for parallel workflows using Claude Code's experimental Agent Teams feature:
/plugin install agent-teams@claude-code-workflows
review, debug, feature, fullstack, research, security, migration/team-review src/ --reviewers security,performance,architecture/team-debug "API returns 500" --hypotheses 3/team-feature "Add OAuth2 auth" --plan-firstIncludes 4 specialized agents, 7 commands, and 6 skills with reference documentation.
→ View agent-teams documentation
Transforms Claude Code into a project management tool with a structured Context → Spec & Plan → Implement workflow:
/plugin install conductor@claude-code-workflows
/conductor:setup creates product vision, tech stack, workflow rules, and style guides/conductor:new-track generates specifications and phased implementation plans/conductor:implement executes tasks with verification checkpoints/conductor:revert undoes work by logical unit (track, phase, or task)→ View Conductor documentation
Specialized knowledge packages following Anthropic's progressive disclosure architecture:
Language Development:
Infrastructure & DevOps:
Development & Architecture:
Blockchain & Web3 (4 skills): DeFi protocols, NFT standards, Solidity security, Web3 testing
Project Management:
And more: Framework migration, observability, payment processing, ML operations, security scanning
→ View complete skills documentation
Strategic model assignment for optimal performance and cost:
| Tier | Model | Agents | Use Case |
|---|---|---|---|
| Tier 1 | Opus 4.7 | 42 | Critical architecture, security, ALL code review, production coding (language pros, frameworks) |
| Tier 2 | Inherit | 42 | Complex tasks - user chooses model (AI/ML, backend, frontend/mobile, specialized) |
| Tier 3 | Sonnet | 51 | Support with intelligence (docs, testing, debugging, network, API docs, DX, legacy, payments) |
| Tier 4 | Haiku | 18 | Fast operational tasks (SEO, deployment, simple docs, sales, content, search) |
Why Opus 4.7 for Critical Agents?
Tier 2 Flexibility (inherit):
Agents marked inherit use your session's default model, letting you balance cost and capability:
claude --model opus or claude --model sonnet when starting a sessionCost Considerations:
inherit tier to control costs for high-volume use casesOrchestration patterns combine models for efficiency:
Opus (architecture) → Sonnet (development) → Haiku (deployment)
→ View model configuration details
/full-stack-orchestration:full-stack-feature "user authentication with OAuth2"
Coordinates 7+ agents: backend-architect → database-architect → frontend-developer → test-automator → security-auditor → deployment-engineer → observability-engineer
/security-scanning:security-hardening --level comprehensive
Multi-agent security assessment with SAST, dependency scanning, and code review.
/python-development:python-scaffold fastapi-microservice
Creates production-ready FastAPI project with async patterns, activating skills:
async-python-patterns - AsyncIO and concurrencypython-testing-patterns - pytest and fixturesuv-package-manager - Fast dependency management# Activates k8s skills automatically
"Create production Kubernetes deployment with Helm chart and GitOps"
Uses kubernetes-architect agent with 4 specialized skills for production-grade configs.
25 categories, 78 plugins:
→ View complete plugin catalog
Plugins hosted in their own marketplaces — install from the source for the latest releases:
Pensyve — Universal memory runtime with cross-session cognitive memory for Claude Code. Intelligent capture, entity-aware recall, 6 commands, 4 skills, 2 agents, and 6 lifecycle hooks.
/plugin marketplace add major7apps/pensyve
/plugin install pensyve@major7apps-pensyve
Three-tier architecture for token efficiency:
claude-agents/
├── .claude-plugin/
│ └── marketplace.json # 77 plugins
├── plugins/
│ ├── python-development/
│ │ ├── agents/ # 3 Python experts
│ │ ├── commands/ # Scaffolding tool
│ │ └── skills/ # 5 specialized skills
│ ├── kubernetes-operations/
│ │ ├── agents/ # K8s architect
│ │ ├── commands/ # Deployment tools
│ │ └── skills/ # 4 K8s skills
│ └── ... (67 more plugins)
├── docs/ # Comprehensive documentation
└── README.md # This file
To add new agents, skills, or commands:
plugins/.md files in the appropriate subdirectory:
agents/ - For specialized agentscommands/ - For tools and workflowsskills/ - For modular knowledge packages.claude-plugin/marketplace.jsonSee Architecture Documentation for detailed guidelines.
MIT License - see LICENSE file for details.