Claude Pipe
Description
File-First Agent Orchestration. Readable agents. Inspectable state. Predictable costs.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
claude-pipe
[](OPENCLAW.md)
**Operational pipelines for Claude Code**
Readable agents. Inspectable state. Predictable costs.
**Building a pipeline with Claude Code?** Start with [CLAUDE.md](CLAUDE.md).
Claude Code is great for tasks. But when you need multi-step pipelines — research → analyze → generate, batch processing overnight, workflows that run unattended — you hit gaps:
- No state persistence between steps
- No resume after failure
- No coordination for parallel workers
- No cost control
claude-pipe is a set of conventions that fills these gaps. File-based state you can `cat`. Flat orchestration you can debug. Agents you can `git blame`.
How It Works
Claude Code has architectural constraints. claude-pipe works with them:
| Constraint | Why It Exists | Convention |
|---|---|---|
| Subagents can't spawn subagents | Forces flat hierarchy → easier debugging | Manager = Skill (ROOT reads instructions) |
| Context is finite | Prevents runaway costs | Workers write to files, not context |
| Model is "blind" until Read() | Explicit I/O = traceable | File-based state: cat state.yaml |
| Skills are steering, not code | Flexible, not brittle | Conventions over enforcement |
**Result**: Flat orchestration, file-based state, predictable costs.
Before / After
| Problem | Without claude-pipe | With claude-pipe |
|---|---|---|
| Pipeline fails at step 4 | Re-run from scratch | Resume from step 4 |
| Agent loops forever | $50 bill | Circuit breaker stops it |
| "What happened?" | Dig through logs | cat artifacts/state.yaml |
| Share with team | Copy-paste prompts | git push |
Core Pattern
**ROOT orchestrates, Workers execute, Files persist.**
┌─────────────────────────────────────────────────────┐
│ USER │
│ (slash co
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11