super-token-saver: Instructions file for Claude Code

CLAUDE.md

super-token-saver CLAUDE.md is an instructions file for Claude Code from ww-w-ai/super-token-saver. It costs 3,495 tokens per session, scanned A, original, Apache-2.0.

Instructions for a Claude Code plugin that manages token use, caching, costs, sessions, and research-based thinking patterns. Tokens are the text units used to process an AI coding session.

In plain words
What is it for?
Use it to continue or compact sessions, view usage, check setup status, report limits, track costs, and shrink images before attaching them.
Why use it?
It helps users understand and control session limits, cached data, image attachment size, and usage information without adding npm dependencies.

Instructions file for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT variable. Also seen: reads .claude/ paths; mentions CLAUDE.md; mentions subagents.

This is ww-w-ai/super-token-saver's own configuration. It tells Claude Code how to work on super-token-saver itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything super-token-saver configures →

Runs only inside a plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else, and the catalogue could not identify which plugin ships it.

Reuse

Borrowing it

Nothing to install: this file belongs to ww-w-ai/super-token-saver. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/ww-w-ai/super-token-saver/main/CLAUDE.md
Clone the repo
git clone --depth 1 https://github.com/ww-w-ai/super-token-saver

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 super-token-saver CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/ww-w-ai/super-token-saver/claude-md/github.svg)](https://agentmods.dev/instructions/ww-w-ai/super-token-saver/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/ww-w-ai/super-token-saver/claude-md"><img src="https://agentmods.dev/badge/instructions/ww-w-ai/super-token-saver/claude-md/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for super-token-saver CLAUDE.md

Your own site · 80×15
<a href="https://agentmods.dev/instructions/ww-w-ai/super-token-saver/claude-md"><img src="https://agentmods.dev/badge/instructions/ww-w-ai/super-token-saver/claude-md.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 3,495 This file is loaded in full into every session.
When invoked 3,495 The same file — it is already loaded in full.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.03495 $0.03495
Opus 5 $0.01747 $0.01747
Sonnet 5 $0.00699 $0.00699
Haiku 4.5 $0.00349 $0.00349

Measured 2d ago against content hash 875bde1801b9, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

super-token-saver 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 · 211 lines

How it starts

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

What This Is

Claude Code plugin (super-token-saver) that automates token/cache management, cost tracking, session control, and research-backed thinking patterns. No npm dependencies, zero config. Pure Node.js + Bash (two pure-JS image codecs are vendored under scripts/lib/vendor/, still no install step).

Architecture

hooks/          → Host-specific lifecycle registries plus their Bash commands and injected guidance.
skills/         → 5 SKILL.md-based skills invoked via /s-continue, /s-compact, /usage-view, /setup-statusline, /report-limit
scripts/        → Node.js processing pipeline (no npm, no build step)
                  + shrink-img.js — image downscaler for cheaper file attachments
scripts/lib/    → Shared utilities (pricing, cache paths, locale, window calculations)
scripts/lib/vendor/ → Vendored pure-JS third-party (pngjs MIT, jpeg-js BSD) for shrink-img; see THIRD-PARTY-NOTICES.md
locales/        → 23 language JSON files for dashboard UI strings

Data flow: transcripts (JSONL) → preprocess.js / analyze-usage.js → cached artifacts → skills consume them.

Two transcript sources, one pipeline

/s-continue and /s-compact read Claude Code AND Codex sessions. A Codex rollout is not parsed by a second parser — scripts/lib/codex-transcript.js rewrites it into the shape CC writes, one output line per input line, and everything downstream runs unchanged.

  • Why line parity matters: every L{n} marker must still address the Codex original's line. A normalizer that dropped non-message rows would silently shift them.
  • Key on payload.id, never session_id. In Codex session_id is the THREAD id and a spawned subagent inherits its parent's, so three files can carry the same one and overwrite each other's cache. Subagent rollouts are excluded from the list, as CC subtask transcripts already are.
  • Codex compaction is translated into system/compact_boundary, so a compacted Codex session gets the same #0 pre-loss restore a compacted CC session gets.
  • CODEX_HOME is honoured. Everything Codex lives under …-data/codex/: normalized copies in codex/.normalized/{projectHash}/, analysis cache and compact.txt in codex/{projectHash}/{sid}/. Claude Code stays at the root of the same base (the Bash statusline hook writes there). Get paths from cache-paths.forHost('codex'); the root getters and listProjects() are the Claude tree and never return codex. The one-time move of pre-split entries is migrateCodexSubdir() (it runs while .codex-normalized still exists at the root). Gate: node scripts/test-cache-host-split.js.
  • Gate: node scripts/test-codex-adapter.js — synthetic fixture, no real transcript needed.
  • The Claude path is byte-identical and must stay so; preprocess.js only changes its footer when --original is passed. Verify by diffing against git show main:scripts/preprocess.js.

Read the full file on GitHub · 211 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 Changed · +22 lines · +402 tokens per session 875bde1801b9
  2. 5d ago Changed · +16 lines · +337 tokens per session 15340cf8f5f7
  3. 6d ago Changed · +21 lines · +518 tokens per session cc2339212623
  4. 10d ago First seen · 152 lines · 2,238 tokens per session scan A 54580d153a64

Subscribe to this mod's changes

super-token-saver CLAUDE.md is an instructions file published in the GitHub repository ww-w-ai/super-token-saver (31 stars, last pushed 2d ago), licensed Apache-2.0. It adds 3,495 tokens to every session, about $0.0175 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

next.js AGENTS.md

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

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

vscode buildNext.instructions.md

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

spec-kit AGENTS.md

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,104 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

langchain AGENTS.md

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