pipeline

Coordinate multi-stage pipelines with configurable sequences and resume support.

3|Updated Apr 7, 2026
One-click install
npx skills add https://github.com/Tienching/oh-my-codebuddy --skill pipeline-tienching
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: pipeline
Source: https://github.com/Tienching/oh-my-codebuddy/tree/main/skills/pipeline
Command: npx skills add https://github.com/Tienching/oh-my-codebuddy --skill pipeline-tienching

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Orchestrates complex, multi-stage workflows by coordinating planning, execution, and verification stages with persistent state and resume support.

Core Features & Use Cases

  • Stage orchestration: sequences and coordinates pipeline stages via a uniform PipelineStage interface.
  • State persistence: maintains pipeline progress in a durable state for resuming interrupted runs.
  • Programmable API: exposes helpers to assemble and run pipelines with configurable stages (ralplan, team-exec, ralph-verify).

Quick Start

Configure and run an autopilot pipeline to execute ralplan, team-exec, and ralph-verify.

Frequently Asked Questions about pipeline

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I coordinate multi-stage workflows with planning, execution, and verification stages?

Multi-stage workflow coordination connects planning, execution, and verification stages via a uniform PipelineStage interface, automating pipeline sequences with durable state management for resuming interrupted runs.

Can I resume an interrupted pipeline run if the execution stops midway?

Yes, interrupted pipeline runs can be resumed because the orchestrator maintains pipeline progress in a durable state, allowing the multi-stage workflow to pick up from the last completed stage.

How do I configure a pipeline to run planning, parallel execution, and verification stages?

You can configure pipeline stages using the programmable API, which exposes helpers to assemble and run sequences like ralplan, team-exec, and ralph-verify with configurable stage orders.

Does the OMB pipeline support stage abstraction for custom workflow orchestration?

Yes, stage abstraction is supported through a uniform PipelineStage interface, allowing you to define and sequence custom stages for consensus planning and parallel execution workflows.

What's the best way to automate consensus planning and verification loops in CodeBuddy workflows?

Automating consensus planning and verification loops is best handled by a configurable multi-stage pipeline, which orchestrates these stages with state persistence and resume support.

Are there limitations when running parallel execution stages without durable state management?

Running parallel execution stages without durable state management risks losing pipeline progress, making it impossible to resume interrupted runs or verify completed stages properly.