Our thesis
Paperclip's pitch — a “zero-human company” of cooperating agents — is really a bet on orchestration as the product: the hard part is not a smart agent, it is the heartbeat, budget, and ticket plumbing that keep a swarm from drifting, overspending, or deadlocking. That plumbing is its real contribution, and its real risk surface.
Paperclip is best understood as a bet that orchestration — not the individual agent — is the product. Launched in March 2026 at paperclip.ing, it is a Node.js orchestrator with a React UI that coordinates multiple agents toward the provocative goal its community calls a "zero-human company." It spread quickly, passing 53,000 GitHub stars.
The mechanics are three plumbing primitives. A heartbeat protocol has agents check in on a clock, so the system knows who is alive and progressing. Budget enforcement imposes a hard spend ceiling, so a looping agent cannot run up an unbounded bill. And a ticket queue decomposes work into units that agents claim and complete. Together they answer the question every multi-agent system eventually hits: how do you keep a swarm coordinated, bounded, and debuggable?
The thing to get right is the autonomy boundary. “Zero-human company” is an aspiration, not a safety guarantee — budget enforcement bounds the money, not the judgment. The interesting questions are where the swarm deadlocks, how a bad ticket propagates, what the heartbeat does when an agent reports progress it is not making, and which decisions still need a human in the loop. The plumbing is genuinely useful; the open question is how much company you can actually run with no one watching.
/Glossary
- Orchestration layer
- The software that coordinates multiple agents — assigning work, tracking progress, enforcing limits — as opposed to the individual agent that does a single task.
- Heartbeat protocol
- A periodic check-in each agent sends so the orchestrator knows it is alive and making progress; a missed heartbeat flags a stalled or dead agent.
- Budget enforcement
- A hard spend ceiling the orchestrator imposes so a looping or misbehaving agent cannot run up an unbounded API bill.
- Ticket queue
- Work decomposed into discrete tickets that agents claim, do, and close — the unit of coordination in Paperclip's model.
- Zero-human company
- The aspirational framing for a business run entirely by cooperating agents. A useful provocation, not a safety claim — budgets bound spend, not judgment.