team-agentlisted
Install: claude install-skill Florious95/team-agent
# Team Agent
Use this skill only for Team Agent operation. The leader is the current user-facing agent; do not create a `leader` worker. Worker role docs live in `<workspace>/agents/`; `TEAM.md` lives at `<workspace>/TEAM.md`.
## Leader Requirement
Real Team Agent teams require the current leader to run inside a tmux-managed pane. Prefer the short launchers:
```bash
team-agent codex
team-agent claude
```
Pass provider flags after the provider name, for example `team-agent codex --dangerously-bypass-approvals-and-sandbox`. Existing tmux layouts are valid too, including Finder/Ghostty launchers, as long as `team-agent quick-start` is invoked from the leader's current tmux pane. Do not start a real team from a naked terminal that Team Agent cannot address through tmux.
## Minimal Copy-Paste Team
```bash
mkdir -p .team/current/agents
team-agent profile init codex-default --auth-mode subscription --workspace .
cat > .team/current/TEAM.md <<'EOF'
---
name: demo-team
objective: One worker handles bounded tasks and reports through Team Agent MCP.
dangerous_auto_approve: false
fast: false
provider_models:
codex: gpt-5.5
claude: claude-sonnet-4-6
claude_code: claude-sonnet-4-6
---
Team config only. This is not a worker role.
EOF
cat > .team/current/agents/coder.md <<'EOF'
---
name: coder
role: Implementation Worker
provider: codex
auth_mode: subscription
profile: codex-default
tools:
- fs_read
- fs_list
- fs_write
- execute_bash
- mcp_team
- provider_builtin
-