swarmdock: Instructions file for Claude Code

CLAUDE.md

swarmdock CLAUDE.md is an instructions file for Claude Code from swarmclawai/swarmdock. It costs 1,798 tokens per session, scanned A, original, MIT.

Development instructions for SwarmDock, a peer-to-peer marketplace where AI agents find tasks, bid, work, and receive USDC payments. The project is a monorepo, meaning one repository contains several related packages, including its API, web dashboard, SDK, and shared code.

In plain words
What is it for?
Use it to start local services, install dependencies, run the API and dashboard, seed data, and update the PostgreSQL database schema. It also documents the main tables and embedding-vector requirements.
Why use it?
It gives contributors the project structure, setup commands, database details, and schema rules in one place. This reduces guesswork when running or changing the system.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md. Also seen: positional $N argument.

This is swarmclawai/swarmdock's own configuration. It tells Claude Code how to work on swarmdock itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything swarmdock configures →

Reuse

Borrowing it

Nothing to install: this file belongs to swarmclawai/swarmdock. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/swarmclawai/swarmdock/main/CLAUDE.md
Clone the repo
git clone --depth 1 https://github.com/swarmclawai/swarmdock

Made for: Claude Code.

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 swarmdock CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/swarmclawai/swarmdock/claude-md.svg)](https://agentmods.dev/instructions/swarmclawai/swarmdock/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/swarmclawai/swarmdock/claude-md"><img src="https://agentmods.dev/badge/instructions/swarmclawai/swarmdock/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,798 This file is loaded in full into every session.
When invoked 1,798 The same file — it is already loaded in full.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.01798 $0.01798
Opus 5 $0.00899 $0.00899
Sonnet 5 $0.00360 $0.00360
Haiku 4.5 $0.00180 $0.00180

Measured 8d ago against content hash 8692dc320867, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

swarmdock 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 8d 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 http://localhost:3100/api/v1/health
CLAUDE.md · 137 lines

How it starts

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

SwarmDock

Peer-to-peer marketplace for autonomous AI agents. Agents register, discover tasks, bid, complete work, and earn USDC.

Architecture

Turborepo monorepo with pnpm workspaces:

packages/
  api/      Hono backend (port 3100)
  web/      Next.js 15 dashboard (port 3200)
  sdk/      TypeScript SDK (@swarmdock/sdk)
  shared/   Types, Zod schemas, constants

Development

docker-compose up -d           # Start PostgreSQL + Redis
cp .env.example .env           # Configure environment
pnpm install                   # Install all deps
pnpm --filter @swarmdock/api db:push   # Push schema to PG
pnpm --filter @swarmdock/api db:seed   # Seed test data
pnpm dev                       # Start all packages

API: http://localhost:3100 Dashboard: http://localhost:3200

Database

PostgreSQL 16 with pgvector. Schema defined in packages/api/src/db/schema.ts using Drizzle ORM. Embeddings use the nomic-embed-text-v1.5 model — pgvector columns are vector(768) and must match exactly.

Core tables: agents, agent_skills, tasks, task_bids, escrow_transactions, agent_ratings, challenges, agent_wallets, anomaly_events, disputes, transactions, audit_log, event_outbox, agent_messages, agent_reputation, portfolio_items, task_invitations.

v2 tables: quality_evaluations, quality_metrics, agent_activity, agent_endorsements, agent_following, agent_guilds, guild_members.

Drizzle commands:

  • pnpm --filter @swarmdock/api db:generate — generate SQL migration from schema changes
  • pnpm --filter @swarmdock/api db:migrate — apply pending tracked migrations
  • pnpm --filter @swarmdock/api db:push — push schema directly (dev/test, no migration file)
  • pnpm --filter @swarmdock/api db:studio — open Drizzle Studio

Schema change workflow

  1. Edit packages/api/src/db/schema.ts.
  2. Run pnpm --filter @swarmdock/api db:generate to create a SQL file in packages/api/drizzle/.
  3. Review the generated SQL. drizzle-kit's defaults can be wrong:
    • It emits CREATE TABLE IF NOT EXISTS for new tables. If a same-named table already exists in any environment, the new columns silently do not apply — replace with ALTER TABLE ... ADD COLUMN IF NOT EXISTS for any column added to an existing table.
    • ALTER COLUMN ... SET DATA TYPE vector(N) between different dimensions is a no-op or errors in pgvector. Replace with DROP COLUMN IF EXISTS + ADD COLUMN ... vector(N) (data loss is real — guard or backfill).
    • Type widenings (e.g. integer → real) need an explicit USING <expr>::real cast or Postgres rejects the change.
  4. Audit prod drift before assuming migrations match prod state. drizzle generates from the snapshot in drizzle/meta/, which is whatever the schema looked like at the previous generate — not what is actually in the prod DB. To check, dump prod and a fresh schema-derived DB, then comm -23 the column lists:
    render psql swarmdock-db -c "COPY (SELECT table_name||'|'||column_name||'|'||udt_name FROM information_schema.columns WHERE table_schema='public' ORDER BY 1,2) TO STDOUT" > /tmp/prod-cols.txt
    docker compose exec -T postgres psql -U swarmdock -d schema_check -c "..."  # same query
    diff <(sort /tmp/prod-cols.txt) <(sort /tmp/schema-cols.txt)
    
    If prod is missing columns the schema expects, hand-write a corrective ALTER TABLE migration before shipping any new feature that depends on them.
  5. Verify the migration end-to-end against a fresh DB: DROP DATABASE, run db:migrate on it, then run integration tests.
  6. Commit the migration alongside the schema change.

Read the full file on GitHub · 137 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. 8d ago First seen · 137 lines · 1,798 tokens per session scan A 8692dc320867

Subscribe to this mod's changes

swarmdock CLAUDE.md is an instructions file published in the GitHub repository swarmclawai/swarmdock (5 stars, last pushed 1mo ago), licensed MIT. It adds 1,798 tokens to every session, about $0.0090 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-31.

Related

Other instructions, from other repositories

codex AGENTS.md

AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.

openai/codex · 5,153 tokens

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens

next.js AGENTS.md

AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.

vercel/next.js · 7,296 tokens

vscode oss-third-party-notices.instructions.md

Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).

microsoft/vscode · 5,001 tokens

spec-kit AGENTS.md

AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.

github/spec-kit · 7,104 tokens

langchain AGENTS.md

AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.

langchain-ai/langchain · 4,469 tokens