If you’ve started using more than one AI agent for coding, research, or content work, you’ve probably hit the same wall: too many tabs, no shared memory between sessions, and zero visibility into what each agent actually did or how many tokens it burned. That’s exactly the problem Paperclip.ing was built to solve, and it’s why this paperclip.ing review exists to walk beginners through what the tool actually does and how to use Paperclip AI without getting lost in developer jargon.
Paperclip.ing is an open-source orchestration platform that treats a group of AI agents like a small company rather than a pile of disconnected scripts. Instead of babysitting individual terminal windows, you assign goals, hire agents into roles, and track everything: tasks, costs, decisions from one dashboard.

Launched in early March 2026 by a pseudonymous developer known as dotta, the project surpassed 10,000 GitHub stars within its first month, making it one of the fastest-growing open-source AI agent projects of the year.
This guide covers everything a beginner needs: what Paperclip.ing actually is, whether it’s free, how task and cost tracking works, a step-by-step setup walkthrough, and how it compares to alternatives like CrewAI and AutoGen.
Table of Contents
What is Paperclip.ing? (Quick Definition)

Paperclip.ing is an open-source AI agent orchestration platform that organizes multiple AI agents into a company-like structure complete with an org chart, ticket-based tasks, budgets, and a full audit trail, so a single dashboard can track what every agent is doing and how much it costs.
In simpler terms: if a single AI agent like Claude Code or OpenClaw is an employee, Paperclip is the management layer that hires, assigns, supervises, and pays that employee and every other agent on the team.
Who Created Paperclip and Why It Matters
Paperclip was built by a developer who goes by the pseudonym dotta, and it ships as a Node.js server paired with a React dashboard. It’s released under an open license on GitHub, meaning anyone can self-host it, inspect the code, and modify it freely rather than depending on a closed SaaS subscription.
What makes the project notable isn’t just the feature set, it’s the framing. Rather than positioning itself as “another AI tool,” Paperclip asks you to think like someone running a company of AI workers: you don’t prompt an agent directly, you hire it into a role, give it a ticket, and review its output the way a manager would review an employee’s work.
That mental shift, going from “operating a tool” to “managing a team,” is the core idea driving its rapid adoption among solo founders and small technical teams in 2026.
How Paperclip.ing Works

Tickets, Tasks, and Threads
Every unit of work inside Paperclip is a structured ticket, not a freeform chat message. Each ticket has a clear owner, a status, and a threaded conversation history. When you assign a task like “deploy the updated pricing page, run tests first,” the agent responds inside that same ticket thread, and every tool call, decision, and response is logged in an append-only audit trail that can’t be edited or deleted later.
This matters for beginners because it solves the single biggest frustration of manually running multiple agents: losing context. Instead of re-explaining what you want every time you open a new session, the ticket carries the full history forward.
Org Charts for AI Agents
Paperclip organizes agents into roles within a company structure, a CEO-level agent, a coder, a designer, a marketer, and so on, rather than treating them as interchangeable bots. Tasks carry “goal ancestry,” meaning each ticket links back through its project to the company’s overall mission, so an agent always has context for why they’re doing something, not just what they’re doing.
Heartbeats and Scheduling
Agents in Paperclip don’t run continuously by default. They operate on scheduled “heartbeats,” waking at set intervals or in response to triggers such as a new task assignment or an @-mention, checking their assigned work, acting, and reporting back. Recurring jobs can be set up with cron schedules or webhook triggers, so routine work, like a weekly content pipeline, runs automatically without manual kick-offs.
Is Paperclip.ing Free? Pricing and Hosting Costs
Paperclip itself is free and open source; there’s no license fee to use, modify, or self-host the platform. The actual costs beginners need to budget for fall into two categories:
- Hosting costs: Since Paperclip is a lightweight Node.js server with an embedded or external PostgreSQL database, a small virtual server is usually enough to run it comfortably, often costing a few dollars per month for light use.
- AI usage costs: The real expense is the token usage of the agents you connect, whether through a flat-rate subscription like Claude Code Max or pay-per-token API credits. Running several agents daily on API credits can realistically cost anywhere from the low hundreds to several thousand dollars per month, depending on workload, which is exactly why Paperclip’s built-in budget tracking exists.
So when someone asks “is Paperclip. ing free,” the honest answer is: the orchestration software is free, but you’re still responsible for the underlying AI model costs, just like you would be running those agents on their own.
It’s also worth understanding why cost visibility matters so much in this context. When you’re running a single AI agent, tracking spend is simple: you check a single usage dashboard from your model provider. Once you’re running several agents across different tasks and projects, that single dashboard stops being useful, because it shows total spend without telling you which agent, task, or project is responsible.
This is precisely the gap Paperclip’s per-agent and per-project cost tracking closes, and it’s a big part of why beginners managing more than one agent tend to find the budgeting features worth the initial setup effort, even though the platform itself doesn’t cost anything to license.
How to Use Paperclip AI Step-by-Step Beginner Guide

Install and Run Paperclip
Paperclip ships as a self-hosted, open-source project. For most beginners, the quickest path is to use a one-click deployment template on a hosting platform that automatically provisions the required PostgreSQL database, removing the need to configure a connection string manually. If you’re comfortable with a terminal, the project can also be cloned from its GitHub repository and started locally, with an embedded database created automatically on first run.
Create Your First Company
Once Paperclip is running, you’ll create a “company,” give it a name, and a mission statement. This is the top of your goal hierarchy. Every task your agents complete later will trace back to this mission, which gives them context rather than isolated, disconnected instructions.
Hire and Connect an Agent
Next, connect an agent to a role. Paperclip is agent-agnostic, meaning it doesn’t include its own AI model; instead, you bring an existing agent such as Claude Code, Codex, OpenClaw, or even a custom HTTP-based or bash-script agent, and “hire” it into a position on your org chart, like coder or researcher.
Assign a Task
Create a ticket that clearly describes the task, for example: “review the latest pull request and flag any security issues.” The agent picks up the ticket on its next heartbeat, works the task, and reports progress directly inside the ticket thread.
Monitor Costs and Approve Work
From the dashboard, you can view token spend by agent, task, and project in real time. If an agent’s work requires sign-off before it goes live, like deploying code to production, approval gates let you review and approve before anything ships, with full rollback available if something goes wrong.
Key Features Worth Knowing

| Feature | What It Does |
| Structured Tickets | Every task has an owner, status, and threaded history |
| Org Charts | Agents are organized into roles, not loose scripts |
| Cost Tracking | Token spend is tracked per agent, task, and project |
| Budget Enforcement | Agents stop automatically when they hit spending limits |
| Audit Log | Immutable, append-only record of every action |
| Heartbeats | Agents wake on schedule or trigger, not constantly |
| Multi-Company Support | One Paperclip install can run multiple isolated businesses |
| Plugin System | Extend functionality without forking the core code |
Paperclip vs CrewAI vs AutoGen
| Tool | Best For | Interface | Abstraction Level |
| Paperclip.ing | Founders/teams managing multiple agents like employees | Visual dashboard | Organizational (no-code friendly) |
| CrewAI | Developers building custom role-based agent workflows in code | Python framework | Code-first |
| AutoGen | Developers building multi-agent conversational systems | Python framework | Code-first |
The practical difference for a beginner: CrewAI and AutoGen require you to write Python to define agents and workflows, while Paperclip is UI-driven; you hire agents and assign tasks through a dashboard. If you’re a developer who wants granular control over agent logic, CrewAI or AutoGen may suit you better.
If you’re a founder or non-developer who wants to manage AI agents the way you’d manage a small team, Paperclip’s dashboard approach is far more accessible.
Read more: Instadoodle AI Review
Pros and Cons of Paperclip.ing
Pros:
- Free and open source with no licensing cost
- Dashboard-driven, so non-developers can manage agents without writing orchestration code
- Strong cost visibility prevents runaway token spend
- Agent-agnostic works with Claude Code, Codex, OpenClaw, and custom agents
- Full audit trail supports accountability and debugging
Cons:
- Still requires some technical setup (hosting, database, environment variables)
- You must bring your own AI agents. Paperclip doesn’t include a built-in model
- Best suited for users running multiple agents; overkill for a single, simple bot
- As a young project, documentation and community support are still maturing
Who Should (and Shouldn’t) Use Paperclip.ing
Paperclip makes the most sense for solo founders, small technical teams, and indie developers running three or more AI agents across overlapping tasks, coding, content, support, or research, who need visibility into cost and progress without manually checking a dozen terminal windows.
It’s less useful if you’re running a single AI agent for occasional tasks. The official project documentation itself is candid about this: if you have one agent, you probably don’t need Paperclip; if you have twenty, you almost certainly do.
To make this more concrete, consider two scenarios. A freelance developer who occasionally asks a single coding assistant to fix a bug doesn’t need an org chart, budget enforcement, or audit logging; that’s unnecessary overhead for a one-off task. But a small agency running a content pipeline with a research agent, a writer agent, an editor agent, and a publishing agent simultaneously is exactly the use case for which Paperclip was designed.
Without an orchestration layer, that agency would be manually tracking four separate sessions, four separate cost streams, and four separate handoffs, the kind of coordination overhead that quietly eats hours every week.
The same logic applies to teams experimenting with autonomous engineering workflows. A solo developer who uses a single coding agent for personal projects gets little benefit from Paperclip’s governance features.
A small engineering team running a manager agent that decomposes feature requests into sub-tasks for separate coder, QA, and reviewer agents benefits enormously, since Paperclip’s ticket system and approval gates directly replace what would otherwise be manual Slack threads and spreadsheet tracking.
Common Mistakes Beginners Make
- Skipping the budget-setting step, which removes the main safeguard against runaway token costs
- Trying to connect an agent without first defining a clear company goal, leaving tasks without context
- Assuming Paperclip includes its own AI model, it doesn’t; you must connect an existing agent
- Ignoring the approval gate feature for high-stakes tasks like production deployments
- Running it on underpowered hosting and being surprised when the dashboard feels sluggish under multiple active agents
Pro Tips to Get More Out of Paperclip
- Start with one or two agents before scaling to a full “org chart.” It’s easier to debug coordination issues with fewer moving parts
- Use specific, outcome-based task descriptions rather than vague instructions; agents perform more consistently with clear criteria
- Set monthly budgets per agent from day one, not after a cost surprise
- Review the audit log regularly, not just when something breaks. It’s a useful way to spot inefficient agent behavior early
- Use the plugin system to extend Paperclip to your specific stack rather than forking the core project
Expert Insights on the Agent Orchestration Trend
The rise of tools like Paperclip reflects a broader 2026 shift in how people work with AI: from prompting a single chatbot toward operating teams of autonomous agents with defined roles and accountability. Industry observers tracking this space note that the orchestration layer, not the underlying model, is becoming the real differentiator, since most teams already have access to capable models like Claude or GPT-based agents but lack a reliable way to coordinate several of them at once without losing track of cost or context.
Quick Summary
Paperclip.ing is a free, open-source platform that lets you manage multiple AI agents like a small company, complete with ticket-based tasks, an org chart, budget enforcement, and a full audit trail. It’s not an AI model itself; you connect your own agents (Claude Code, Codex, OpenClaw, or custom bots) and Paperclip handles the coordination, cost tracking, and governance. It’s overkill for a single agent, but genuinely useful once you’re juggling three or more.
Frequently Asked Questions
What is Paperclip.ing?
Paperclip.ing is an open-source orchestration platform that organizes AI agents into a company-like structure with org charts, ticket-based tasks, and cost tracking, so you can manage multiple agents from one dashboard.
Is Paperclip.ing free?
Yes, the software itself is free and open source. You’ll still pay for hosting (typically a few dollars per month) and for the underlying AI model usage by the agents you connect.
Do I need to know how to code to use Paperclip?
The basic setup is dashboard-driven and beginner-friendly, but initial hosting and configuration require some technical comfort. Day-to-day task assignment requires no coding.
What AI agents work with Paperclip.ing?
Paperclip is agent-agnostic and supports Claude Code, Codex, OpenClaw, and any custom agent that implements its heartbeat protocol, including bash-script or HTTP-based agents.
How is Paperclip different from CrewAI or AutoGen?
CrewAI and AutoGen are code-first Python frameworks for developers. Paperclip is a visual, dashboard-driven platform focused on organizational structure, budgets, and governance.
Does Paperclip.ing require self-hosting?
Yes, Paperclip is currently self-hosted and can be deployed via one-click templates or through manual setup with Node.js and PostgreSQL.
What happens when an agent exceeds its budget?
Paperclip automatically throttles or stops the agent once it hits its assigned monthly token budget, preventing runaway spending.
Can Paperclip run more than one company?
Yes, a single Paperclip installation supports multiple isolated companies, each with separate agents, data, and audit trails.
Is Paperclip.ing safe for business use?
Paperclip logs every action in an immutable audit trail and supports approval gates for sensitive tasks, which adds accountability. However, as a young project, it’s worth reviewing security practices before handling highly sensitive data.
Who created Paperclip.ing?
Paperclip was created by a pseudonymous developer known as dotta and launched in early March 2026 as an open-source project on GitHub.
Is Paperclip.ing good for beginners?
It’s approachable for beginners thanks to its dashboard interface, though it’s most useful once you’re managing multiple agents rather than just one.
What is an agent heartbeat in Paperclip?
A heartbeat is a scheduled or trigger-based wake cycle where an agent checks its assigned tasks and acts, rather than running continuously.