Claude-night-market token-conservation
Enforce token quota management at session start with conservation rules, delegation checks, and compression review.
install
source · Clone the upstream repo
git clone https://github.com/athola/claude-night-market
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/athola/claude-night-market "$T" && mkdir -p ~/.claude/skills && cp -r "$T/plugins/conserve/skills/token-conservation" ~/.claude/skills/athola-claude-night-market-token-conservation && rm -rf "$T"
manifest:
plugins/conserve/skills/token-conservation/SKILL.mdsource content
Token Conservation Workflow
When To Use
- Run at the start of every session and whenever prompt sizes or tool calls begin to spike.
- Mandatory before launching long-running analyses, wide diffs, or massive context loads.
When NOT To Use
- Context-optimization already handles the scenario
- Simple queries with minimal context
Required TodoWrite Items
token-conservation:quota-checktoken-conservation:context-plantoken-conservation:delegation-checktoken-conservation:compression-reviewtoken-conservation:logging
Step 1 – Quota Check (quota-check
)
quota-check- Record current session duration and weekly usage (from
or notebook). Note the 5-hour rolling cap + weekly cap highlighted in the Claude community notice./status - Capture remaining budget and set a max token target for this task.
Step 2 – Context Plan (context-plan
)
context-plan- Set a discovery read budget BEFORE reading any files. Count each
call and each content-modeRead
as one read. Glob and files-with-matches Grep are free.Grep- Implement from spec/requirements: max 8 reads
- Bug fix at known location: max 5 reads
- Refactor with known scope: max 1 read per file being changed
- Open exploration: max 15 reads
- Read order (most valuable first): spec/requirements, files to modify, imports/interfaces, then stop and start writing.
- When budget is spent: ask the user if more context is needed. Do NOT self-authorize additional reads. Only explicit user approval overrides the budget.
- Prefer
withRead
/offset
params orlimit
tool over loading whole files. AGrep
targeting <50 lines counts as 0.5 reads. AvoidRead
/cat
/sed
via Bash — Claude Code 2.1.21+ steers toward native file tools (Read, Edit, Write, Grep, Glob).awk - PDFs (Claude Code 2.1.30+): Use
withRead
for targeted PDF reading instead of loading entire documents. Large PDFs (>10 pages) return a lightweight reference when @-mentioned — use thepages: "1-5"
parameter to read specific sections. Hard limits: 100 pages max, 20MB max per PDF. Exceeding these previously locked sessions permanently (fixed in 2.1.31).pages - Convert prose instructions into bullet lists before prompting so only essential info hits the model.
Step 3 – Delegation Check (delegation-check
)
delegation-check- Evaluate whether compute-intensive tasks can go to Qwen MCP or other external
tooling (use
skill if needed).qwen-delegation - For local work, favor deterministic scripts (formatters, analyzers) instead of LLM reasoning when possible.
Step 4 – Compression Review (compression-review
)
compression-review- Summarize prior steps/results before adding new context. Remove redundant history, collapse logs, and avoid reposting identical code.
- Use
ideas: reference prior outputs instead of restating them when the model has already processed the information (cite snippet IDs).prompt caching - Decide whether the current thread should be compacted:
- If only recent context is stale, use "Summarize from here" (Claude Code 2.1.32+) via the message selector to partially summarize the conversation — this preserves recent context while compressing older portions
- If the active workflow is finished and earlier context will not be reused,
instruct the user to run
/new - If progress requires the existing thread but the window is bloated,
prompt them to run
before continuing/compact
- Automatic memory (Claude Code 2.1.32+): Claude now records and recalls session memories automatically. This adds minor token overhead but improves cross-session continuity. No action needed — be aware it contributes to baseline context usage.
Step 5 – Logging (logging
)
loggingDocument the conservation tactics that were applied and note the remaining token budget. If the budget is low, explicitly warn the user and propose secondary plans. Record any recommendations made regarding the use of
/new or /compact,
or justify why neither was necessary, to inform future context-handling decisions.
Output Expectations
- A short explanation of token-saving steps, delegated tasks, and remaining runway.
- Concrete next-action list that keeps the conversation lean (e.g.):
- "next turn: provide only failing test output lines 40-60"
- Explicit reminder about
or/new
whenever you determine it would save tokens (otherwise state that no reset/compaction is needed yet)./compact