Marketplace for Creating Agent Teams plugin
npx claudepluginhub zoranspirkovski/creating-agent-teamsSkill for deciding when and how to create agent teams - single agent vs parallel subagents vs coordinated teams, with model selection and communication patterns
No description available.
RuFlo Marketplace: Claude Code native agents, swarms, workers, and MCP tools for continuous software engineering
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Share bugs, ideas, or general feedback.
A Claude Code plugin with a skill for deciding when and how to create agent teams - whether a task needs a single agent, parallel subagents, or a coordinated team.
This plugin provides a skill that helps you:
Agent teams are experimental and disabled by default. Enable them in your Claude Code settings:
// ~/.claude/settings.json
{
"env": {
"CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1"
}
}
For complete details on agent teams, see the official Claude Code documentation:
Add this repository as a marketplace and install:
/plugin marketplace add ZoranSpirkovski/creating-agent-teams
/plugin install creating-agent-teams@ZoranSpirkovski-creating-agent-teams
git clone https://github.com/ZoranSpirkovski/creating-agent-teams.git ~/.claude/plugins/creating-agent-teams
git clone https://github.com/ZoranSpirkovski/creating-agent-teams.git ~/.claude/skills/creating-agent-teams
cd ~/.claude/skills/creating-agent-teams
# Move skill files to root for legacy skill loading
mv skills/creating-agent-teams/* .
rmdir skills/creating-agent-teams skills
creating-agent-teams/
├── .claude-plugin/
│ └── plugin.json # Plugin metadata
├── skills/
│ └── creating-agent-teams/
│ ├── SKILL.md # Core skill - decision framework
│ ├── research.md # Reference - model comparisons, patterns
│ └── agent-prompt-template.md # Templates for spawning agents
└── README.md
| Agent | Model | Type | Role |
|---|---|---|---|
| Orchestrator | opus | general-purpose | Coordinates, never implements |
| Explorer | haiku | Explore | Finds files, patterns, conventions |
| Frontend | sonnet | general-purpose | React/UI implementation |
| Backend | sonnet | general-purpose | Server-side logic |
| API | sonnet | general-purpose | Endpoints, contracts |
| Reviewer | sonnet | code-reviewer | Quality gate |
The skill triggers when you:
Example:
Create an agent team to implement the user authentication feature.
We need frontend login form, backend auth service, and API endpoints.
To submit this plugin to the official Anthropic marketplace:
MIT