home / skills / yeachan-heo / oh-my-claudecode / pipeline
/skills/pipeline
This skill orchestrates sequential and branching AI agent pipelines, passing structured context between stages to automate complex code tasks.
npx playbooks add skill yeachan-heo/oh-my-claudecode --skill pipelineReview the files below or copy the command above to add this skill to your agents.
---
name: pipeline
description: "[DEPRECATED] Use /autopilot instead"
deprecated: true
deprecationMessage: "/pipeline has been removed in #1131. Use /autopilot instead."
---
# Pipeline (Deprecated)
This mode has been deprecated and removed in issue #1131 (pipeline unification).
Use `/autopilot` instead for full autonomous execution from idea to working code.
This skill chains multiple agents into sequential, branching, or parallel workflows so the output of one agent becomes the input for the next. It provides presets for common engineering flows and a compact custom syntax to define pipelines. Use it to orchestrate multi-agent tasks like code review, implementation, debugging, research, and refactoring.
The orchestrator parses pipeline definitions, initializes a persistent state file, and spawns agents for each stage. Each agent receives a structured pipeline_context that includes the original task, previous stage outputs, and routing hints; outputs are merged or routed based on branching rules. The system supports retries, fallbacks, parallel execution, merging strategies, and verification checks before completion.
How does data pass between agents?
Agents receive a structured pipeline_context object that includes original_task, previous_stages outputs, current_stage, and next_stage.
What happens on agent failure?
Configurable policies include retry (up to 3 times), skip to next stage, abort the pipeline, or fallback to an alternative agent.