rungraph CLAUDE.md

rungraph CLAUDE.md is an instructions file for Claude Code from fayzan123/rungraph. It costs 4,826 tokens per session, scanned A, original, MIT.

A set of project instructions for rungraph, a command-line app that turns AI coding-agent session records into an interactive graph and can follow new activity as it appears.

In plain words
What is it for?
Use it when developing or changing rungraph, especially its session readers, graph view, live updates, and support for different coding-agent clients.
Why use it?
It gives an agent the project’s current design, constraints, shared code details, and required specifications in one place.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md. Also seen: reads .claude/ paths; mentions subagents; mentions Claude Code.

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

Made for: Claude Code.

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

README.md
[![agentmods](https://agentmods.dev/badge/instructions/fayzan123/rungraph/claude-md.svg)](https://agentmods.dev/instructions/fayzan123/rungraph/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/fayzan123/rungraph/claude-md"><img src="https://agentmods.dev/badge/instructions/fayzan123/rungraph/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 4,826 This file is loaded in full into every session.
When invoked 4,826 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.1 $0.04826 $0.04826
Opus 5 $0.02413 $0.02413
Sonnet 5 $0.00965 $0.00965
Haiku 4.5 $0.00483 $0.00483

Measured 6d ago against content hash 72d1a95c5268, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

rungraph 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.

CLAUDE.md · 244 lines

How it starts

The opening of the file, as written. The whole thing — 244 lines — stays where its author put it; the contents beside it link to each section on GitHub.

rungraph — project instructions

Zero-setup, agent-first visualizer for AI agent runs: npx rungraph reconstructs Claude Code sessions + Workflow runs from ~/.claude/projects native transcripts (post-hoc, no hooks) into an interactive directed agentic graph, with live tail via file watching.

Current state

  • Specs (source of truth, read before any work):
    • docs/superpowers/specs/2026-08-11-rungraph-design.md — v1 architecture.
    • docs/superpowers/specs/2026-08-11-frontend-navigation-design.md — canvas navigation.
    • docs/superpowers/specs/2026-08-12-signal-and-focus-layer-design.md — signals, focus, files, MCP.
    • docs/superpowers/specs/2026-08-20-opencode-adapter-design.md — the opencode adapter, src/sqlite.js, and the core IRNode.reverted field.
    • docs/superpowers/specs/2026-08-20-mcp-install-loop-design.mdsrc/clients.js, multi-client --install/--check, the launch resolver and the serve nudge. Read its Implementation amendments section: two of its ground-truth claims were falsified by re-probing during the build, and the code follows the probe, not the spec.
    • docs/superpowers/specs/2026-08-20-cursor-adapter-design.md — the Cursor adapter (one adapter, two stores), the key-name redaction rule in src/secrets.js, and the first genuine paste-tier client. Read its Implementation amendments and the §14 calibration record: the build deviated from the spec's letter in fifteen recorded places — four from the build, eleven from the 53-agent adversarial review after it.
    • docs/superpowers/specs/2026-08-23-session-replay-design.md — session replay: the additive call-level timing contract (callOffsets, tool endedAt), src/timeline.js, the replay bar, the moment-aware canvas/inspector/strip/minimap, playback as a fixed-speed time-lapse, the follow-camera, live detach, the t= deep link, the agent hook and the landing-page chip. Read its Implementation amendments: the playhead's stored identity gained a tie ordinal (k) because real runs put many events on one millisecond, and a leading untimed node materializes with its successor rather than at epoch zero.
  • Session replay is implemented (2026-08-24): every adapter with a per-call clock emits callOffsets and tool endedAt (Cursor CLI has none and emits neither — asserted), the signals snapshot was byte-identical before and after (tool groups still carry no durationMs, so the outlier population did not move), and the dashboard's r key opens the bar. deriveSignals is untouched; replay only reveals signals at their completion.
  • v1 and the signal & focus layer are implemented. Scanner, adapter, IR, CLI, server, live-tail watcher, the Preact frontend, deriveSignals, file attribution, the FocusSet spine, and rungraph mcp all ship.
  • Five adapters ship, and five clients: claude-code, codex, hermes, opencode, cursor. The last three read SQLite through the shared src/sqlite.js and need Node ≥ 22.13; on older Nodes they self-disable with a structured warning, and only when a database actually exists to be skipped. Cursor is two stores under one adapter — the IDE's global state.vscdb (every project's conversations in one key-value table) and cursor-agent's per-chat store.db (a content-addressed blob store whose conversation order lives in a protobuf root snapshot) — because the rail should show one vendor for one product. Refs carry surface: 'ide' | 'cli'; the scan root array holds both roots and the adapter classifies each by shape. No Cursor field says whether a tool call succeeded (a refused command is status: completed), so outcome.js is a calibrated classifier shared by both surfaces.

Read the full file on GitHub · 244 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. 6d ago First seen · 244 lines · 4,826 tokens per session scan A 72d1a95c5268

Subscribe to this mod's changes

rungraph CLAUDE.md is an instructions file published in the GitHub repository fayzan123/rungraph (25 stars, last pushed 12d ago), licensed MIT. It adds 4,826 tokens to every session, about $0.0241 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.