create-team
정보
이 스킬은 조정된 워크플로우 설정을 자동화하여 새로운 다중 에이전트 팀 구성 파일을 생성합니다. 목적 정의, 멤버 선정, 조정 패턴, 작업 분해를 처리하며 필요한 설정과 문서를 생성합니다. 다중 에이전트 워크플로우를 정의하거나 복잡하고 반복적인 협업 작업을 위해 에이전트를 구성할 때 사용하세요.
빠른 설치
Claude Code
추천npx skills add pjt222/agent-almanac -a claude-code/plugin add https://github.com/pjt222/agent-almanacgit clone https://github.com/pjt222/agent-almanac.git ~/.claude/skills/create-teamClaude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요
문서
Create a New Team
Multi-agent team → coord 2+ agents for multi-perspective tasks. Integrates w/ teams registry, activatable in Claude Code by name.
Use When
- Task needs multi perspectives (code review + sec audit + arch)
- Recurring collab workflow w/ consistent roles
- Existing ad-hoc composition → formalize
- Complex proc → phases / specialties
- Sprint / pipeline / parallel work
In
- Required: Team name (kebab-case,
data-pipeline-review) - Required: Purpose (1 paragraph)
- Required: Lead agent (in
agents/_registry.yml) - Optional: Coord pattern (def: hub-and-spoke). One of:
hub-and-spoke,sequential,parallel,timeboxed,adaptive - Optional: Members (def: 3-4; rec: 2-5)
- Optional: Src material
Do
Step 1: Purpose
Answer:
- What outcome delivered? (report, deploy, sprint)
- Why not 1 agent? ≥2 specialties
- When activate? Triggers
Write 1 paragraph → human/agent reads → decide activation.
Got: Clear paragraph + ≥2 specialties.
If err: Can't ID 2 specialties → no team needed. Use 1 agent w/ multi skills.
Step 2: Lead
Orchestrator. Choose from registry:
- Domain expertise → primary output
- Decompose reqs → subtasks
- Synthesize results → deliverable
# List all available agents
grep "^ - id:" agents/_registry.yml
Lead = also member (lead always member).
Got: Lead chosen + in registry.
If err: No fit → create via create-agent first. Don't create team w/ non-existent lead.
Step 3: Members
2-5 members (incl lead), non-overlap responsibilities. Each:
- id: Agent name
- role: Short title ("Quality Reviewer", "Security Auditor", "Architecture Reviewer")
- responsibilities: 1 sentence, unique
# Verify each candidate agent exists
grep "id: agent-name-here" agents/_registry.yml
Validate no overlap: same primary resp = merge / sharpen.
Got: 2-5 members, unique roles, in registry.
If err: Agent missing → create first. Overlap → rewrite / remove 1.
Step 4: Coord Pattern
| Pattern | Use When | Example |
|---|---|---|
| hub-and-spoke | Lead distrib + collect + synth. Review/audit. | r-package-review, gxp-compliance-validation, ml-data-science-review |
| sequential | Each builds on prior. Pipelines/staged. | fullstack-web-dev, tending |
| parallel | All sim, independent subtasks. No deps. | devops-platform-engineering |
| timeboxed | Fixed iters. Sprint w/ backlog. | scrum-team |
| adaptive | Self-org. Unknown/variable. | opaque-team |
Decision:
- Lead sees all results pre-output → hub-and-spoke
- B needs A's out → sequential
- All work w/o seeing others → parallel
- Iters w/ planning → timeboxed
- Unpredictable struct → adaptive
Got: Pattern + rationale.
If err: Doubt → hub-and-spoke (most common, works for review/analysis).
Step 5: Task Decomposition
Phases:
- Setup: Lead analyzes req + creates tasks
- Execution: Each member's work (par/seq/sprint)
- Synthesis: Collect + deliverable
Per member: 3-5 concrete tasks (typical req). In "Task Decomposition" prose + CONFIG tasks list.
Got: Phase-structured decomp + concrete tasks per member, matches coord pattern.
If err: Vague ("reviews things") → specific ("reviews code style vs tidyverse guide, checks coverage, evaluates err msg quality").
Step 6: Team File
cp teams/_template.md teams/<team-name>.md
Fill in order:
- YAML frontmatter:
name,description,lead,version("1.0.0"),author,created,updated,tags,coordination,members[](id, role, responsibilities) - Title:
# Team Name(readable, title case) - Intro: 1 paragraph
- Purpose: Why exist + specialties
- Team Composition: Table (Member, Agent, Role, Focus)
- Coordination Pattern: Prose + ASCII diagram
- Task Decomposition: Phased + tasks per member
- Configuration: CONFIG block (Step 7)
- Usage Scenarios: 2-3 + example prompts
- Limitations: 3-5
- See Also: Links to members + related
Got: Complete file, no placeholders.
If err: Compare existing (teams/r-package-review.md). Search placeholders ("your-team-name", "another-agent") → unfilled.
Step 7: CONFIG Block
Between <!-- CONFIG:START --> + <!-- CONFIG:END --> → YAML for tooling:
<!-- CONFIG:START -->
```yaml
team:
name: <team-name>
lead: <lead-agent-id>
coordination: <pattern>
members:
- agent: <agent-id>
role: <role-title>
subagent_type: <agent-id> # Claude Code subagent type for spawning
# ... repeat for each member
tasks:
- name: <task-name>
assignee: <agent-id>
description: <one-line description>
# ... repeat for each task
- name: synthesize-report # final task if hub-and-spoke
assignee: <lead-agent-id>
description: <synthesis description>
blocked_by: [<prior-task-names>] # for dependency ordering
```
<!-- CONFIG:END -->
subagent_type → Claude Code types. For .claude/agents/, use agent id. blocked_by = task deps (synth blocked by all reviews).
Got: Valid YAML, agents = frontmatter members, deps = valid DAG (no cycles).
If err: Validate syntax. Every assignee = agent in members. blocked_by refs earlier task names only.
Step 8: Registry
Edit teams/_registry.yml:
- id: <team-name>
path: <team-name>.md
lead: <lead-agent-id>
members: [<agent-id-1>, <agent-id-2>, ...]
coordination: <pattern>
description: <one-line description matching frontmatter>
Increment total_teams (8 → 9 after adding 1).
# Verify the entry was added
grep "id: <team-name>" teams/_registry.yml
Got: Entry in registry, count +1.
If err: Name exists → diff name / update. Verify YAML indent matches.
Step 9: README Automation
Regen:
npm run update-readmes
Updates dynamic sections in teams/README.md + files w/ <!-- AUTO:START --> markers referencing team data.
Got: Exit 0, teams/README.md has new team.
If err: npm run check-readmes → out-of-sync files. Script fail → verify package.json in root + js-yaml installed (npm install).
Step 10: Verify Activation
Test in Claude Code:
User: Use the <team-name> team to <typical task description>
Claude reads teams/<team-name>.md, extracts CONFIG, orchestrates:
TeamCreatew/ name + desc- Spawn teammates via
Agenttool (subagent_typefrom CONFIG) TaskCreatew/blocked_bydeps from CONFIG- Lead coords per pattern
Note: Teams not auto-discovered from .claude/teams/. Claude reads def directly from teams/ on request.
Got: Claude reads file, TeamCreate works, spawns correct agents, follows pattern.
If err: Verify file at teams/<team-name>.md (not subdir). All member agents exist in agents/. CONFIG YAML valid + subagent_type per member. Listed in teams/_registry.yml.
Step 11: Scaffold Translations
Required for all teams. Human + AI authors. Do not skip → backlog.
4 locales post-commit:
for locale in de zh-CN ja es; do
npm run translate:scaffold -- teams <team-name> "$locale"
done
Translate prose (code + IDs EN). Regen:
npm run translation:status
Got: 4 files at i18n/{de,zh-CN,ja,es}/teams/<team-name>.md, source_commit = HEAD. npm run validate:translations → 0 stale.
If err: Scaffold fail → team in teams/_registry.yml. Status stale → run npm run translation:status explicit.
Check
- File at
teams/<team-name>.md - YAML parses
- Required:
name,description,lead,version,author,coordination,members[] - Each member:
id,role,responsibilities - Sections: Purpose, Team Composition, Coordination Pattern, Task Decomposition, Configuration, Usage Scenarios, Limitations, See Also
- CONFIG block between markers
- CONFIG YAML valid
- All member ids in
agents/_registry.yml - Lead in members list
- No 2 members w/ same primary resp
- In
teams/_registry.ymlw/ correct path/lead/members/coord -
total_teams+1 -
npm run update-readmesno err
Traps
- Too many members: >5 → hard coord. Split team / reduce to essentials.
- Overlap resp: 2 "review code quality" → findings conflict, lead wastes time dedup. Distinct focus.
- Wrong coord: hub-and-spoke when need each other's out (should be seq) / seq when can work indep (should be par). Review Step 4.
- Missing CONFIG: Not optional decoration. Machine-readable spec for
TeamCreate/ spawn / tasks. Without → only ad-hoc prose interp (less reliable). - Lead not in members: Lead must appear as member w/ own role + resp. Coord-only lead wastes slot. Give concrete review/synth resp.
→
create-skill— parallel SKILL.md meta-patterncreate-agent— create memberscommit-changes— commit team + registry
GitHub 저장소
연관 스킬
content-collections
메타이 스킬은 콘텐츠 콜렉션(Content Collections)을 위한 프로덕션 검증된 설정을 제공합니다. 콘텐츠 콜렉션은 Markdown/MDX 파일을 Zod 검증이 포함된 타입 안전한 데이터 콜렉션으로 변환해주는 TypeScript 최우선 도구입니다. 블로그, 문서 사이트 또는 콘텐츠 중심의 Vite + React 애플리케이션을 구축할 때 타입 안전성과 자동 콘텐츠 검증을 보장하기 위해 사용하세요. Vite 플러그인 구성과 MDX 컴파일부터 배포 최적화 및 스키마 검증에 이르기까지 모든 것을 다룹니다.
polymarket
메타이 스킬은 개발자들이 Polymarket 예측 시장 플랫폼을 활용한 애플리케이션을 구축할 수 있도록 지원하며, 거래 및 시장 데이터를 위한 API 통합 기능을 포함합니다. 또한 WebSocket을 통한 실시간 데이터 스트리밍을 제공하여 실시간 거래와 시장 활동을 모니터링할 수 있습니다. 이를 통해 거래 전략을 구현하거나 실시간 시장 업데이트를 처리하는 도구를 생성하는 데 활용할 수 있습니다.
creating-opencode-plugins
메타이 스킬은 개발자들이 명령어, 파일, LSP 작업 등 25개 이상의 이벤트 유형에 연결되는 OpenCode 플러그인을 만들 수 있도록 돕습니다. JavaScript/TypeScript 모듈을 위한 플러그인 구조, 이벤트 API 명세, 구현 패턴을 제공합니다. OpenCode AI 어시스턴트의 라이프사이클을 사용자 정의 이벤트 기반 로직으로 가로채거나, 모니터링하거나, 확장해야 할 때 사용하세요.
sglang
메타SGLang은 RadixAttention 프리픽스 캐싱을 활용하여 JSON, 정규식, 에이전트 워크플로우를 위한 고속 구조화 생성에 특화된 고성능 LLM 서빙 프레임워크입니다. 특히 반복되는 프리픽스가 있는 작업에서 상당히 빠른 추론 속도를 제공하여 복잡한 구조화 출력 및 다중 턴 대화에 이상적입니다. 제약 디코딩이 필요하거나 광범위한 프리픽스 공유가 있는 애플리케이션을 구축할 때는 vLLM과 같은 대안보다 SGLang을 선택하십시오.
