claudeclaw CLAUDE.md

claudeclaw CLAUDE.md is an instructions file for coding agents from sbusso/claudeclaw. It costs 3,201 tokens per session, scanned A, original, MIT.

Instructions for ClaudeClaw, a persistent background service and Claude Code plugin that can run separate instances from different directories.

In plain words
What is it for?
It helps assistants understand entry points, operating modes, per-directory state, and how local development and service startup are organized.
Why use it?
It clarifies the difference between the plugin entry point and the continuously running service, preventing them from being started or configured incorrectly.

Instructions file

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/sbusso/claudeclaw/claude-md
Clone the repo
git clone --depth 1 https://github.com/sbusso/claudeclaw

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for claudeclaw CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/sbusso/claudeclaw/claude-md.svg)](https://agentmods.dev/instructions/sbusso/claudeclaw/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/sbusso/claudeclaw/claude-md"><img src="https://agentmods.dev/badge/instructions/sbusso/claudeclaw/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 3,201 This file is loaded in full into every session.
When invoked 3,201 The same file — it is already loaded in full.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.03201 $0.03201
Opus 5 $0.01600 $0.01600
Sonnet 5 $0.00640 $0.00640
Haiku 4.5 $0.00320 $0.00320

Measured 5d ago against content hash df42607fbf77, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

claudeclaw CLAUDE.md scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -X POST http://localhost:3100/webhook/mygroup \
CLAUDE.md · 267 lines

How it starts

The opening of the file, as written. The whole thing — 267 lines — stays where its author put it; the contents beside it link to each section on GitHub.

ClaudeClaw

Persistent agent orchestrator plugin for Claude Code.

Entry Points

Two separate entry points — plugin and service must not be conflated:

  • src/index.tsdist/index.jsPlugin entry. Loaded by Claude Code via --plugin-dir. Returns immediately, no side effects. No channel/extension imports.
  • src/service.tsdist/service.jsService entry. Run by launchd/systemd as persistent background process. Imports channels/extensions, starts the message loop.

The plugin entry is what .claude-plugin/plugin.json points to. The service entry is what npm start, npm run dev, and the launchd plist/systemd unit run.

Modes

ClaudeClaw runs in two modes, detected by .claude-plugin/plugin.json in cwd:

Plugin mode (no .claude-plugin/ in cwd):

  • Loaded via claude --plugin-dir /path/to/claudeclaw
  • Current directory IS the instance — all state lives in cwd
  • No hidden paths, no ~/.claude/plugin-data/
  • Multiple instances = multiple directories (cd is the instance switcher)
  • Service per directory: com.claudeclaw.<dirname>.plist (macOS), claudeclaw-<dirname>.service (Linux)
  • Upgrade to developer mode: clone the repo INTO the data directory

Developer mode (.claude-plugin/plugin.json exists in cwd):

  • Cloned repo, claude runs from inside it
  • Code and state in the same directory
  • Full self-improvement — Claude edits its own source
  • Git/fork workflow

Directory = Instance

No instance manager. No switching commands. The directory you run claude from IS the ClaudeClaw instance.

~/assistants/personal/    ← one instance (cd here, run claude)
  .env, store/, groups/, logs/, .claudeclaw.json
~/assistants/work/        ← another instance
  .env, store/, groups/, logs/, .claudeclaw.json

Path resolution: STATE_ROOT = process.cwd() always. STORE_DIR, GROUPS_DIR, LOG_DIR derive from it. readEnvFile() checks CLAUDECLAW_ENV_FILE then cwd/.env.

Architecture

src/
  index.ts                    # Plugin entry (Claude Code --plugin-dir, non-blocking)
  service.ts                  # Service entry (launchd/systemd, runs message loop)
  orchestrator/               # Core
    message-loop.ts           # THE HEART: poll, trigger, thread, queue, dispatch
    group-queue.ts            # Concurrency control for agent execution
    extensions.ts             # Pluggable extension system (registerExtension API)
    extension-loader.ts       # Scans extensions/ dir, loads manifests, dynamic imports
    extension-manifest.ts     # Manifest schema + validation
    channel-registry.ts       # Channel self-registration
    ingestion.ts              # Inbound message processing (pre/post hooks)
    outbound-router.ts        # Outbound message routing (pre/post hooks)
    db.ts                     # SQLite with extension schema support
    config.ts                 # Core config (from .env)
    env.ts                    # .env reader
    logger.ts                 # Pino logger
    types.ts                  # Core types (Channel, RegisteredGroup, NewMessage)
  runtimes/                   # Agent execution backends
    container-runtime.ts      # Container runtime abstraction (binary detection, lifecycle)
    container-runner.ts       # Container-based agent runner (Docker/Apple Container)
    sandbox-runner.ts         # Sandbox-based agent runner (srt, OS-level sandboxing)
  channels/                   # Built-in channels (whatsapp, telegram)
  cost-tracking/              # Built-in: token usage + cost estimation
  webhook/                    # Built-in: HTTP webhook triggers
extensions/                   # Installable extensions (gitignored, per-instance)
  claudeclaw-slack/           # Slack channel (install with /install slack)
  claudeclaw-triage/          # Triage + SWE agents (install with /install triage)

Read the full file on GitHub · 267 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 267 lines · 3,201 tokens per session scan A df42607fbf77

Subscribe to this mod's changes

claudeclaw CLAUDE.md is an instructions file published in the GitHub repository sbusso/claudeclaw (193 stars, last pushed 23d ago), licensed MIT. It adds 3,201 tokens to every session, about $0.0160 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.