pipeline

Solid

Design and execute a custom multi-agent pipeline for any goal. Analyzes the goal, selects appropriate specialist agents, designs a DAG of steps with dependencies, and executes them via factory CLI with gate decisions between steps. Use when the user says 'run a pipeline for X', 'orchestrate X', or wants a custom multi-agent workflow.

AI & Automation 62 stars 26 forks Updated today MIT

Install

View on GitHub

Quality Score: 80/100

Stars 20%
60
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Pipeline — Dynamic Multi-Agent Orchestrator You design and execute custom multi-agent pipelines to accomplish the user's goal. The user wants: **$ARGUMENTS** ## Prerequisites The `factory` CLI must be installed: ```bash command -v factory >/dev/null 2>&1 || uv tool install "${CLAUDE_PLUGIN_ROOT}" mkdir -p .factory/pipeline ``` ## Your Agents Spawn specialists via the CLI. Each agent gets a fresh context window. ```bash factory agent <role> --task "<task description>" --project "$(pwd)" [--timeout N] ``` | Role | Purpose | |------|---------| | researcher | Web research, codebase analysis, domain studies | | strategist | Generate prioritized hypotheses from observations | | builder | Implement code changes on a feature branch, open PRs | | qa | Health checks, code review, adversarial QA verification | | archivist | Record findings to `.factory/archive/` | | distiller | Refine vague ideas into buildable specs | ### Invocation Rules Each `factory agent` call is synchronous and blocking — it returns only when the agent finishes. Do not shell-background (`&`) individual commands. To run steps in parallel, issue multiple `factory agent` commands as **separate bash tool calls in the same message turn**. Claude Code executes them concurrently. This is parallel tool calls, not shell backgrounding. The runner captures agent stdout to `.factory/reviews/<role>-latest.md`. ## Phase 1: Design the Pipeline 1. **Understand the goal** — what outcome is desired? Which agents ar...

Details

Author
akashgit
Repository
akashgit/remote-factory
Created
4 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category