You have twelve browser tabs open. Four Claude Code sessions are running. Two Codex windows in the background. A bash script you forgot you started. And somewhere in that chaos, actual work is supposedly happening, but you have no idea what, by whom, or at what cost.
This is the problem Paperclip was built to solve.
Paperclip AI is not a freelancing platform where you find clients. It is something more interesting and more powerful: an open-source orchestration system that lets you run an entire AI-powered business complete with an org chart, budgets, governance, and autonomous agents executing real work while you manage it from a single dashboard.
For freelancers, agency owners, and solo founders who want to stop babysitting individual AI sessions and start operating scalable AI-driven businesses, Paperclip is the most significant open-source tool of 2026. It crossed 75,000 GitHub stars faster than almost any AI project in history. The origin story explains why its creator, @dotta, was running an automated hedge fund with 20+ Claude Code tabs simultaneously and had no way to track what any of them were doing. Paperclip was built from that frustration.
This guide covers three things together:
- What Paperclip actually is — the platform explained from the ground up
- How to install and run it — step-by-step from the official repository
- How freelancers and solo founders can use it — practical business applications, honest expectations, and a comparison with traditional freelance platforms
By the end, you will know whether Paperclip belongs in your workflow and exactly how to get started if it does.
First: What Paperclip Is NOT (This Matters)
Before anything else, one clarification that will save you from confusion.
Paperclip is not Upwork. It is not Fiverr. It is not a marketplace where you list services and find clients. There is no buyer side, no gig browsing, no proposal system.
When Paperclip talks about “hiring” agents, it means onboarding AI systems Claude Code, Codex, OpenClaw, Gemini CLI, bash scripts, and HTTP bots into an organizational structure. When it shows you an “org chart,” it is a chart of AI agents with roles, reporting lines, and budgets.
The “company” Paperclip helps you run, but it is not your freelance profile. It is an autonomous AI-powered business that executes real work 24 hours a day while you review, approve, and steer it from a dashboard.
That is a fundamentally different and, in many ways, more powerful proposition than any freelancing platform.
Read Also: Osdire Review 2026: The Freelancing Platform That Skips the Bidding Wars
What Is Paperclip AI? The Platform Explained
Paperclip is an open-source Node.js server and React UI that orchestrates teams of AI agents to run a business. You define goals, hire agents, set budgets, and monitor everything from one dashboard. It looks like a task manager. Under the hood, it has org charts, budgets, governance, goal alignment, and full agent coordination.
The tagline from the repository captures the concept precisely: “If OpenClaw is an employee, Paperclip is the company.”
Individual AI coding assistants like Claude Code, Codex, and OpenClaw are powerful tools — but they are stateless, uncoordinated, and have no concept of shared goals, budgets, or reporting structure. Every time you start a new session, you are starting from scratch. Every tab runs independently. Costs accumulate invisibly.
Paperclip solves exactly those problems by acting as the organizational layer above your agents.
The Four Pillars Paperclip Is Built On
The README describes four fundamental requirements for an organization of AI agents to actually produce results. Paperclip is structured around all four:
Pillar 1: Agentic Task Management.r Declare intent. Agents work. You verify the output. Tasks are ticket-based, conversations are threaded, and sessions persist across reboots. No context is lost when you shut down your laptop. Agents work from diffs, screenshots, and tests,s not your memory of what you asked them to do.
Pillar 2: Org Chart for Agents’ Roles, permissions, and boundaries for humans and agents. Every agent has a title, a boss, a job description, and defined responsibilities. Mixed human and agent org charts are supported. You can sit at the top as the board of directors while AI agents fill every role below you.
Pillar 3: Agent Employee Training Design, train, and evaluate your AI employees. Paperclip includes a Skill Studio and shared org-wide skills, evaluation systems with saved test runs, active learning loops, and quality metrics. You can run performance reviews for agents.
Pillar 4: Agentic OS The infrastructure layer: cross-provider runtime (any model, any agent), sandboxing, MCP servers, SSO, RBAC, cost controls, data privacy, and internal trace collection.
Core Features (Confirmed from Live Repository)
Bring Your Own Agent: Any agent that can receive a heartbeat can be hired. Claude Code, Codex, OpenClaw, Cursor, Gemini CLI, bash scripts, HTTP/webhook bots, and custom plugins all work. Paperclip is model-agnostic; it orchestrates; you bring the intelligence.
Heartbeat Execution: Agents do not run continuously in a wasteful loop. They wake on a schedule, check their work queue, complete their tasks, log results, and go back to sleep. Delegation flows up and down the org chart. A CEO agent can assign tasks to engineer agents, who can escalate blockers upward. This is the mechanism that makes autonomous 24/7 operation economically viable.
Goal Alignment: Every task traces back to the company mission. An agent working on a code feature knows it is doing so because of a product goal, which exists to serve a business objective. Agents see the “why,” not just a task title,e which dramatically reduces irrelevant or misdirected work.
Cost Control: Monthly budgets per agent. When an agent hits its budget limit, it stops. No more surprise $500 API bills from a runaway loop at 3 AM. Token and cost tracking is scoped by company, agent, project, goal, and issue and is granular enough to actually manage.
Multi-Company Support: One Paperclip deployment can run unlimited companies with complete data isolation. This is significant for freelancers and agencies managing multiple clients — each client’s AI operation is fully separated.
Governance with Rollback: You are the board. Agents cannot hire new agents without your approval. The CEO agent cannot execute a strategy you have not reviewed. Every config change is versioned. Bad changes can be rolled back. Nothing ships without your sign-off.
Ticket System and Audit Log: Every conversation, decision, and action is logged. Full tool-call tracing and an immutable audit trail mean you can always reconstruct what happened and why. This is critical for client work, where accountability matters.
Portable Company Templates: Export and import entire organizations’ agents, skills, projects, routines, and issues with secret scrubbing and collision handling. The paperclipai/companies repository on GitHub already has ready-to-deploy templates for engineering companies, software studios, and more.
Mobile Ready: Monitor and manage your autonomous businesses from anywhere, including your phone.
How to Install Paperclip: Step-by-Step from the Official Repository
Paperclip is open-source, self-hosted, and MIT-licensed. No Paperclip account is required. The onboarding is genuinely fast.
System Requirements
- Node.js 20 or higher
- pnpm 9.15 or higher
- PostgreSQL (optional for production; an embedded database is created automatically for local use)
Method 1: One-Command Quickstart (Recommended for First Run)
bash
npx paperclipai onboard --yesThis single command installs everything, creates a local embedded PostgreSQL database, and launches the dashboard at http://localhost:3100. The interactive setup walks you through creating your first company and hiring your first agent.
If you use a private npm registry (e.g., GitHub Packages via a global ~/.npmrcthe command may fail with an E404. Force the public registry:
bash
npx --registry https://registry.npmjs.org paperclipai onboard --yesBinding options — By default, the quickstart runs in trusted local loopback mode. For remote access:
bash
# Access from devices on your local network:
npx paperclipai onboard --yes --bind lan
# Access through Tailscale (recommended for solo founders on the go):
npx paperclipai onboard --yes --bind tailnetMethod 2: Manual Clone and Install
bash
git clone https://github.com/paperclipai/paperclip.git
cd paperclip
pnpm install
pnpm devThis starts the API server at http://localhost:3100. The embedded PostgreSQL database is created automatically; no separate database setup is required.
Method 3: Docker Deployment
A Dockerfile is included in the repository root for containerized deployments. Use this for production self-hosting on a VPS, cloud VM, or Kubernetes cluster.
After Installation: Creating Your First Company
Step 1: Open the Dashboard. Navigate to http://localhost:3100 after installation. You will see a Linear-style task management UI.
Step 2: Define Your Company.y Set a company name and mission statement. This is not a formality; it feeds directly into your agents’ context. Good example: “Build and operate an SEO content agency that publishes 20 high-quality articles per week for B2B SaaS clients.”
Step 3: Set Business Goal. Add 2–5 specific, measurable goals. Example: “Respond to all client emails within 4 hours” or “Publish 3 SEO blog posts per week with a minimum RankMath score of 90.” Every agent task will trace back to one of these goals.
Step 4: Hire a CEO Agent. The CEO is at the top of your org chart. Choose which runtime powers it: Claude Code, Codex, OpenClaw, or another heartbeat-capable agent. The CEO receives your goals and drafts a hiring plan, strategy, and task delegation structure.
Step 5: Approve the Hiring Plan. You are the board. Review the CEO’s proposed org structure. Approve hires, adjust roles, set individual agent budgets. Nothing happens without your sign-off.
Step 6: Set Budgets and Hit Go. Assign monthly spending limits per agent. Review the strategy. Then, run agents will begin working on scheduled heartbeats, completing tasks, reporting results, and delegating to each other according to the org chart.
Step 7: Monitor from the Dashboard.d Check the dashboard daily (or from your phone). Review completed work, approve anything that requires sign-off, and adjust goals as your business evolves.
How Freelancers and Solo Founders Can Actually Use Paperclip
Here is where the picture becomes practically exciting and where honesty about what Paperclip is and is not becomes essential.
Paperclip does not find you, clients. It does not replace Upwork, Fiverr, or Toptal as a marketplace. What it does is something those platforms cannot: it lets you build and operate an AI-powered business at a scale that would previously have required a team.
Use Case 1: The Solo Developer Running an AI Agency
You are a freelance developer. You have skills in web development, SEO, content strategy, and client management. Traditionally, your time limits your income; you can only do so much in a working week.
With Paperclip, you set up a company with the following org chart:
- CEO Agent (Claude Code): Handles project planning and task breakdown
- Dev Agent (Codex): Writes and reviews code for client projects
- Content Agent (Claude Code): Drafts blog posts, documentation, and copy
- QA Agent (OpenClaw): Tests deliverables and flags issues before you review
- Marketing Agent (Claude Code): Drafts proposals, email responses, and social posts
You set goals: “Deliver client websites within agreed scope and timeline” and “Maintain client satisfaction above 4.5/5.”
Your agents work on tasks while you sleep. In the morning, you review completed work from the dashboard, read diffs, check screenshots, and approve deliverables. You are the board. You steer; the agents execute.
This model does not eliminate your skill requirement; it amplifies it. You still need to scope client work correctly, review quality, and manage relationships. But your throughput multiplier goes from 1× to something significantly higher.
Use Case 2: The Content Creator Running Multiple Blogs
You run three content websites. Each needs regular articles, social posts, keyword research, and internal linking updates.
In Paperclip, each website is a separate company with full data isolation. Each company has a dedicated content agent, an SEO research agent, and a publishing agent (for platforms with APIs or automation hooks).
You set weekly goals: “Publish 3 SEO articles per site per week” and “Update internal link structure monthly.”
Heartbeat scheduling kicks off content research on Monday, drafting on Tuesday, review queue for you on Wednesday, and scheduling on Thursday. You spend 2–3 hours per week reviewing and approving instead of 40 hours writing from scratch. The agents handle the volume; you maintain the quality bar.
Use Case 3: The Technical Freelancer Building Productized Services
You are a developer who has been freelancing on Upwork and Fiverr,r taking client projects one at a time. You want to transition from bespoke client work to productized services that scale.
Paperclip lets you build the operational infrastructure for that transition:
- Define a company around one specific product offering (e.g., “WordPress speed optimization delivered in 48 hours, flat fee of $300”)
- Set up an engineering agent that executes the actual optimization workflow
- Set up a client communication agent that drafts status updates and delivery notes
- Set up a QA agent that verifies results before you approve delivery
You still handle sales and client acquisition through the freelance platforms you already use. But fulfillment becomes systematized, repeatable, and scalable without requiring additional human labor per project.
Use Case 4: The Solo SaaS Founder
You are building a SaaS product alone. You have a clear vision but limited execution bandwidth.
Paperclip’s company repository already includes ready-to-deploy engineering company templates, full org structures with CEO, CTO, engineers, QA, and release engineers,s built on workflow skills designed for software development.
You import a template:
bash
npx paperclipai company import --from ./trail-of-bits-securityAdjust the agents, goals, and budgets to your project. Set your mission. Approve the initial plan. Your AI engineering company begins working on writing code, reviewing PRs, running tests, and reporting progress while you handle product direction, user research, and fundraising.
Paperclip vs. Traditional Freelancing Platforms: A Straight Comparison
This comparison matters because Paperclip and traditional platforms serve genuinely different purposes. The question is not “which is better?” but “which does what I actually need?”
| Dimension | Upwork / Fiverr / Toptal | Paperclip AI |
|---|---|---|
| What it is | Client marketplace | Agent orchestration platform |
| Finds you clients | Yes | No |
| Helps you execute work | No | Yes autonomous AI execution |
| Requires human skill | Yes (you do the work) | Yes (you direct the agents) |
| Scales with time | No linear | Yes agents work 24/7 |
| Cost | Platform fees (5–20%) | LLM API costs per agent |
| Technical requirement | Low | Moderate (Node.js, pnpm) |
| Data ownership | Platform owns your data | Self-hosted you own everything |
| Multi-client support | Profile-based | Full company isolation per client |
| Governance and audit | None | Full immutable audit log |
| Open source | No | Yes MIT licensed |
| Learning curve | Hours | Days to weeks |
The practical reality for technical freelancers: These tools are not competing;ing they are complementary. You find clients on Upwork. You deliver work using Paperclip. The platform brings you the opportunity; Paperclip amplifies your capacity to fulfil it.
When Paperclip Makes Sense
- You have more work than you can personally execute and cannot afford to hire humans yet
- You run productized services with repeatable deliverables that agents can systematize
- You are building a SaaS or content business and want autonomous operations without a team
- You manage multiple clients and need isolated, parallel operational environments
- You want full audit trails and cost visibility across your entire AI operation
When Traditional Freelancing Platforms Are Still the Answer
- You need to find new clients. ents Paperclip has no discovery component
- Your work requires nuanced human judgment that current AI agents cannot reliably provide
- You are just starting out and have not yet defined productized, repeatable services
- You need a portfolio and review system for social proof
Technical Deep-Dive: What Makes Paperclip Architecturally Different
For developers evaluating Paperclip against other agent orchestration frameworks, the architecture is worth understanding in detail.
It Is Not LangChain, AutoGen, or a Workflow Builder
LangChain and AutoGen are agent frameworks that define how individual agents are built. Paperclip is one layer above that. It does not care how you built your agents or what model they use. If your agent can receive a heartbeat (an HTTP call on a schedule), it can be hired into Paperclip.
No drag-and-drop pipelines. No prompt managers. No single-agent tools dressed up as orchestration.
Atomic Execution Prevents Double-Work and Runaway Costs
Task checkout and budget enforcement are atomic at the database level. When an agent checks out a task, no other agent can claim the same task simultaneously. When a budget limit is hit, the agent stops not eventually, but atomically. This is the detail that separates Paperclip from naive orchestration setups where two agents end up doing the same work or one agent racks up thousands of dollars in API calls before anyone notices.
Persistent Agent State Across Heartbeats
Most agent systems are stateless; every run starts fresh. Paperclip agents resume the same task context across heartbeats. The task carries its full history: prior decisions, completed sub-tasks, blockers, and context from the company goal hierarchy. Agents do not need to be reminded of what they are doing.
Runtime Skill Injection Without Retraining
Agents can learn Paperclip-specific workflows and project context at runtime by loading skill files without model retraining. The Skill Studio lets you define, version, and share skills across your entire organization. The paperclipai/companies repository demonstrates this with hundreds of pre-built workflow skills across security auditing, software development, code review, QA, and release engineering.
The Plugin System
Paperclip’s plugin system runs out-of-process workers with capability-gated host services, job scheduling, tool exposure, and UI contributions. You can extend Paperclip without forking the repository. Plugins install as npm packages. The awesome-paperclip GitHub repository aggregates community plugins.
MCP Integration
Paperclip ships the @paperclipai/mcp-server package, which exposes the Paperclip API as callable tools for any MCP-compatible assistant. This means you can query and manage your Paperclip deployment from Claude, Cursor, or any other MCP client — treating your entire AI organization as a tool you call from your editor.
Adapters Supported
From the live README:
- Claude Code
- Codex
- Gemini CLI
- Cursor
- OpenClaw
- Bash scripts
- HTTP/webhook agents (any custom bot)
- The Paperclip Hermes adapter (from Nous Research separate package)
- Third-party adapters installable as npm packages
Realistic Expectations: What Paperclip Will and Will Not Do for You
Honesty matters here. Paperclip is genuinely powerful, but it is not magic,c and the people who get the most out of it are those who go in with clear expectations.
What Paperclip does well
- Eliminates session management chaos — No more 20 open tabs. Everything is tracked in one dashboard.
- Makes costs visible and controllable — Per-agent budgets with hard stops end surprise API bills.
- Scales execution without scaling headcount — Agents work 24/7; your review time stays constant.
- Creates audit trails — Every decision and tool call is logged. Critical for client accountability.
- Runs multiple businesses from one deployment — Complete isolation per company.
- Builds compounding operational value — Skills, routines, and org structures improve over time.
What Paperclip does NOT do
- Find your clients — There is no discovery mechanism. Client acquisition still requires you, your portfolio, your reputation, and platforms like Upwork, LinkedIn, or direct outreach.
- Eliminate the need for human judgment — Agents still need well-defined goals, good prompts, and a human reviewer for quality-critical work. Garbage in, garbage out applies.
- Replace domain expertise — You still need to understand your craft well enough to review and correct agent output. Paperclip amplifies your expertise; it does not substitute for it.
- Run for free — You pay LLM API costs for every agent heartbeat. Claude Code Max at around $200/month is widely used in the Paperclip community for heavier workloads. For multi-agent setups with frequent heartbeats, cost management is non-trivial.
Time Investment to Build a Sustainable Workflow
Week 1: Installation, first company setup, first agent hired, initial workflow defined. Expect friction agents need well-written goals and skills to perform well.
Weeks 2–4: Refining prompts, building skills, adjusting org structure based on what actually works. This is the hardest phase:se you are essentially onboarding AI employees and figuring out how to manage them.
Month 2+: Compounding returns. The skills, routines, and org structures you built are running reliably. Your review time per deliverable drops. Output volume increases.
The honest benchmark: Freelancers who get real value from Paperclip typically have at least one clearly defined, repeatable service that can be broken into predictable agent tasks. If your work is highly bespoke and changes completely with every client, the setup investment may not pay off. If you have a productized offering with consistent deliverables, it almost certainly will.
Getting Started: Your First 48 Hours with Paperclip
Hour 1: Install and Explore
bash
npx paperclipai onboard --yesOpen the dashboard at http://localhost:3100. Click through the interface. Read the layout; it genuinely looks like Linear or a well-designed task manager.
Hours 2–4: Define One Company
Start with one company, not five. Pick the business you want to automate most urgently. Write a specific mission statement and 2–3 measurable goals. Vague goals produce vague agent behavior.
Hours 4–8: Hire One Agent and Run One Task
Do not try to build a full 10-agent org chart on day one. Hire a single CEO agent. Give it one goal. Watch how it breaks the goal into tasks and what it does with them. Learn how heartbeats work in practice.
Day 2: Review, Adjust, Add One More Agent
Check what your CEO agent did. Was the task breakdown sensible? Were the outputs useful? Adjust the goal language if necessary. Then add one specialist agent (a developer, a writer, a researcher) and delegate one task from the CEO to them.
Week 1: Build One Routine
Set up one scheduled routine, a recurring task that happens automatically. Examples: weekly SEO audit of your website, daily email inbox processing, weekly content draft creation.
Useful Resources from the Official Ecosystem
- Main repository: github.com/paperclipai/paperclip
- Official docs: docs.paperclip.ing
- Company templates: github.com/paperclipai/companies
- Discord community: discord.gg/m4HZY7xNG3
- Awesome Paperclip (community plugins): github.com/gsxdsm/awesome-paperclip
- Live website: paperclip.ing
Conclusion: Paperclip Changes What “Solo” Means
The traditional constraint on solo freelancers and founders has always been time. You can only do so much work in a week. You can only serve so many clients. You can only build so fast.
A paperclip does not remove that constraint, but it fundamentally changes where the bottleneck is. Your ceiling is no longer how many hours you personally can work. It becomes how well you can define goals, review outputs, and steer autonomous agents toward real outcomes.
That is a genuinely different kind of leverage. And for technical freelancers, developers, and solo founders who have the domain expertise to review what agents produce, it is leverage that compounds over time as your skills, routines, and org structures mature.
With 75,000 GitHub stars in under five months, a rapidly shipping roadmap, and a Discord community of practitioners building real businesses on the platform, Paperclip is not a prototype or a research project. It is a production tool that is already working for people.
The one-command start is free. The source code is MIT licensed. The only cost is your time to set it up and your LLM API spend to run agents.
Start here:
bash
npx paperclipai onboard --yesStar the repository, join the Discord, and read the docs. The shift from “I need to do more work” to “I need to direct better work” starts with a single command.
→ github.com/paperclipai/paperclip
Frequently Asked Questions
Q: Is Paperclip AI free?
A: The software is fully open-source under the MIT license, free to download, self-host, and modify. You pay nothing to Paperclip Labs. You do pay LLM API costs for the agents you run (Claude Code, Codex, OpenClaw, etc.). For heavy multi-agent workloads, these costs can be high; budget accordingly.
Q: What technical skills do I need to run Paperclip?
A: You need to be comfortable running npm/Node.js commands from a terminal. You do not need to understand the Paperclip source code to use it effectively. If you can run npx create-react-app, you can run Paperclip. For production self-hosting, basic server administration skills help.
Q: Can I run Paperclip on a cloud server so it operates 24/7?
A: Yes. The repository includes a Dockerfile for containerized deployment. Deploy to any VPS (DigitalOcean, Hetzner, Render, etc.) or use cloud platforms. For production, point Paperclip at your own PostgreSQL instance instead of the embedded one.
Q: How is Paperclip different from just using Claude Code directly?
A: Claude Code is an agent; it does work in individual sessions. Paperclip is the company that employs it. Paperclip adds persistent task tracking, org charts, budget enforcement, governance, multi-agent coordination, scheduled routines, and a dashboard, all the infrastructure that makes a single powerful agent into a manageable team.
Q: Does Paperclip work with Claude, GPT-4, and other models simultaneously?
A: Yes. Paperclip is model-agnostic at the orchestration layer. You can have a Claude Code agent handling code review, a Codex agent writing features, and an OpenClaw agent managing emails, all coordinated from the same dashboard with separate budgets.
Q: Can I use Paperclip for client work without sharing my setup with clients?
A: Fully yes. Your Paperclip deployment is self-hosted; clients see your deliverables, not your operational setup. The multi-company isolation means each client’s project lives in a completely separate data environment.
Q: What is on the Paperclip roadmap?
Already shipped (confirmed from live README): plugin system, multi-human users, scheduled routines, better budgeting, agent reviews and approvals, cloud/sandbox agents, artifact work products, deep planning with revised plans, MCP tool gateway, secrets manager, activity log, self-healing runs, and agent evals. Coming next: Memory/Knowledge, CEO Chat, work queues, self-organization, desktop app, and integrations with Asana/Linear/Jira as external ticketing systems.






