Skip to main content

Context profiling tool for Claude Code sessions

Project description

ContextFlame

A context profiling tool for Claude Code sessions. Detects and visualizes context window bloat from tool calls — file reads, grep results, MCP responses — and shows you exactly where your tokens are going.

The Problem

Claude Code injects tool outputs into the conversation context. Over a session, these accumulate and cause context overflow, truncation, repeated file injection, and wasted tokens. There's no visibility into what's consuming the context window or when resets occur.

ContextFlame answers: where are my tokens going?

How It Works

ContextFlame wraps your claude command with a local proxy, like perf record or strace. It intercepts every API call, attributes token usage by source, and generates a flamegraph when you're done.

contextflame claude → proxy (auto port) → api.anthropic.com

No config. No background processes. When Claude exits, the proxy dies and you get your report.

Quick Start

pip install contextflame

Profile a session

contextflame claude

That's it. Use Claude Code as normal. When you exit, ContextFlame generates contextflame-report.html and prints a summary:

ContextFlame profiling → claude
Proxy on :52431 | Log: contextflame-1709571234.jsonl
────────────────────────────────────────────────────
  ... your Claude Code session ...
────────────────────────────────────────────────────
Report: /home/you/contextflame-report.html
  47 calls | 1,234,567 input tokens | 42% tool | 18% duplicate

Open contextflame-report.html in a browser.

Options

contextflame --port 8011 claude          # use a specific port
contextflame claude --model opus          # pass args through to claude
contextflame claude --resume              # works with any claude flags
contextflame --no-report claude           # skip report generation

Everything after contextflame [options] is passed directly to the wrapped command.

CLI Reference

contextflame <command> [args...]

Profile any command. Starts a proxy, runs the command with ANTHROPIC_BASE_URL pointed at it, generates a report when it exits.

Flag Default Description
--port auto Proxy port (0 = pick a free port)
--log auto (timestamped) Path to the JSONL log file
--output contextflame-report.html Report output path
--no-report off Skip report generation

contextflame report

Generate a report from an existing log file.

Flag Default Description
--log (required) Path to the JSONL log file
--output contextflame-report.html Output HTML file path

contextflame watch

Live-tail token usage in the terminal with sparkline bars.

Flag Default Description
--log (required) Path to the JSONL log file
--interval 1.0 Refresh interval in seconds
ContextFlame watch — press Ctrl+C to stop
────────────────────────────────────────────────────────────────────────
#a1b2c3d4 ▃▃▃▃▃▃░░░░░░░░░░░░░░ in: 32.1k out: 1.2k tool: 18.4k  Read×3 Grep×1
#e5f6a7b8 ▄▄▄▄▄▄▄▄░░░░░░░░░░░░ in: 45.8k out:  842  tool: 22.1k  Read×2 Bash×1
#c9d0e1f2 ▆▆▆▆▆▆▆▆▆▆▆░░░░░░░░░ in: 98.3k out: 2.1k tool: 51.2k  Read×5 Grep×2 Bash×1

contextflame start

Run the proxy server standalone (for advanced use or if you want separate terminals).

Flag Default Description
--port 8011 Port to run the proxy on
--host 0.0.0.0 Host to bind to
--log contextflame.jsonl Path to the JSONL log file

The Report

The HTML report is a self-contained file with:

  • Metrics bar — total calls, input/output tokens, tool token ratio, duplicate ratio, peak utilization, context resets, wasted tokens
  • Flamegraph — width proportional to tokens consumed, click to zoom in:
    • Session → API calls → categories (System/History/Tools/Output) → individual tool results
    • Breadcrumb navigation to zoom back out
    • Duplicate content shown with red stripe pattern
  • Token timeline — stacked bar chart showing context growth over the session
  • Top tables — tools and files ranked by cumulative token consumption

What It Tracks

Metric What it tells you
Tool token ratio What fraction of your context is tool outputs vs. actual conversation
Duplicate ratio How often the same file/content gets re-injected across calls
Top tools Which tools (Read, Grep, Bash, MCP) consume the most tokens
Top files Which files get read most often and cost the most tokens
Context resets When Claude Code's context window overflows and gets truncated
Peak utilization How close you got to the 200k token limit
Wasted tokens Tokens spent on duplicate content that was already in context

Architecture

src/contextflame/
├── cli.py           # Click CLI — wrap command, start, report, watch
├── proxy.py         # Starlette async proxy, handles streaming + non-streaming
├── attributor.py    # Parses request/response, classifies tokens by source
├── storage.py       # ContextSnapshot/ToolInjection dataclasses, JSONL I/O
├── metrics.py       # Computes session-level bloat metrics
├── flamegraph.py    # Renders the HTML report from snapshots
└── templates/
    └── flamegraph.html  # D3.js interactive flamegraph template

Development

uv run pytest tests/ -v

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

contextflame-0.1.6.tar.gz (24.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

contextflame-0.1.6-py3-none-any.whl (21.3 kB view details)

Uploaded Python 3

File details

Details for the file contextflame-0.1.6.tar.gz.

File metadata

  • Download URL: contextflame-0.1.6.tar.gz
  • Upload date:
  • Size: 24.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for contextflame-0.1.6.tar.gz
Algorithm Hash digest
SHA256 6b84d20e3ce3246970d593c92e15781499417f31f83a0e3b98e4faf82327bc3e
MD5 1b11d0783ce9a90dde3f8091a2e1f49d
BLAKE2b-256 0ac3cd4a452712c52cb5def0d176bd63957f5d54d8d777215cfb0049472de3ab

See more details on using hashes here.

File details

Details for the file contextflame-0.1.6-py3-none-any.whl.

File metadata

  • Download URL: contextflame-0.1.6-py3-none-any.whl
  • Upload date:
  • Size: 21.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for contextflame-0.1.6-py3-none-any.whl
Algorithm Hash digest
SHA256 e41e13d1ba85aa087a64731dc71d261ae1b1b760e2ffbd7631d6341ff30b54c0
MD5 9e8b6f404449794adcf2c6e2c6e8bb51
BLAKE2b-256 a2b0baceec059cbd0a139519a0164e4fed74d70da5eb7d9e32d31eaab334846b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page