pipe

Coordinate sequential execution of multiple skills into a phased pipeline.

25|5|Updated Mar 25, 2026
One-click install
npx skills add https://github.com/Hedgehogues/awesome-claude --skill pipe-hedgehogues
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: pipe
Source: https://github.com/Hedgehogues/awesome-claude/tree/main/skills/pipe
Command: npx skills add https://github.com/Hedgehogues/awesome-claude --skill pipe-hedgehogues

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Meta-skill orchestrator that sequences and delegates tasks to multiple skills, allowing complex tasks to be tackled as a cohesive pipeline.

Core Features & Use Cases

  • Orchestrates a chain of skills by splitting a user task into phases and routing each phase to the appropriate skill.
  • Propagates results phase-to-phase to ensure continuity and context across the pipeline.
  • Use Case: combine analysis (triz, tracing) with implementation (tdd, ui) to complete a multi-step project from problem statement to working code.

Quick Start

Invoke the pipe skill by listing the initial skills and a concise task prompt.

Frequently Asked Questions about pipe

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

FAQPage Schema
How do I automate a multi-skill workflow pipeline for complex tasks?

To automate a multi-skill workflow pipeline, you can orchestrate sequential execution by splitting a task into phases and routing each phase to the appropriate skill. This coordinates methodologies like TRIZ, tracing, and TDD into a cohesive pipeline.

What is the best way to combine analysis and implementation skills into a single workflow?

Combining analysis and implementation skills requires a meta-skill orchestrator that propagates results phase-to-phase. This ensures context continuity, allowing you to sequence tasks from problem statement analysis directly to working code generation.

Can I chain multiple agents together to run phase by phase and produce a final report?

Yes, you can chain multiple agents together to run phase by phase. The orchestrator prepares per-phase prompts and executes agents sequentially, feeding the output of each phase into the next to produce a comprehensive final report.

How does pipeline orchestration handle context propagation across different methodologies?

Pipeline orchestration handles context propagation by reading each skill's SKILL.md, preparing tailored prompts, and passing results directly from one phase to the next. This ensures full continuity across varying methodologies like UI changes and TDD workflows.

Do I need to manually prepare prompts for each phase when orchestrating skills?

No, you do not need to manually prepare prompts for each phase. The orchestration mechanism automatically reads the required skill documentation and generates the necessary per-phase prompts to run the agents sequentially.

When should I use a multi-skill pipeline instead of running individual skills separately?

You should use a multi-skill pipeline when a task requires combining multiple methodologies, such as TRIZ analysis followed by TDD implementation. Running them separately breaks context continuity, whereas a pipeline propagates results end-to-end.