Skip to main content
Clawboo is open-source software under the MIT License. This page summarizes that license, the notable third-party code that ships inside the published package, and the upstream content the marketplace catalog is adapted from. The repository’s two canonical files are the source of truth:
  • LICENSE: the MIT license text and copyright holder.
  • THIRD_PARTY_NOTICES.md: the full per-dependency license table and the verbatim upstream license texts.
This page is a reading guide to those files, not a replacement for them. When in doubt, the two files above govern.

At a glance

Clawboo’s own license: MIT

The repository’s LICENSE is the standard MIT License, Copyright (c) 2026 Sanreds. It grants permission to use, copy, modify, merge, publish, distribute, sublicense, and sell copies, with the usual “AS IS”, no-warranty disclaimer, on the condition that the copyright notice and permission notice are retained in copies or substantial portions. The only npm-published artifact is the clawboo CLI package (apps/cli/package.json), whose license field is MIT. Everything you install with npm install -g clawboo (or npx clawboo to try it without installing) ships under that license. See The CLI for what the package contains and Deployment for how it boots.
Every workspace library under packages/ is named @clawboo/* and marked private: true. None of them publish to npm independently; they are bundled into the CLI’s dist/server.js and dist/ui/ at assembly time. So “the published software” is exactly the one clawboo package, under MIT. See the package overview.

Bundled third-party dependencies

The code listed below ships inside the published clawboo package. Most of it is bundled (inlined) at build time into the server bundle (dist/server.js) and the dashboard UI (dist/ui/), so it does not appear as separate entries in the installed package’s node_modules; a few packages (better-sqlite3, ws, pino) are declared runtime dependencies and carry their own license texts in node_modules. For the inlined packages, the aggregated notices ship in THIRD_PARTY_NOTICES.md (included in the package as dist/THIRD_PARTY_NOTICES.md), which is also the authoritative table; the summary here highlights the licenses you most need to know about. A few notes on the non-MIT licenses, restated from THIRD_PARTY_NOTICES.md:
  • Apache-2.0 (openai, drizzle-orm): used under the terms of the Apache License, Version 2.0.
  • EPL-2.0 (elkjs): the graph-layout backend is used under the Eclipse Public License, Version 2.0. It is bundled unmodified; its source is available on npm and at the upstream repository linked in the notices file.
  • CC0-1.0 (simple-icons): the brand-mark paths are CC0-1.0, but the brand logos themselves remain the property of their respective owners. Clawboo renders provider and runtime marks from simple-icons where one exists, and uses original lettermark tiles otherwise (it never reproduces a logo simple-icons does not carry).
Development-only dependencies (Playwright, MSW, Vitest, Turbo, tsup, ESLint, jest-axe, axe-core) are used to build and test Clawboo and are not shipped in the npm package. Their licenses are listed in the notices file.

Bundled content: the marketplace catalog

The marketplace ships 304 agents and 82 teams (see the marketplace catalog reference for the full breakdown). The agent content is not invented; most of it is adapted from two MIT-licensed upstream repositories, ingested verbatim and pinned by commit SHA so the provenance is reproducible. The ingestion mechanism is codegen’d and gated; see Codegen & ingestion for how it works. The two pinned commit SHAs are constants in the ingestion source (AGENCY_AGENTS_SHA and AWESOME_OPENCLAW_SHA), and every generated catalog entry carries a sourceUrl that links back to the exact upstream file at that commit, for example:
Ingestion is zero-loss: each generated entry stores the full, verbatim upstream body in its identityTemplate field. The full upstream MIT license texts (copyright holders msitarzewski and Hesam Sheikh) are reproduced in THIRD_PARTY_NOTICES.md.
The 15 Clawboo built-in agents are first-party content authored in this repo (5 team templates of 3 agents each, synthesized at import time rather than written as literal catalog rows). They carry no external attribution and an empty sourceUrl.

Runtime acknowledgements

Clawboo coordinates other open-source AI agent runtimes as peer teammates. Each runs on its own terms under its own license; Clawboo does not vendor their code; the adapters drive each runtime’s own CLI/SDK contract over MCP. The acknowledgements section of THIRD_PARTY_NOTICES.md credits:
  • OpenClaw: the Gateway-driven connected substrate.
  • Hermes (hermes-agent), Claude Code (Anthropic Claude Agent SDK), and Codex (OpenAI Codex CLI): the wrapped-one-shot runtimes.
It also credits prior art in the agent-orchestration space (Paperclip, vibe-kanban, and Nous Research’s hermes-paperclip-adapter) as design inspiration.

See also

Last modified on August 7, 2026