pipeline

Chain AI agents into sequential, branching, or parallel-then-merge workflows.

Updated Feb 1, 2026
One-click install
npx skills add https://github.com/suhwan/claude-registry --skill pipeline-suhwan
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: pipeline
Source: https://github.com/suhwan/claude-registry/tree/main/skills/orchestration/pipeline
Command: npx skills add https://github.com/suhwan/claude-registry --skill pipeline-suhwan

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Chaining multiple AI agents into a coherent, maintainable workflow eliminates manual handoffs, reduces errors, and speeds up complex projects by passing results from one stage to the next.

Core Features & Use Cases

  • Sequential pipelines connect one agent's output to the next to form linear workflows.
  • Branching and conditional routing direct outputs to different agents based on results.
  • Parallel-then-merge pipelines run stages concurrently and then merge results for final execution.
  • Use cases include code review and implementation pipelines, debugging workflows, and research-to-action sequences.

Quick Start

Define your desired agent sequence (for example, explore -> architect -> executor) and run the pipeline to execute the workflow.

Frequently Asked Questions about pipeline

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

FAQPage Schema
How do I chain multiple AI agents into a sequential workflow?

To chain multiple AI agents into a sequential workflow, you define an ordered sequence of stages with explicit data passing. The pipeline connects one agent's output directly to the next, forming a linear progression from initial input to final result.

What is parallel-then-merge agent orchestration for data processing?

Parallel-then-merge agent orchestration runs multiple stages concurrently and then merges their results for final execution. This pattern speeds up complex data processing by utilizing simultaneous operations before consolidating outputs into a final agent stage.

How do I set up branching and conditional routing for AI agent workflows?

Branching and conditional routing direct outputs to different agents based on prior results. You configure the pipeline with valid prompts that define stages and data contracts, allowing the workflow to dynamically route data to specific downstream agents.

Do I need explicit frontmatter in SKILL.md to define agent chaining pipelines?

Yes, explicit frontmatter in SKILL.md is required to define agent chaining pipelines. You must also provide valid prompts that establish stage definitions, data contracts, and error handling before executing the workflow.

What are common use cases for branching AI agent pipelines?

Common use cases for branching AI agent pipelines include code review and implementation workflows, debugging processes, and research-to-action sequences. These patterns eliminate manual handoffs by automatically passing results between specialized agents.