/parallel - Parallel Multi-Agent Execution
OMC Integration
This skill delegates to the OMC ultrawork skill.
How to Run
python
Skill(skill="oh-my-claudecode:ultrawork", args="task description")
# Or invoke agents directly (in parallel)
Task(subagent_type="oh-my-claudecode:executor", model="sonnet",
prompt="Task 1", run_in_background=True)
Task(subagent_type="oh-my-claudecode:executor", model="sonnet",
prompt="Task 2", run_in_background=True)
OMC Agents
| Agent | Model | Purpose |
|---|---|---|
executor | sonnet | General implementation work |
executor-high | opus | Complex implementation |
qa-tester | sonnet | Testing work |
architect | opus | Architecture analysis |
Subcommands (100% preserved)
| Subcommand | Description | Agents |
|---|---|---|
/parallel dev | Parallel development | 4 |
/parallel test | Parallel testing | 4 |
/parallel review | Parallel code review | 4 |
/parallel research | Parallel research | 4 |
/parallel check | Conflict check | 1 |
Subcommand Details
/parallel dev - Parallel Development
bash
/parallel dev "user authentication feature" /parallel dev --branch "API + UI simultaneous development"
Agent roles:
| Agent | Role |
|---|---|
| Architect | Design, interface definitions |
| Coder | Core logic implementation |
| Tester | Test authoring |
| Docs | Documentation |
/parallel test - Parallel Testing
bash
/parallel test /parallel test --module auth /parallel test --strict
Tester roles:
| Agent | Scope |
|---|---|
| Unit | Functions, classes, modules |
| Integration | API, DB integration |
| E2E | Full user flows |
| Security | OWASP Top 10 |
/parallel review - Parallel Code Review
bash
/parallel review /parallel review src/auth/ /parallel review --security-only
Reviewer roles:
| Agent | Review Focus |
|---|---|
| Security | SQL Injection, XSS |
| Logic | Algorithms, edge cases |
| Style | Naming conventions, readability |
| Performance | Complexity, caching |
/parallel research - Parallel Research
bash
/parallel research "React vs Vue comparison" /parallel research "AI coding tools"
/parallel check - Conflict Check
bash
/parallel check "Task A, Task B, Task C" /parallel check --tasks tasks.md
Pre-analyzes potential file conflicts before parallel work:
code
┌──────────────┬────┬────┬────┬─────────┐ │ File │ A │ B │ C │ Conflict│ ├──────────────┼────┼────┼────┼─────────┤ │ auth.ts │ W │ R │ - │ - │ │ user.ts │ W │ W │ - │ ⚠️ A-B │ └──────────────┴────┴────┴────┴─────────┘
Command File Reference
Detailed workflow: .claude/commands/parallel.md