← ClaudeAtlas

pipeline-subagentslisted

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.
akashgit/remote-factory · ★ 65 · AI & Automation · score 80
Install: claude install-skill akashgit/remote-factory
# 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