# Claude Code Context Usage: Diagnose Unnecessary Tokens

> Source: <https://dev.to/bettertoken_ai/claude-code-context-usage-diagnose-unnecessary-tokens-476e>
> Published: 2026-08-20 08:18:24+00:00

In the Claude Code community, a user reported that a fresh session started at roughly 35,000 tokens and later dropped to about 13,000 after cleaning up repository instructions. That is a useful reminder to inspect your own project setup, but not a universal benchmark: codebase size, instruction length, MCP tools, and measurement methods differ across projects.

You can inspect your setup in two controlled runs. Measure baseline context using native Claude Code commands and API metadata, modify exactly one reversible context source, and repeat the same request. Then compare token usage, cost, and task correctness.

You do not need to guess context sizes. Claude Code provides native commands:

`/context`

— displays the breakdown of active context: project instructions, connected MCP tools, cached files, and conversation history;`/cost`

— outputs token consumption (input, output, cache) and estimated cost for the current session.For a separate API workflow, the API Dashboard provides per-request accounting: input tokens, output tokens, cache hits, HTTP status, and actual balance charges.

Start with a small read-only query that does not modify files:

```
Find where validateInvoice is defined.
Name the function file and one test that checks an empty amount.
Do not edit anything.
```

This request produces a clear binary outcome: two correct file paths or a failure.

Before running, fix the baseline variables:

Open a fresh session, execute `/context`

to inspect baseline load, run the test query, and record the metadata:

| Field | Run A |
|---|---|
| Request status | 200 OK |
| Input tokens | 18,420 |
| Output tokens | 310 |
| Cache tokens | 0 |
| Cost / charge | $0.026 |
| Result | correct function and test identified |

These figures illustrate the comparison worksheet and format verified on August 18, 2026 against [current BetterToken pricing](https://bettertoken.ai/pricing?utm_source=devto&utm_medium=syndication&utm_campaign=SEO-097&utm_content=claude-code-kontekst-i-usage-diagnostika-tokenov). In your own project, record the live numbers from `/cost`

or your dashboard.

Do not include API keys, private source code, full proprietary prompts, or sensitive logs in notes. Metadata, source names, and task outcomes are sufficient.

Do not disable all configuration at once. Investigate context sources in priority order:

`CLAUDE.md`

)`/compact`

or start fresh with a handoff if needed).Suppose `CLAUDE.md`

contains a 12,000-line build log. Make one reversible change: move the log to `docs/build.log`

and keep a concise pointer in `CLAUDE.md`

. Do not change the model, MCP tools, or prompt at the same time.

Keep the revision, model, and prompt unchanged. After the single modification, rerun the request and complete the A/B comparison table:

| Field | Run A | Run B | Difference |
|---|---|---|---|
| Request status | 200 OK | 200 OK | Success |
| Input tokens | 18,420 | 6,180 | -12,240 |
| Output tokens | 310 | 295 | -15 |
| Cache tokens | 0 | 0 | 0 |
| Cost / charge | $0.026 | $0.009 | -$0.017 |
| Function found | yes | yes | unchanged |
| Test found | yes | yes | unchanged |

If input tokens dropped but Run B identified the wrong test or ignored a mandatory project constraint, the change degraded performance. Restore the original instruction.

Retain configuration changes only when all five criteria are met:

`/cost`

and the dashboard confirm expected metadata changes.For your own API workflow, the BetterToken Dashboard displays balance, active model, exact timestamp, HTTP status, input, output, and cache tokens, along with the resulting charge. Match records by timestamps from Runs A and B and record them in your comparison table. The dashboard stores request metadata without storing complete private prompt text or responses.

BetterToken provides independent Anthropic-compatible API access with pay-as-you-go billing, separate from Claude.ai subscriptions. [Check the current BetterToken documentation for Claude Code](https://docs.bettertoken.ai/ai-tools/claude-code?utm_source=devto&utm_medium=syndication&utm_campaign=SEO-097&utm_content=claude-code-kontekst-i-usage-diagnostika-tokenov), generate an API Key in your workspace, and track token usage directly in the dashboard.

The purpose of context optimization is removing irrelevant noise without losing essential context. Measure baseline context with `/context`

and `/cost`

, adjust one source at a time, verify task accuracy, and cross-reference API usage metadata.

*Originally published on the BetterToken blog.*

BetterToken provides pay-as-you-go access to AI model APIs through

OpenAI-compatible and Anthropic-compatible endpoints — useful if you are wiring

Claude Code, Codex, or your own tooling to a custom base URL.

See the [docs](https://docs.bettertoken.ai/?utm_source=devto&utm_medium=syndication&utm_campaign=SEO-097&utm_content=claude-code-context-usage-token-diagnostics) to get started.
