docs/architecture.md
This marketplace follows industry best practices with a focus on granularity, composability, and minimal token usage.
99 Specialized Agents
15 Workflow Orchestrators
71 Development Tools
107 Agent Skills
claude-agents/
├── .claude-plugin/
│ └── marketplace.json # Marketplace catalog (67 plugins)
├── plugins/ # Isolated plugin directories
│ ├── python-development/
│ │ ├── agents/ # Python language agents
│ │ │ ├── python-pro.md
│ │ │ ├── django-pro.md
│ │ │ └── fastapi-pro.md
│ │ ├── commands/ # Python tooling
│ │ │ └── python-scaffold.md
│ │ └── skills/ # Python skills (5 total)
│ │ ├── async-python-patterns/
│ │ ├── python-testing-patterns/
│ │ ├── python-packaging/
│ │ ├── python-performance-optimization/
│ │ └── uv-package-manager/
│ ├── backend-development/
│ │ ├── agents/
│ │ │ ├── backend-architect.md
│ │ │ ├── graphql-architect.md
│ │ │ └── tdd-orchestrator.md
│ │ ├── commands/
│ │ │ └── feature-development.md
│ │ └── skills/ # Backend skills (3 total)
│ │ ├── api-design-principles/
│ │ ├── architecture-patterns/
│ │ └── microservices-patterns/
│ ├── security-scanning/
│ │ ├── agents/
│ │ │ └── security-auditor.md
│ │ ├── commands/
│ │ │ ├── security-hardening.md
│ │ │ ├── security-sast.md
│ │ │ └── security-dependencies.md
│ │ └── skills/ # Security skills (1 total)
│ │ └── sast-configuration/
│ ├── c4-architecture/
│ │ ├── agents/ # C4 architecture agents
│ │ │ ├── c4-code.md
│ │ │ ├── c4-component.md
│ │ │ ├── c4-container.md
│ │ │ └── c4-context.md
│ │ └── commands/
│ │ └── c4-architecture.md
│ └── ... (62 more isolated plugins)
├── docs/ # Documentation
│ ├── agent-skills.md # Agent Skills guide
│ ├── agents.md # Agent reference
│ ├── plugins.md # Plugin catalog
│ ├── usage.md # Usage guide
│ └── architecture.md # This file
└── README.md # Quick start
Each plugin contains:
plugins/kubernetes-operations/
├── agents/
│ └── kubernetes-architect.md # K8s architecture and design
├── commands/
│ └── k8s-deploy.md # Deployment automation
└── skills/
├── k8s-manifest-generator/ # Manifest creation skill
├── helm-chart-scaffolding/ # Helm chart skill
├── gitops-workflow/ # GitOps automation skill
└── k8s-security-policies/ # Security policy skill
Skills use a three-tier architecture for token efficiency:
All skills follow the Agent Skills Specification:
---
name: skill-name # Required: hyphen-case
description: What the skill does. Use when [trigger]. # Required: < 1024 chars
---
# Skill content with progressive disclosure
See Agent Skills for complete details on the 107 skills.
The system uses Claude Opus and Sonnet models strategically:
| Model | Count | Use Case |
|---|---|---|
| Opus | 42 agents | Critical architecture, security, code review |
| Sonnet | 39 agents | Complex tasks, support with intelligence |
| Haiku | 18 agents | Fast operational tasks |
Haiku - Fast Execution & Deterministic Tasks
Sonnet - Complex Reasoning & Architecture
Combine models for optimal performance and cost:
Planning Phase (Sonnet) → Execution Phase (Haiku) → Review Phase (Sonnet)
Example:
backend-architect (Sonnet) designs API
↓
Generate endpoints (Haiku) implements spec
↓
test-automator (Haiku) creates tests
↓
code-reviewer (Sonnet) validates architecture
Each plugin focuses on one domain:
python-development/
├── agents/ # Python language experts
├── commands/ # Python project scaffolding
└── skills/ # Python-specific knowledge
Benefits:
Orchestrator plugins coordinate multiple agents:
full-stack-orchestration/
└── commands/
└── full-stack-feature.md # Coordinates 7+ agents
Orchestration:
Agents provide reasoning, skills provide knowledge:
User: "Build FastAPI project with async patterns"
↓
fastapi-pro agent (orchestrates)
↓
fastapi-templates skill (provides patterns)
↓
python-scaffold command (generates project)
Complex workflows use multiple plugins:
Feature Development Workflow:
1. backend-development:feature-development
2. security-scanning:security-hardening
3. unit-testing:test-generate
4. comprehensive-review:full-review
5. cicd-automation:workflow-automate
6. observability-monitoring:monitor-setup
.claude-plugin/marketplace.jsonplugins/{plugin-name}/plugins/{plugin-name}/agents/{agent-name}.mdplugins/{plugin-name}/skills/{skill-name}/SKILL.md