imcodes CLAUDE.md

Development instructions for IM.codes, a specialized application with a daemon, web interface, and self-hosted backend. They list build, type-checking, test, development-server, and database-migration commands.

In plain words
What is it for?
They are for building and type-checking the project, running unit, server, browser, and end-to-end tests, starting development services, and applying PostgreSQL database changes.
Why use it?
They make it clear which checks apply to each part of the application and how to run the backend locally.

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/im4codes/imcodes/claude-md
Clone the repo
git clone --depth 1 https://github.com/im4codes/imcodes
Per session 2,917 This file is loaded in full into every session.
When invoked 2,917 The same file — it is already loaded in full.
Security scan A 0 findings. 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.02917 $0.02917
Opus 5 $0.01458 $0.01458
Sonnet 5 $0.00583 $0.00583
Haiku 4.5 $0.00292 $0.00292

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

Security

Grade A, and why

imcodes 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 2d 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.

CLAUDE.md · 107 lines

How it starts

The opening of the file, as written. The whole thing — 107 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.

Commands

# Build & typecheck
npm run build                              # daemon (src/ → dist/)
npx tsc --noEmit                           # daemon typecheck only
npx tsc -p server/tsconfig.json --noEmit   # server (stricter: noUnusedLocals, noImplicitReturns)

# Tests (vitest workspace)
npm test                               # all projects
npm run test:unit                      # daemon only (src/**/*.test.ts, test/**/*.test.ts, excludes e2e)
npm run test:server                    # server only (server/test/**/*.test.ts)
npm run test:web                       # web only (web/test/**/*.test.ts, jsdom environment)
npm run test:e2e                       # e2e only (test/e2e/**/*.test.ts, 30s timeout, requires tmux)
npx vitest run path/to/file.test.ts    # single file

# Server (self-hosted backend)
cd server && npm run dev               # run server via tsx
cd server && npm run migrate           # apply PostgreSQL migrations

# Dev
npm run dev                            # run daemon via tsx

Architecture

IM.codes is a specialized instant messenger for AI coding agents — a three-tier system for remote terminal access, file browsing, multi-agent workflows, and session management:

You (browser / mobile app)
        ↓ WebSocket
Server (Node.js + Hono + PostgreSQL, self-hosted in server/)
        ↓ WebSocket
Daemon (Node.js CLI on user's machine, src/)
        ↓ tmux / ConPTY / transport
AI Agents (Claude Code / Codex / Gemini CLI / OpenClaw / Shell)
        ↔ imcodes send (agent-to-agent)

Daemon (src/)

Node.js process that manages AI agent sessions via tmux. Entry point: src/index.ts (commander CLI).

  • Agent layer (src/agent/): Two runtime backends — process agents run in tmux/ConPTY sessions, transport agents stream via network protocols.
    • Process drivers (src/agent/drivers/): claude-code.ts, codex.ts, gemini.ts, opencode.ts, shell.ts — each implements AgentDriver (build launch/resume commands, detect status via terminal patterns, capture output). tmux.ts wraps tmux (Linux/macOS), conpty.ts provides ConPTY (Windows).
    • Transport providers (src/agent/providers/): qwen.ts (Qwen, LOCAL_SDK — spawns CLI process with stream-json output), openclaw.ts (OpenClaw, PERSISTENT — WebSocket to gateway). Each implements TransportProviderconnect(), send(), onDelta(), onComplete(). Streaming is event-driven (no terminal scraping).
    • Agent types: ProcessAgent = 'claude-code' | 'codex' | 'gemini' | 'opencode' | 'shell' | 'script', TransportAgent = 'openclaw' | 'qwen'. Defined in src/agent/detect.ts.
    • session-manager.ts manages all sessions, auto-restart with loop prevention. provider-registry.ts manages transport provider lifecycle.
  • Transport relay (src/daemon/transport-relay.ts): Converts transport provider callbacks (onDelta, onComplete, onError) to unified timeline events (assistant.text, session.state, tool.call).
  • Routing (src/router/): message-router.ts routes inbound messages to the correct session. command-parser.ts handles /bind, /status, /send, etc.
  • Server link (src/daemon/server-link.ts): WebSocket client connecting to the server at /api/server/:id/ws. Sends { type: 'auth', serverId, token } on open. Credentials stored in ~/.imcodes/server.json after imcodes bind.
  • Session store (src/store/session-store.ts): JSON file at ~/.imcodes/sessions.json, debounced writes.

Read the full file on GitHub · 107 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. 2d ago First seen · 107 lines · 2,917 tokens per session scan A 8a65a91dd248

Subscribe to this mod's changes

imcodes CLAUDE.md is an instructions file published in the GitHub repository im4codes/imcodes (973 stars, last pushed 2d ago), licensed MIT. It adds 2,917 tokens to every session, about $0.0146 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.

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,182 tokens

buildNext

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

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

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,040 tokens

langchain 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,345 tokens