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/lqs/retrotick/claude-mdgit clone --depth 1 https://github.com/lqs/retrotickWrote 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/lqs/retrotick/claude-md)<a href="https://agentmods.dev/instructions/lqs/retrotick/claude-md"><img src="https://agentmods.dev/badge/instructions/lqs/retrotick/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 | $0.03091 | $0.03091 |
| Opus 5 | $0.01545 | $0.01545 |
| Sonnet 5 | $0.00618 | $0.00618 |
| Haiku 4.5 | $0.00309 | $0.00309 |
Grade A, and why
retrotick 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 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.
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 — 167 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.
Project Overview
RetroTick is a browser-based x86 emulator that runs classic Windows PE/NE/MZ executables. Built with Preact + Vite + TypeScript + Tailwind CSS.
Commands
npm run build— Production build todist/npm run check— Alias fornpm run build(catches type errors and regressions)timeout 2 npx tsx tests/test-<name>.mjs— Run a headless test for a specific exe
No test runner or linter scripts are configured.
Architecture
Core Layers
PE/NE Parsing (src/lib/pe/): Binary parsing of Windows executables. parse.ts handles PE header parsing and resource directory tree walking. Each extract-*.ts file handles one resource type (bitmap, icon, cursor, dialog, menu, string, version, accelerator, AVI, WAV, manifest, Delphi DFM, imports, exports). decode-dib.ts handles DIB-to-image conversion. RVA-to-file-offset mapping converts virtual addresses to actual file positions.
x86 CPU (src/lib/emu/x86/): Modular instruction execution:
cpu.ts— CPU class with register accessors, flag get/set, push/pop, fetch, alu(), testCC()flags.ts—materializeFlags()for lazy flag evaluationlazy-op.ts— Lazy operation type definitionsdecode.ts— ModRM/SIB decoding, segment override, writeModRMdispatch.ts— Main instruction dispatch switchops-0f.ts— Two-byte 0F opcode handler (Jcc/SETcc/CMOVcc/MOVZX/MOVSX/IMUL)ops-0f-ext.ts— Extended 0F opcodes (BT/BSF/BSR/SHLD/SHRD/XADD/CMPXCHG/BSWAP/RDTSC)fpu.ts— FPU helpers (fpuPush/fpuPop/fpuST/fpuSetST) + dispatcherfpu-d8db.ts— FPU opcodes D8-DBfpu-dcdf.ts— FPU opcodes DC-DFshift.ts— Shift/rotate operations (SHL/SHR/SAR/ROL/ROR/RCL/RCR/SHLD/SHRD)string.ts— String instructions (REP MOVS/STOS/CMPS/SCAS/LODS)
Emulator Core (src/lib/emu/):
memory.ts— Linear 32-bit address space with segment translation and ANSI code page supportemulator.ts— Emulator class with fields, heap/virtual alloc, arg reading, timer mgmt, delegates;ApiDef,Win32Dll,Win16Modulefor unified API registrationthread.ts— Thread state managementpe-loader.ts/ne-loader.ts/mz-loader.ts— Load PE32, NE (16-bit), and MZ (DOS) executables into memoryemu-exec.ts— tick(), callWndProc(), callWndProc16(), completeThunk(), resume()emu-load.ts— load() and findResourceEntry()emu-thunks-pe.ts— Win32 thunk table builder, IAT verification, TEB initemu-thunks-ne.ts— Win16 thunk table builder, resource string readeremu-render.ts— fillTextBitmap, renderChildControls, sendDrawItememu-render-controls.ts— renderButton, renderStatic, renderEditemu-window.ts— DC management, canvas setup, SEH dispatch, resource loadingdos-int.ts— DOS INT 21h interrupt services for MZ executablesfile-manager.ts— Virtual filesystem backed by IndexedDBcp437.ts— CP437 (DOS) character encoding tableformat.ts— Formatting utilities
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.
- 5d ago First seen · 167 lines · 3,091 tokens per session scan A 346a90c39814
retrotick CLAUDE.md is an instructions file published in the GitHub repository lqs/retrotick (304 stars, last pushed 1mo ago), licensed CC0-1.0. It adds 3,091 tokens to every session, about $0.0155 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
jsbeeb CLAUDE.md
Claude Code instructions for mattgodbolt/jsbeeb, covering claude.md, build and test commands, code coverage, code style guidelines and comments.
jsbeeb copilot-instructions.md
Copilot instructions for mattgodbolt/jsbeeb, covering jsbeeb - javascript bbc micro emulator, development guidelines, working effectively, bootstrap and build process and timeout requirements.
zx84 AGENTS.md
AGENTS.md instructions for damieng-zx/zx84, covering zx84 — codex guidelines, architecture, layer map, services model (ui binds to services, never machine kinds) and hot-path rules (see re-architecture §6).
mockpost CLAUDE.md
Claude Code instructions for reiarseni/mockpost, covering claude.md — mockpost contribution workflow, language, conventional commits, branches and issues.
MPX68K CLAUDE.md
Claude Code instructions for YosAwed/MPX68K, covering claude.md, project overview, build commands, building the project and open in xcode (primary build method).
MPX68K AGENTS.md
AGENTS.md instructions for YosAwed/MPX68K, covering repository guidelines, project structure & module organization, build, test, and development commands, coding style & naming conventions and testing guidelines.