Agent Skills
› zereight/gitlab-mcp
› ultrawork
ultrawork
GitHub并行执行引擎,用于同时运行多个独立任务。通过智能模型路由和后台处理提升高吞吐量任务的完成效率,适用于需并发委托工作的场景。
Trigger Scenarios
ulw
ultrawork
parallel execution
run these in parallel
Install
npx skills add zereight/gitlab-mcp --skill ultrawork -g -y
SKILL.md
Frontmatter
{
"name": "ultrawork",
"description": "Parallel execution engine for high-throughput task completion. Activate when user says: ulw, ultrawork, parallel execution, run these in parallel.\n",
"argument-hint": "<task description with parallel work items>"
}
Ultrawork
Parallel execution engine that runs multiple agents simultaneously for independent tasks. Component mode -- provides parallelism and smart model routing but not persistence or verification loops.
When to Use
- Multiple independent tasks can run simultaneously
- Need to delegate work to multiple agents at once
When NOT to Use
- Need guaranteed completion with verification → use
/ralph(includes ultrawork) - Full autonomous pipeline → use
/omg-autopilot(includes ralph which includes ultrawork) - Only one sequential task → delegate directly to @executor
Relationship
ralph (persistence wrapper)
└── includes: ultrawork (this skill)
omg-autopilot (autonomous execution)
└── includes: ralph
└── includes: ultrawork (this skill)
Steps
- Classify tasks by independence: parallel vs dependent
- Fire independent tasks simultaneously via @executor
- Run dependent tasks sequentially after prerequisites
- Background long operations (builds, installs, tests)
- Verify when all tasks complete (build passes, tests pass)
Execution Policy
- Fire ALL independent tasks simultaneously
- Run builds/tests in background
- Match task complexity to appropriate model routing
Version History
- a8f5d4f Current 2026-07-25 10:04


