mirror of
https://github.com/wshobson/agents.git
synced 2026-03-18 09:37:15 +00:00
docs: bump marketplace to v1.4.0, update README with Agent Teams and Conductor highlights
This commit is contained in:
75
README.md
75
README.md
@@ -4,26 +4,26 @@
|
||||
|
||||
[](https://smithery.ai/skills?ns=wshobson&utm_source=github&utm_medium=badge)
|
||||
|
||||
> **🎯 Agent Skills Enabled** — 129 specialized skills extend Claude's capabilities across plugins with progressive disclosure
|
||||
> **🎯 Agent Skills Enabled** — 146 specialized skills extend Claude's capabilities across plugins with progressive disclosure
|
||||
|
||||
A comprehensive production-ready system combining **108 specialized AI agents**, **15 multi-agent workflow orchestrators**, **129 agent skills**, and **72 development tools** organized into **72 focused, single-purpose plugins** for [Claude Code](https://docs.claude.com/en/docs/claude-code/overview).
|
||||
A comprehensive production-ready system combining **112 specialized AI agents**, **16 multi-agent workflow orchestrators**, **146 agent skills**, and **79 development tools** organized into **73 focused, single-purpose plugins** for [Claude Code](https://docs.claude.com/en/docs/claude-code/overview).
|
||||
|
||||
## Overview
|
||||
|
||||
This unified repository provides everything needed for intelligent automation and multi-agent orchestration across modern software development:
|
||||
|
||||
- **72 Focused Plugins** - Granular, single-purpose plugins optimized for minimal token usage and composability
|
||||
- **108 Specialized Agents** - Domain experts with deep knowledge across architecture, languages, infrastructure, quality, data/AI, documentation, business operations, and SEO
|
||||
- **129 Agent Skills** - Modular knowledge packages with progressive disclosure for specialized expertise
|
||||
- **15 Workflow Orchestrators** - Multi-agent coordination systems for complex operations like full-stack development, security hardening, ML pipelines, and incident response
|
||||
- **72 Development Tools** - Optimized utilities including project scaffolding, security scanning, test automation, and infrastructure setup
|
||||
- **73 Focused Plugins** - Granular, single-purpose plugins optimized for minimal token usage and composability
|
||||
- **112 Specialized Agents** - Domain experts with deep knowledge across architecture, languages, infrastructure, quality, data/AI, documentation, business operations, and SEO
|
||||
- **146 Agent Skills** - Modular knowledge packages with progressive disclosure for specialized expertise
|
||||
- **16 Workflow Orchestrators** - Multi-agent coordination systems for complex operations like full-stack development, security hardening, ML pipelines, and incident response
|
||||
- **79 Development Tools** - Optimized utilities including project scaffolding, security scanning, test automation, and infrastructure setup
|
||||
|
||||
### Key Features
|
||||
|
||||
- **Granular Plugin Architecture**: 72 focused plugins optimized for minimal token usage
|
||||
- **Comprehensive Tooling**: 72 development tools including test generation, scaffolding, and security scanning
|
||||
- **Granular Plugin Architecture**: 73 focused plugins optimized for minimal token usage
|
||||
- **Comprehensive Tooling**: 79 development tools including test generation, scaffolding, and security scanning
|
||||
- **100% Agent Coverage**: All plugins include specialized agents
|
||||
- **Agent Skills**: 129 specialized skills following for progressive disclosure and token efficiency
|
||||
- **Agent Skills**: 146 specialized skills following for progressive disclosure and token efficiency
|
||||
- **Clear Organization**: 23 categories with 1-6 plugins each for easy discovery
|
||||
- **Efficient Design**: Average 3.4 components per plugin (follows Anthropic's 2-8 pattern)
|
||||
|
||||
@@ -49,7 +49,7 @@ Add this marketplace to Claude Code:
|
||||
/plugin marketplace add wshobson/agents
|
||||
```
|
||||
|
||||
This makes all 72 plugins available for installation, but **does not load any agents or tools** into your context.
|
||||
This makes all 73 plugins available for installation, but **does not load any agents or tools** into your context.
|
||||
|
||||
### Step 2: Install Plugins
|
||||
|
||||
@@ -114,9 +114,9 @@ rm -rf ~/.claude/plugins/cache/claude-code-workflows && rm ~/.claude/plugins/ins
|
||||
|
||||
### Core Guides
|
||||
|
||||
- **[Plugin Reference](docs/plugins.md)** - Complete catalog of all 72 plugins
|
||||
- **[Agent Reference](docs/agents.md)** - All 108 agents organized by category
|
||||
- **[Agent Skills](docs/agent-skills.md)** - 129 specialized skills with progressive disclosure
|
||||
- **[Plugin Reference](docs/plugins.md)** - Complete catalog of all 73 plugins
|
||||
- **[Agent Reference](docs/agents.md)** - All 112 agents organized by category
|
||||
- **[Agent Skills](docs/agent-skills.md)** - 146 specialized skills with progressive disclosure
|
||||
- **[Usage Guide](docs/usage.md)** - Commands, workflows, and best practices
|
||||
- **[Architecture](docs/architecture.md)** - Design principles and patterns
|
||||
|
||||
@@ -130,7 +130,44 @@ rm -rf ~/.claude/plugins/cache/claude-code-workflows && rm ~/.claude/plugins/ins
|
||||
|
||||
## What's New
|
||||
|
||||
### Agent Skills (140 skills across 20 plugins)
|
||||
### Agent Teams Plugin (NEW)
|
||||
|
||||
Orchestrate multi-agent teams for parallel workflows using Claude Code's experimental Agent Teams feature:
|
||||
|
||||
```bash
|
||||
/plugin install agent-teams@claude-code-workflows
|
||||
```
|
||||
|
||||
- **7 Team Presets** — `review`, `debug`, `feature`, `fullstack`, `research`, `security`, `migration`
|
||||
- **Parallel Code Review** — `/team-review src/ --reviewers security,performance,architecture`
|
||||
- **Hypothesis-Driven Debugging** — `/team-debug "API returns 500" --hypotheses 3`
|
||||
- **Parallel Feature Development** — `/team-feature "Add OAuth2 auth" --plan-first`
|
||||
- **Research Teams** — Parallel investigation across codebase, web, and library docs (Context7 MCP)
|
||||
- **Security Audits** — 4 reviewers covering OWASP, auth, dependencies, and secrets
|
||||
- **Migration Support** — Coordinated migration with parallel streams and correctness verification
|
||||
|
||||
Includes 4 specialized agents, 7 commands, 6 skills with reference documentation, and Context7 MCP integration.
|
||||
|
||||
[→ View agent-teams documentation](plugins/agent-teams/README.md)
|
||||
|
||||
### Conductor Plugin — Context-Driven Development
|
||||
|
||||
Transforms Claude Code into a project management tool with a structured **Context → Spec & Plan → Implement** workflow:
|
||||
|
||||
```bash
|
||||
/plugin install conductor@claude-code-workflows
|
||||
```
|
||||
|
||||
- **Interactive Setup** — `/conductor:setup` creates product vision, tech stack, workflow rules, and style guides
|
||||
- **Track-Based Development** — `/conductor:new-track` generates specifications and phased implementation plans
|
||||
- **TDD Workflow** — `/conductor:implement` executes tasks with verification checkpoints
|
||||
- **Semantic Revert** — `/conductor:revert` undoes work by logical unit (track, phase, or task)
|
||||
- **State Persistence** — Resume setup across sessions with persistent project context
|
||||
- **3 Skills** — Context-driven development, track management, workflow patterns
|
||||
|
||||
[→ View Conductor documentation](plugins/conductor/README.md)
|
||||
|
||||
### Agent Skills (146 skills across 21 plugins)
|
||||
|
||||
Specialized knowledge packages following Anthropic's progressive disclosure architecture:
|
||||
|
||||
@@ -246,11 +283,11 @@ Uses kubernetes-architect agent with 4 specialized skills for production-grade c
|
||||
|
||||
## Plugin Categories
|
||||
|
||||
**23 categories, 72 plugins:**
|
||||
**24 categories, 73 plugins:**
|
||||
|
||||
- 🎨 **Development** (4) - debugging, backend, frontend, multi-platform
|
||||
- 📚 **Documentation** (3) - code docs, API specs, diagrams, C4 architecture
|
||||
- 🔄 **Workflows** (4) - git, full-stack, TDD, **Conductor** (context-driven development)
|
||||
- 🔄 **Workflows** (5) - git, full-stack, TDD, **Conductor** (context-driven development), **Agent Teams** (multi-agent orchestration)
|
||||
- ✅ **Testing** (2) - unit testing, TDD workflows
|
||||
- 🔍 **Quality** (3) - code review, comprehensive review, performance
|
||||
- 🤖 **AI & ML** (4) - LLM apps, agent orchestration, context, MLOps
|
||||
@@ -278,7 +315,7 @@ Uses kubernetes-architect agent with 4 specialized skills for production-grade c
|
||||
- **Single responsibility** - Each plugin does one thing well
|
||||
- **Minimal token usage** - Average 3.4 components per plugin
|
||||
- **Composable** - Mix and match for complex workflows
|
||||
- **100% coverage** - All 108 agents accessible across plugins
|
||||
- **100% coverage** - All 112 agents accessible across plugins
|
||||
|
||||
### Progressive Disclosure (Skills)
|
||||
|
||||
@@ -293,7 +330,7 @@ Three-tier architecture for token efficiency:
|
||||
```
|
||||
claude-agents/
|
||||
├── .claude-plugin/
|
||||
│ └── marketplace.json # 72 plugins
|
||||
│ └── marketplace.json # 73 plugins
|
||||
├── plugins/
|
||||
│ ├── python-development/
|
||||
│ │ ├── agents/ # 3 Python experts
|
||||
|
||||
Reference in New Issue
Block a user