retrotick CLAUDE.md

retrotick CLAUDE.md is an instructions file for coding agents from lqs/retrotick. It costs 3,091 tokens per session, scanned A, original, CC0-1.0.

Project instructions for RetroTick, a browser-based x86 emulator that runs older Windows executable files. They describe its Preact, Vite, TypeScript, and Tailwind setup, commands, and internal layers.

In plain words
What is it for?
Use them when building or checking RetroTick, testing an executable, or modifying its Windows-file parser, CPU emulator, or browser interface.
Why use it?
They show an AI coding assistant where parsing, emulation, resource extraction, and user-interface code live, reducing the risk of changing the wrong part.

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/lqs/retrotick/claude-md
Clone the repo
git clone --depth 1 https://github.com/lqs/retrotick

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

README.md
[![agentmods](https://agentmods.dev/badge/instructions/lqs/retrotick/claude-md.svg)](https://agentmods.dev/instructions/lqs/retrotick/claude-md)
Your own site
<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>
Per session 3,091 This file is loaded in full into every session.
When invoked 3,091 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.03091 $0.03091
Opus 5 $0.01545 $0.01545
Sonnet 5 $0.00618 $0.00618
Haiku 4.5 $0.00309 $0.00309

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

Security

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.

CLAUDE.md · 167 lines

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 to dist/
  • npm run check — Alias for npm 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.tsmaterializeFlags() for lazy flag evaluation
  • lazy-op.ts — Lazy operation type definitions
  • decode.ts — ModRM/SIB decoding, segment override, writeModRM
  • dispatch.ts — Main instruction dispatch switch
  • ops-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) + dispatcher
  • fpu-d8db.ts — FPU opcodes D8-DB
  • fpu-dcdf.ts — FPU opcodes DC-DF
  • shift.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 support
  • emulator.ts — Emulator class with fields, heap/virtual alloc, arg reading, timer mgmt, delegates; ApiDef, Win32Dll, Win16Module for unified API registration
  • thread.ts — Thread state management
  • pe-loader.ts / ne-loader.ts / mz-loader.ts — Load PE32, NE (16-bit), and MZ (DOS) executables into memory
  • emu-exec.ts — tick(), callWndProc(), callWndProc16(), completeThunk(), resume()
  • emu-load.ts — load() and findResourceEntry()
  • emu-thunks-pe.ts — Win32 thunk table builder, IAT verification, TEB init
  • emu-thunks-ne.ts — Win16 thunk table builder, resource string reader
  • emu-render.ts — fillTextBitmap, renderChildControls, sendDrawItem
  • emu-render-controls.ts — renderButton, renderStatic, renderEdit
  • emu-window.ts — DC management, canvas setup, SEH dispatch, resource loading
  • dos-int.ts — DOS INT 21h interrupt services for MZ executables
  • file-manager.ts — Virtual filesystem backed by IndexedDB
  • cp437.ts — CP437 (DOS) character encoding table
  • format.ts — Formatting utilities

Read the full file on GitHub · 167 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. 5d ago First seen · 167 lines · 3,091 tokens per session scan A 346a90c39814

Subscribe to this mod's changes

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.