원클릭으로
pipeline
Sequential multi-stage execution where each stage's output feeds the next. Chain droids together in defined workflows.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Sequential multi-stage execution where each stage's output feeds the next. Chain droids together in defined workflows.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Full autonomous execution from idea to working code. Handles the full lifecycle - requirements, planning, parallel implementation, QA cycling, and multi-perspective validation.
Web browser automation for testing and data extraction
Automated code cleanup for linting, formatting, and dead code removal
Self-improvement from development sessions
Automated documentation generation and maintenance
Token-efficient execution modifier. Optimizes droid routing to prefer simpler, cheaper tiers while maintaining quality.
| name | pipeline |
| description | Sequential multi-stage execution where each stage's output feeds the next. Chain droids together in defined workflows. |
<Use_When>
<Do_Not_Use_When>
ultrawork for parallel executionralph<What_You_MUST_Do>
<What_You_MUST_NOT_Do>
<Why_This_Exists> Complex tasks benefit from structured phases where specialist droids handle what they're best at. A researcher gathers context, a planner designs the approach, an executor implements, and a verifier checks. Pipeline ensures clean handoff between phases with full context passing. </Why_This_Exists>
<Pipeline_Presets>
/oh-my-droid-pipeline review <task>
Stages:
explore - Find relevant code and patternsprometheus - Analyze and plan approachmomus - Critique the planexecutor-med - Implement with full contextUse for: Major features, refactorings, complex changes
/oh-my-droid-pipeline implement <task>
Stages:
prometheus - Create implementation planexecutor-med - Implement the plantest-engineer - Add/verify testsverifier - Verify completionUse for: New features with clear requirements
/oh-my-droid-pipeline debug <issue>
Stages:
explore - Locate error locations and related codeoracle - Analyze root causeexecutor-med - Apply fixesverifier - Verify fix worksUse for: Bugs, build errors, test failures
/oh-my-droid-pipeline research <topic>
Stages:
librarian - External docs and API researchexplorer - Internal codebase analysisprometheus - Synthesize findings into recommendationsUse for: Technology evaluation, architecture decisions
/oh-my-droid-pipeline security <scope>
Stages:
security-auditor - Vulnerability scancode-reviewer - Code quality reviewexecutor-med - Fix critical issuesverifier - Verify fixesUse for: Security hardening, pre-release audits </Pipeline_Presets>
<Custom_Pipelines> Users can define custom pipelines by specifying stages:
/oh-my-droid-pipeline custom "Stage1: explore, Stage2: executor-med, Stage3: verifier" <task>
Route to different droids based on output:
explore -> {
if "complex refactoring" -> prometheus -> executor-high
if "simple change" -> executor-low
if "needs research" -> librarian -> executor-med
}
Run droids in parallel, merge outputs:
parallel(explore, librarian) -> prometheus -> executor-med
</Custom_Pipelines>
1. **Select preset** or parse custom pipeline definition 2. **Execute Stage 1**: Spawn first droid, collect output 3. **Pass context**: Feed Stage 1 output as context to Stage 2 4. **Repeat**: Continue through all stages with context accumulation 5. **Report**: Final summary with results from each stage<Output_Format>
[Summary of output]
[Summary of output]
[Aggregated outcome] </Output_Format>
<Failure_Modes_To_Avoid>