By choiszt
Analyzes 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
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
npx claudepluginhub choiszt/team-orchestrator --plugin team-orchestratorSkill for deciding when and how to create agent teams - single agent vs parallel subagents vs coordinated teams, with model selection and communication patterns
Agent Teams 智能编排决策引擎。自动分析任务复杂度,判断使用 Subagent 还是 Agent Teams,并提供团队设计指南和 Prompt 模板。
Multi-agent team orchestration for Claude Code. Set up parallel AI agent teams with file-based planning, progress tracking, and role-based collaboration.
The team-architecture factory for Claude Code — a meta-skill that turns a domain description into an agent team and the skills they use, with six pre-defined team-architecture patterns (Pipeline, Fan-out/Fan-in, Expert Pool, Producer-Reviewer, Supervisor, Hierarchical Delegation). Claude Code용 팀 아키텍처 팩토리: 도메인 한 문장을 에이전트 팀과 스킬 세트로 변환하는 메타 스킬.
Delegation system with workflow orchestration, specialized agents, and parallel execution for Claude Code
Intelligently compose and deploy Claude Code Agent Teams. Auto-selects optimal team composition from 24+ agents and 83+ skills across 5 scopes, generates task dependency graphs, and orchestrates multi-agent workflows with a single command.