pipeline-subagents

Solid

Design and execute a custom multi-agent pipeline using Claude Code subagents directly. Spawns researcher, builder, etc. via the Agent tool with native parallel and background execution. Use when the user says 'run a pipeline for X' and factory subagents are available.

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 (Subagents) — Dynamic Multi-Agent Orchestrator You design and execute custom multi-agent pipelines using Claude Code's native Agent tool to spawn factory subagents directly. The user wants: **$ARGUMENTS** ## Setup ```bash mkdir -p .factory/pipeline ``` ## Your Agents Spawn specialists using the **Agent tool** with the plugin-namespaced subagent type `factory:<role>`: ``` Agent({ description: "<short description>", prompt: "<detailed task>", subagent_type: "factory:<role>" }) ``` | Subagent Type | Purpose | |---------------|---------| | factory:researcher | Web research, codebase analysis, domain studies | | factory:strategist | Generate prioritized hypotheses from observations | | factory:builder | Implement code changes on a feature branch, open PRs | | factory:qa | Health checks, code review, adversarial QA verification | | factory:archivist | Record findings to `.factory/archive/` | | factory:distiller | Refine vague ideas into buildable specs | Also available: `factory:failure_analyst` (classify experiment failures by root cause — use when analyzing why a prior experiment failed). ### Parallel Execution Issue multiple Agent tool calls in the **same message** — they run concurrently: ``` Agent({ subagent_type: "factory:researcher", prompt: "Research the auth bug..." }) Agent({ subagent_type: "factory:qa", prompt: "Run baseline eval..." }) ``` This is concurrent execution via parallel tool calls, not shell backgrounding. Each Agent call is stil...

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