Agent Team orchestration skill for Claude Code
npx claudepluginhub choiszt/team-orchestratorAnalyzes tasks to decide whether an Agent Team is needed, designs team structure with clear file ownership, and generates standardized team prompts.
A Claude Code skill that acts as a team architect — analyzes your task, decides whether an Agent Team is needed, designs the optimal team structure with clear file ownership, and generates ready-to-use team prompts.
Claude Code Agent Teams let you spawn multiple Claude sessions to work in parallel. But three questions remain:
This skill answers all three automatically.
When you describe a task, the skill runs a 5-step analysis:
Task Description
|
v
1. Task Analysis -- parallelism, coupling, scale, dependencies
|
v
2. Team Decision -- Team / Subagent / Single Agent / Phased
|
v
3. Quality Calibration -- model selection preference
|
v
4. Team Design -- roles, file ownership, communication rules
|
v
5. Prompt Generation -- structured team prompt ready to execute
It will also actively discourage using a team when the task doesn't warrant it (single-file fixes, highly coupled code, linear dependencies).
/plugin marketplace add choiszt/team-orchestrator
/plugin install team-orchestrator@team-orchestrator-marketplace
git clone https://github.com/choiszt/team-orchestrator.git
cp -r team-orchestrator/skills/team-orchestrator ~/.claude/skills/team-orchestrator
claude --plugin-dir ./team-orchestrator
Explicit — invoke directly:
/team-orchestrator Refactor the auth system across backend, frontend, and tests
Automatic — just describe your task naturally. The skill activates when it detects keywords like "team", "parallel", "swarm", or when the task characteristics suggest parallel execution.
> Add structured logging to user-service, order-service, and payment-service
Task Analysis:
- Parallelism: High (3 independent services)
- Coupling: Low (no shared files)
- Scale: ~12 files
Recommendation: Team (3 teammates, one per service)
> Use a team to fix this CSS alignment bug
This is a single-file fix — no need for a team. Each teammate costs ~5x tokens.
I'll fix it directly.
> Use a team to migrate the entire project from JS to TypeScript
JS -> TS migration has high coupling across modules. Suggest:
- Phase 1 (single agent): tsconfig, shared types, build setup
- Phase 2 (team): parallel migration by module
skills/team-orchestrator/
├── SKILL.md # Core workflow and principles
├── references/
│ ├── decision-matrix.md # Scoring system and case studies
│ ├── team-patterns.md # 5 reusable team templates
│ ├── anti-patterns.md # 8 common mistakes to avoid
│ └── cost-estimation.md # Token cost and ROI guidelines
└── scripts/
└── validate-team-config.py # Validates no file ownership overlaps
MIT
RuFlo Marketplace: Claude Code native agents, swarms, workers, and MCP tools for continuous software engineering
No description available.
Code intelligence powered by a knowledge graph — execution flows, blast radius, and semantic search