Remote OpenClaw Blog
Hermes Agent vs Paperclip AI: Which AI Agent Platform to Choose?
10 min read ·
Hermes Agent is a self-improving single agent with persistent memory and a skills system, while Paperclip is a multi-agent orchestration platform that coordinates teams of AI agents as a virtual company. They solve different problems: Hermes gives you one deeply personalized agent that learns over time; Paperclip gives you an org chart of agents with budget enforcement and task coordination. As of April 2026, Hermes Agent has over 57,000 GitHub stars and Paperclip has over 42,000 — both are open source and free to self-host.
What Are Hermes Agent and Paperclip?
Hermes Agent and Paperclip operate at different layers of the AI agent stack. Picking the wrong one means either over-engineering a single-agent workflow or under-powering a multi-agent operation.
Hermes Agent is Nous Research's open-source AI agent framework, released in February 2026. It runs as a standalone process in the terminal or through messaging gateways including Telegram, Discord, Slack, WhatsApp, Signal, and Email. The agent maintains persistent memory across sessions (MEMORY.md and USER.md), a self-improving skills system with 80+ built-in skills, session search via SQLite FTS5, and support for 200+ LLM models through providers like OpenRouter, Anthropic, OpenAI, and Nous Portal. As of April 2026, the latest release is v0.8.0 with live model switching, MCP OAuth 2.1, and native Google AI Studio integration.
Paperclip is an open-source orchestration platform for "zero-human companies," created by the pseudonymous developer @dotta and launched on March 4, 2026. It is a Node.js server with a React dashboard that takes individual AI agents and wraps them in a company structure — org charts, goals, budgets, governance, and agent coordination. Paperclip crossed 30,000 GitHub stars within three weeks of launch, making it one of the fastest-rising open-source AI repositories of Q1 2026. The official site is paperclip.ing.
The short version: Hermes is a single agent that gets smarter over time. Paperclip is a management layer that coordinates multiple agents. They are complementary, not competing.
Feature Comparison Table
The table below compares Hermes Agent and Paperclip across the dimensions that matter most when choosing between them.
| Feature | Hermes Agent | Paperclip |
|---|---|---|
| Architecture | Single self-improving agent | Multi-agent orchestration with org chart |
| Primary use case | Personal AI operator, founder ops, sales | AI-operated company, multi-agent dev teams |
| Agent count | One per instance | Unlimited agents in hierarchy |
| Memory | Persistent MEMORY.md + USER.md + 8 external providers | Task-scoped context per agent |
| Skills system | 80+ skills, self-improving, agentskills.io standard | No native skill system (agent-dependent) |
| Budget controls | Manual API key limits | Built-in per-agent budget enforcement |
| Messaging | Telegram, Discord, Slack, WhatsApp, Signal, Email | Dashboard / API |
| Model support | 200+ via OpenRouter, Anthropic, OpenAI, Nous Portal, others | Any model via agent configuration |
| MCP support | Native with OAuth 2.1 + PKCE | Via individual agents |
| Task coordination | Single-agent workflows + cron scheduling | Atomic task checkout, parallel execution, inter-agent handoffs |
| Dashboard | Terminal UI | React web dashboard |
| License | MIT | MIT |
| GitHub stars (Apr 2026) | 57,000+ | 42,000+ |
| Setup time | 30–60 minutes | 2–4 hours (org chart + roles) |
| Pricing | Free + LLM API costs | Free self-hosted + LLM API costs (hosted tier from $5/mo) |
Architecture Deep Dive
Hermes Agent and Paperclip differ fundamentally in how they structure AI work — one optimizes for depth of a single agent, the other for breadth across many agents.
Hermes Agent Architecture
Hermes runs as a four-layer runtime. The gateway handles messaging connections (Telegram, Discord, terminal). The persona layer (SOUL.md) defines the agent's identity and behavior. The skills system provides executable capabilities that improve with use. The memory layer maintains persistent context across every conversation.
Key architectural features:
- Self-improving skills — the agent creates SKILL.md files after completing complex tasks, then refines them during subsequent use. Skills follow progressive disclosure: Level 0 loads names and descriptions (~3,000 tokens), Level 1 loads full content when needed, Level 2 loads reference files.
- Persistent memory — MEMORY.md (2,200 characters) and USER.md (1,375 characters) are injected into every session. Past conversations are indexed in SQLite with FTS5 full-text search.
- 30+ native tools — file operations, web browsing, terminal access, Playwright browser automation, and more.
- Live model switching — as of v0.8.0, you can switch between LLM providers mid-session without restarting.
Paperclip Architecture
Paperclip models an organization. You define an org chart where each node is an AI agent with a specific role, reporting lines, and budget allocation. The system breaks work into atomic tasks, assigns them to the appropriate agent, and enforces spending limits.
Key architectural features:
- Org chart structure — agents are organized hierarchically (CEO, engineer, designer, QA) with role boundaries and reporting lines.
- Atomic task checkout — work is decomposed into the smallest possible units to prevent double-work and enable parallel execution.
- Budget enforcement — hard spending caps per agent prevent runaway API costs across a fleet.
- Heartbeat scheduling — agents wake on a schedule, check their work queue, and act with no manual intervention.
- Multi-company isolation — a single Paperclip deployment can run unlimited companies with complete data isolation.
For a broader view of the agent framework landscape, see our AI agent frameworks comparison for 2026.
Memory and Skills
Hermes Agent's memory and skills system is its most significant architectural advantage over Paperclip for individual agent depth. Paperclip's coordination layer is its advantage for multi-agent breadth.
Hermes Memory
Hermes maintains bounded, curated memory that persists across sessions. The system has three layers:
- Active memory — MEMORY.md and USER.md live in the system prompt of every conversation, giving the agent immediate recall of your preferences, projects, and environment.
- Session history — every conversation is stored in SQLite with FTS5 indexing. The agent can search its own past conversations to recall specific details from weeks or months ago.
- External memory providers — eight pluggable providers (Honcho, Mem0, Hindsight, Supermemory, RetainDB, ByteRover, OpenViking, Holographic) handle long-term semantic memory and user modeling beyond what fits in MEMORY.md.
Best Next Step
Use the marketplace filters to choose the right OpenClaw bundle, persona, or skill for the job you want to automate.
For a deep dive into how agent memory works, see our AI agent memory guide.
Hermes Skills
Hermes includes 80+ built-in skills that follow the agentskills.io open standard. Skills can be created automatically after complex tasks, written by hand, installed from a skills hub, or shared via external skill directories. The self-improving loop means the agent gets better at repeated tasks over time without manual intervention.
Paperclip's Approach
Paperclip does not have its own memory or skills system. Each agent in the org chart brings its own capabilities. If you use a Hermes instance as one of the agents, that instance retains its full memory and skills. If you use a basic LLM wrapper, it starts fresh each task. Paperclip's strength is coordination, not individual agent depth.
Clipmart, an upcoming Paperclip feature, will let users download and run entire pre-built company templates with full org structures, agent configs, and skills — reducing setup time for multi-agent deployments.
When to Use Each
The right choice depends on whether your problem is better solved by one smart agent or many coordinated agents.
Choose Hermes Agent When:
- You need a personal AI assistant that runs 24/7 on Telegram, Discord, or Slack and remembers everything about you.
- Persistent memory matters — you want the agent to learn your preferences, projects, and communication style over weeks and months.
- You want self-improving skills that get better with repeated use rather than starting from scratch each time.
- Your workflow spans messaging, research, scheduling, content creation, and light coding — all handled by one agent.
- You are a solopreneur or small-team operator who needs one reliable agent, not a fleet.
- Setup speed matters — a basic Hermes agent can be running in 30–60 minutes.
Choose Paperclip When:
- You need multiple agents working in parallel on different aspects of a project with clear role boundaries.
- Budget enforcement is critical — you need hard spending caps per agent to control costs across a fleet.
- You are building an AI-operated company where agents handle product management, engineering, design, QA, and marketing as separate roles.
- You need atomic task decomposition with parallel execution and inter-agent handoffs.
- You want a visual dashboard to monitor agent activity, task progress, and spending across an organization.
For a comparison of Paperclip with the OpenClaw single-agent platform, see Paperclip vs OpenClaw.
Using Hermes Inside Paperclip
Nous Research maintains an official hermes-paperclip-adapter that lets you run Hermes Agent as a managed employee inside a Paperclip company. This gives you the best of both worlds: Paperclip's multi-agent coordination with Hermes's persistent memory, 80+ skills, and self-improving loop at the individual agent level.
How it works:
- The adapter spawns Hermes Agent's CLI in single-query mode (
-q), where Hermes processes the assigned task using its full tool suite, then exits. - Each Hermes instance in the Paperclip org chart maintains its own MEMORY.md, USER.md, and skills — the adapter does not strip away Hermes's learning capabilities.
- The adapter supports 8 inference providers (Anthropic, OpenRouter, OpenAI, Nous Portal, and others) and scans both Paperclip-managed and Hermes-native skills.
A practical example: you run a content agency with three Hermes agents in a Paperclip company — one for research, one for writing, one for distribution. Paperclip assigns a new blog post to the research agent, which gathers sources and hands off to the writing agent, which drafts and passes to the distribution agent for scheduling. Each Hermes instance remembers its domain, improves its skills, and maintains its own context while Paperclip tracks overall progress and budget.
Installation requires cloning the adapter repo, running npm install and npm run build, then configuring the Hermes agent as a node in your Paperclip org chart.
Limitations and Tradeoffs
Both platforms have clear limitations that should factor into your decision.
Hermes Agent Limitations
- Single-agent focus. Hermes runs one agent per instance. Multi-agent coordination requires external orchestration (like Paperclip) or running multiple separate instances manually.
- No visual dashboard. Hermes uses a terminal UI. If you need a web-based dashboard for monitoring, you will need to build one or use Paperclip's.
- Bounded memory. MEMORY.md and USER.md are intentionally small (~3,575 characters combined). For deep recall, you need to configure an external memory provider like Honcho.
- No built-in budget enforcement. API cost controls rely on provider-side limits, not Hermes-native caps.
- No native Windows. Requires WSL2 or Docker on Windows machines.
Paperclip Limitations
- No individual agent depth. Paperclip coordinates agents but does not give them persistent memory, skills, or self-improvement. Those capabilities must come from the agents themselves.
- Higher setup complexity. Defining org charts, roles, budgets, and agent configurations takes 2–4 hours minimum. Overkill if you need just one agent.
- Coordination overhead. Multi-agent systems add latency and token cost from inter-agent communication. A single Hermes agent handling the same tasks may be faster and cheaper for simple workflows.
- Younger project. Paperclip launched March 2026. The ecosystem of company templates, community integrations, and documentation is still maturing.
- Dashboard dependency. Most management happens through the React dashboard. If you prefer CLI-first workflows, the experience is less polished than Hermes's terminal UI.
When NOT to Use Either
If your primary need is autonomous coding inside an IDE, neither Hermes nor Paperclip is the best fit. Tools like Cline or Claude Code are purpose-built for that workflow. See our Hermes Agent vs Cline comparison for details.
Related Guides
FAQ
Is Hermes Agent a competitor to Paperclip?
No. Hermes Agent and Paperclip operate at different layers. Hermes is a single-agent runtime with persistent memory and self-improving skills. Paperclip is an orchestration layer that coordinates multiple agents. You can run Hermes as one of the agents inside a Paperclip company using the official hermes-paperclip-adapter.
Which is cheaper to run, Hermes Agent or Paperclip?
Both are free and open source — you pay only for LLM API usage. A single Hermes agent typically costs $15–40 per month in API fees. Paperclip costs scale with the number of agents in the org chart, typically $50–200+ per month depending on workload and agent count. Paperclip also offers a hosted tier starting at $5 per month after a free trial.
Can Hermes Agent run multiple agents like Paperclip?
Hermes is designed as a single-agent runtime. You can run multiple separate Hermes instances, but there is no built-in coordination between them. If you need agents to hand off tasks, share context, or work in parallel on shared goals, Paperclip provides that coordination layer. The hermes-paperclip-adapter is the recommended way to run multiple coordinated Hermes agents.
Does Paperclip have persistent memory like Hermes?
Paperclip itself does not have a memory system. It tracks task state, budgets, and org-chart context, but individual agent memory depends on the agent you plug in. If you use a Hermes instance as an agent in Paperclip, that agent retains its full MEMORY.md, USER.md, session history, and skills. If you use a basic LLM wrapper, it starts fresh each task.
Which should I choose if I am a solopreneur?
Hermes Agent. It runs a single always-on agent with persistent memory, self-improving skills, cron scheduling, and messaging integration — exactly what a one-person operation needs. Paperclip adds multi-agent coordination overhead that most solopreneurs do not need unless they are running a fully AI-operated company with multiple specialized agents.
Frequently Asked Questions
Is Hermes Agent a competitor to Paperclip?
No. Hermes Agent and Paperclip operate at different layers. Hermes is a single-agent runtime with persistent memory and self-improving skills. Paperclip is an orchestration layer that coordinates multiple agents. You can run Hermes as one of the agents inside a Paperclip company using the official hermes-paperclip-adapter .
Which is cheaper to run, Hermes Agent or Paperclip?
Both are free and open source — you pay only for LLM API usage. A single Hermes agent typically costs $15–40 per month in API fees. Paperclip costs scale with the number of agents in the org chart, typically $50–200+ per month depending on workload and agent count. Paperclip also offers a hosted tier starting at $5 per month after
Can Hermes Agent run multiple agents like Paperclip?
Hermes is designed as a single-agent runtime. You can run multiple separate Hermes instances, but there is no built-in coordination between them. If you need agents to hand off tasks, share context, or work in parallel on shared goals, Paperclip provides that coordination layer. The hermes-paperclip-adapter is the recommended way to run multiple coordinated Hermes agents.
Does Paperclip have persistent memory like Hermes?
Paperclip itself does not have a memory system. It tracks task state, budgets, and org-chart context, but individual agent memory depends on the agent you plug in. If you use a Hermes instance as an agent in Paperclip, that agent retains its full MEMORY.md, USER.md, session history, and skills. If you use a basic LLM wrapper, it starts fresh each
Which should I choose if I am a solopreneur?
Hermes Agent. It runs a single always-on agent with persistent memory, self-improving skills, cron scheduling, and messaging integration — exactly what a one-person operation needs. Paperclip adds multi-agent coordination overhead that most solopreneurs do not need unless they are running a fully AI-operated company with multiple specialized agents.