Agent Skills
› jjongguet/oh-my-product
› team
team
GitHub用于并行编排多智能体团队任务,通过tmux创建N个并发worker执行指定工作并聚合结果。
Trigger Scenarios
用户需要并行执行多个独立子任务
启动多代理协作进行批量处理
Install
npx skills add jjongguet/oh-my-product --skill team -g -y
SKILL.md
Frontmatter
{
"name": "team",
"aliases": [
"\/team",
"team run",
"run team"
],
"description": "Orchestrate parallel tmux workers for a multi-agent team task.",
"primaryRole": "orchestrator"
}
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
Version History
- 4f49e99 Current 2026-07-25 06:34


