AgentSkillsCN

parallel

多代理并行执行(开发、测试、评审、研究)

SKILL.md
--- frontmatter
name: parallel
description: Multi-agent parallel execution (dev, test, review, research)
version: 2.0.0
omc_delegate: oh-my-claudecode:ultrawork
omc_agents:
  - executor
  - executor-high
  - qa-tester
  - architect
triggers:
  keywords:
    - "parallel"
    - "병렬"
    - "ulw"
    - "ultrawork"

/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

AgentModelPurpose
executorsonnetGeneral implementation work
executor-highopusComplex implementation
qa-testersonnetTesting work
architectopusArchitecture analysis

Subcommands (100% preserved)

SubcommandDescriptionAgents
/parallel devParallel development4
/parallel testParallel testing4
/parallel reviewParallel code review4
/parallel researchParallel research4
/parallel checkConflict check1

Subcommand Details

/parallel dev - Parallel Development

bash
/parallel dev "user authentication feature"
/parallel dev --branch "API + UI simultaneous development"

Agent roles:

AgentRole
ArchitectDesign, interface definitions
CoderCore logic implementation
TesterTest authoring
DocsDocumentation

/parallel test - Parallel Testing

bash
/parallel test
/parallel test --module auth
/parallel test --strict

Tester roles:

AgentScope
UnitFunctions, classes, modules
IntegrationAPI, DB integration
E2EFull user flows
SecurityOWASP Top 10

/parallel review - Parallel Code Review

bash
/parallel review
/parallel review src/auth/
/parallel review --security-only

Reviewer roles:

AgentReview Focus
SecuritySQL Injection, XSS
LogicAlgorithms, edge cases
StyleNaming conventions, readability
PerformanceComplexity, 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