| name | team |
| aliases | ["/team","team run","run team"] |
| primaryRole | orchestrator |
| description | Orchestrate parallel tmux workers for a multi-agent team task. |
Team Skill (oh-my-gemini)
Use this skill when the user wants to run a multi-worker team orchestration task.
What it does
Launches omg team run with the specified task and worker count, creating a tmux session with N parallel workers. Each worker receives the team context via GEMINI.md and executes the task, then writes a completion signal.
Usage
omg team run --task "<task description>" --workers <N>
Examples
omg team run --task "Review all PRs" --workers 3
omg team run --task "Run smoke tests" --workers 2
omg team run --task "Audit dependencies" --workers 4
Orchestration steps
- Hook system writes team context to
.gemini/GEMINI.md
- tmux session is created with N worker panes
- Each worker runs
omg worker run --team <name> --worker <id>
- Workers read context, execute task, write done signal to state
- Orchestrator polls until all workers complete
- Results aggregated and displayed
Acceptance criteria