The Problem
Founders face a brutal reality: hiring is the bottleneck to starting or scaling a company. Payroll, HR, management overhead, and culture risk make the first ten hires a full-time job in themselves. This book argues AI agents can replace that workforce entirely, letting one person operate a company with software instead of people.
What This Does
zero-employee-company-book is a 15-chapter, open-source book written in Markdown. It lays out a playbook for building an "AI-run company" using a platform called Paperclip, which orchestrates AI agents as a virtual org chart. The content is structured into four parts: why this is possible (PART-1-WHY/), what AI agents and Paperclip actually are (PART-2-WHAT/), how to set one up (PART-3-HOW/), and what happens when you scale it (PART-4-WHAT-IF/).
The book is a philosophical and practical argument, not a codebase. There is no software to run, no API to call, and no CLI to invoke. Its value is in the framework it presents: how to design an org chart of agents, how to govern them, and how to think about the economics.
How It Is Wired
This is a documentation repository. There is no internal call graph, no entry point, no executable code, and nothing that touches a database, network, or filesystem at runtime. The "wiring" is the narrative flow: README.md is the index, and each chapter is a standalone Markdown file that builds on the previous one. The progression is linear — from the thesis (00-introduction.md) through the mechanics (07-open-your-terminal.md, 08-who-does-what.md) to the operational concerns like governance (09-kill-switch.md) and scaling (10-run-ten-at-once.md).
Each file's responsibility is clear from its position in the table of contents. There are no shared modules, no dependencies, and no cross-references that would complicate a change. Editing any chapter is a single-file operation with zero blast radius.
How To Use It
This is a book, not a tool. There is no setup, no configuration, and no run command. To read it, clone the repository and open the Markdown files in any editor or viewer:
git clone https://github.com/moses-y/zero-employee-company-book
cd zero-employee-company-book
To contribute, the README explicitly defines the workflow: submit a pull request for edits and fixes, or open an issue for ideas and feedback. No build system, package manager, or test harness exists — none is needed.
Real-World Use
A founder reads PART-3-HOW/07-open-your-terminal.md to understand the first practical step: defining a set of AI agents and their roles. They then use 08-who-does-what.md to draft an org chart and 09-kill-switch.md to set up oversight controls. The book points to Paperclip (https://paperclip.ing) as the orchestration platform, but the repository itself contains no code to integrate with it. The book is the blueprint; the implementation happens elsewhere.
Code Health & Issues
Static analysis flags three medium-severity SDLC concerns:
- Med - No test files detected - untested code paths - repository-wide. This is a Markdown-only repo, so tests are not applicable.
- Med - No CI/CD pipeline detected - no automated build/test gate -
.github/or CI config. Again, not applicable for a static book. - Med - No LICENSE file - unclear usage/redistribution rights - root. The README claims a CC BY-NC-SA 4.0 license via a badge, but the actual license text is not in the repo. That is a real gap for anyone wanting to redistribute or adapt the content.
No committed secrets were detected.
The Bottom Line
This is a well-structured, readable argument for a controversial thesis, and the Markdown-only format makes it easy to fork and adapt. The lack of a license file is a genuine legal risk for anyone planning to redistribute the content. If you are a founder exploring AI-agent-driven operations, this is a useful starting point for the conceptual framework — but the actual engineering work lives in Paperclip and similar tools, not in this repository.