VER 1.0.0
AGENTS

AGENT PIPELINE CLI

// ORCHESTRATE AI AGENTS LIKE A PRO //

Chain your AI agents together with dependency management, parallel execution, and seamless handover between stages. Build complex automation workflows with simple YAML configs.

ABILITY LOADOUT

PARALLEL EXECUTION

Run multiple agents simultaneously. Maximize throughput with concurrent stage execution.

🔗

DEPENDENCY MANAGEMENT

Define dependencies between stages. Agents wait for their requirements before starting.

📜

YAML CONFIGS

Simple, readable pipeline definitions. No code required to orchestrate complex workflows.

🤝

AUTOMATIC HANDOVER

Context flows seamlessly between agents. Each stage inherits knowledge from its dependencies.

⏱️

CONFIGURABLE TIMEOUTS

Set per-stage timeouts. Control execution time and handle long-running tasks gracefully.

🛡️

FAILURE STRATEGIES

Define how to handle failures. Continue, retry, or abort based on your needs.

QUEST OBJECTIVES

01 📝
DEFINE YOUR PIPELINE
Create a YAML file with your stages and agents
02 🔧
CONFIGURE DEPENDENCIES
Set which stages depend on others
03 🚀
RUN THE PIPELINE
Execute with a single command
04
COLLECT RESULTS
Each agent outputs to the handover directory

EQUIP YOUR WEAPON

$ npm install -g agent-pipeline
# pipeline.yaml
name: my-awesome-pipeline

stages:
  research:
    agent: researcher
    prompt: "Analyze the codebase"

  implement:
    agent: developer
    depends_on: [research]
    prompt: "Build the feature"

  test:
    agent: tester
    depends_on: [implement]
    prompt: "Verify it works"
$ agent-pipeline run pipeline.yaml

CHOOSE YOUR PATH

🤖
AI AUTOMATION

Chain AI agents for complex multi-step tasks

PWR ★★★ SPD ★★☆
🔄
CI/CD FLOWS

Build, test, and deploy with agent orchestration

PWR ★★☆ SPD ★★★
📊
DATA PIPELINES

Process, transform, and analyze with AI stages

PWR ★★★ SPD ★☆☆
🎨
CREATIVE WORK

Design, review, iterate with multiple agents

PWR ★★☆ SPD ★★☆
GUIDE

Ready to orchestrate your AI agents? The pipeline awaits, adventurer. Choose your next action wisely...