Imported from jjongguet/oh-my-product (
skills/team/SKILL.md). Install upstream withnpx skills add jjongguet/oh-my-product --skill team. Copyright stays with the author.
Team Skill (oh-my-product)
Use this skill when the user wants to run a multi-worker team orchestration task.
What it does
Launches omp 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
omp team run --task "<task description>" --workers <N>
Examples
omp team run --task "Review all PRs" --workers 3omp team run --task "Run smoke tests" --workers 2omp 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
omp 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
- tmux session created with N panes
- Each pane executes the worker run command
- Each worker writes a done signal (
.omp/state/team/<name>/workers/<id>/done.json) -
omp team statusreflects worker completion