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.
npx agentmods add instructions/dwqdaiwenqi/claude-code-web/claude-mdgit clone --depth 1 https://github.com/dwqdaiwenqi/claude-code-webWrote 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/dwqdaiwenqi/claude-code-web/claude-md)<a href="https://agentmods.dev/instructions/dwqdaiwenqi/claude-code-web/claude-md"><img src="https://agentmods.dev/badge/instructions/dwqdaiwenqi/claude-code-web/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.01087 | $0.01087 |
| Opus 5 | $0.00544 | $0.00544 |
| Sonnet 5 | $0.00217 | $0.00217 |
| Haiku 4.5 | $0.00109 | $0.00109 |
Grade A, and why
claude-code-web CLAUDE.md scanned grade A with 0 findings 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 6d 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 88 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Overview
A monorepo that wraps the @anthropic-ai/claude-agent-sdk as a REST/SSE HTTP service (packages/server) with a React web UI (packages/web). The server exposes Claude Code as an HTTP API; the built frontend is embedded into the server's public/ directory for serving.
Prerequisite: Claude Code CLI must be installed and logged in (claude command available).
Commands
Root (monorepo)
pnpm dev # Run both server and web in parallel (watch mode)
pnpm dev:server # Server only (tsx watch)
pnpm dev:web # Web only (vite --host)
pnpm build # Build both packages, then copy web/dist → server/public
pnpm start # Run the built server
packages/server
pnpm --filter @claude-web/server dev # tsx watch src/cli.ts start
pnpm --filter @claude-web/server build # tsup
pnpm --filter @claude-web/server typecheck # tsc --noEmit
packages/web
pnpm --filter @claude-web/ui dev # vite --host (default port 5173)
pnpm --filter @claude-web/ui build # tsc -b && vite build
Release
pnpm release:server # bump patch, build, npm publish @claude-web/server
pnpm release:ui # bump patch, build, npm publish @claude-web/ui
Architecture
packages/server
Fastify HTTP server with these layers:
src/cli.ts— Commander CLI (claude-web start / link / unlink)src/server.ts— Fastify setup: CORS, WebSocket, static files, Swagger, route registrationsrc/agent.ts— Core logic. Wraps@anthropic-ai/claude-agent-sdk'squery()in two modes:runAgent()— blocking, waits for completionrunAgentStream()— SSE streaming, emitspart/done/error/ask_userevents
src/store.ts— In-memory runtime session map +~/.claude/projectspath helpers. Sessions persist via Claude CLI's native JSONL format; runtime state (status, abort controller) lives in memory only.src/routes/— Three route files:project.ts— list, link, unlink projects; file tree; file readsession.ts— create/delete sessions, message history, send message (blocking or SSE)terminal.ts— WebSocket PTY vianode-pty
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.
- 6d ago First seen · 88 lines · 1,087 tokens per session scan A d817e1b809bf
claude-code-web CLAUDE.md is an instructions file published in the GitHub repository dwqdaiwenqi/claude-code-web (43 stars, last pushed 3mo ago), licensed MIT. It adds 1,087 tokens to every session, about $0.0054 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
react CLAUDE.md
Claude Code instructions for react/react, covering react, monorepo overview and current active work.
tamagui AGENTS.md
AGENTS.md instructions for tamagui/tamagui, covering tamagui — agent operating contract, finish what you start, then merge it back, tamagui testing guide, running tests and kitchen sink tests.
ui-components AGENTS.md
AGENTS.md instructions for starc007/ui-components, covering beui v2 — agent guide, commands, layout, component catalog and components (motion category — primitives).
core CLAUDE.md
Claude Code instructions for ReactUnity/core, covering claude.md, what this repo is, two package universes, pnpm workspace membership and commands.
core AGENTS.md
AGENTS.md instructions for ReactUnity/core, covering release workflow, write changelog files, example, fix button hover state and package references.
synerise-design CLAUDE.md
Claude Code instructions for Synerise/synerise-design, covering claude.md — synerise design system, project overview, code quality, components and testing.