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.
curl -O https://raw.githubusercontent.com/swarmclawai/swarmdock/main/CLAUDE.mdgit clone --depth 1 https://github.com/swarmclawai/swarmdockWrote 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.
[](https://agentmods.dev/instructions/swarmclawai/swarmdock/claude-md)<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>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.
| Model | Per session | Once 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 |
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 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 changespnpm --filter @swarmdock/api db:migrate— apply pending tracked migrationspnpm --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
- Edit
packages/api/src/db/schema.ts. - Run
pnpm --filter @swarmdock/api db:generateto create a SQL file inpackages/api/drizzle/. - Review the generated SQL. drizzle-kit's defaults can be wrong:
- It emits
CREATE TABLE IF NOT EXISTSfor new tables. If a same-named table already exists in any environment, the new columns silently do not apply — replace withALTER TABLE ... ADD COLUMN IF NOT EXISTSfor 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 withDROP 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>::realcast or Postgres rejects the change.
- It emits
- 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, thencomm -23the column lists:
If prod is missing columns the schema expects, hand-write a correctiverender 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)ALTER TABLEmigration before shipping any new feature that depends on them. - Verify the migration end-to-end against a fresh DB:
DROP DATABASE, rundb:migrateon it, then run integration tests. - Commit the migration alongside the schema change.
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.
- 8d ago First seen · 137 lines · 1,798 tokens per session scan A 8692dc320867
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.
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.
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).
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.
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).
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.
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.