Skip to main content

TokenSaver

CI Python 3.10+ Apache-2.0 Local first Demo input tokens

Find wasted context, tool calls, model calls, and workflow routes in AI agents, locally. Then generate a repair brief for Codex or Claude Code.

TokenSaver records real Agent runs, diagnoses low-ROI patterns with deterministic local rules, and produces an offline report showing what to repair next.

Agent run -> Local trace -> ROI diagnosis -> Repair brief -> Before/after comparison

No hosted account. No required LLM call. No prompt or trace upload by default.

TokenSaver demo changing a high-cost Agent run into a healthy run

See It In 30 Seconds

uvx tokensaver-agent demo

The offline demo writes a before/after benchmark and local HTML panel to .tokensaver-demo/.

Or install it:

python3 -m pip install tokensaver-agent
tokensaver demo
tokensaver open
Input tokens: 32540 -> 2460 (-92.4%)
Output tokens: 7400 -> 580 (-92.2%)
Latency: 31000 -> 1700 (-94.5%)
ROI score: 35 -> 100 (+65)
Result: ACCEPTED

These numbers come from the bundled deterministic demo fixture. They demonstrate the workflow and are not a claim about every Agent application.

The generated share-card.svg can be attached to a PR, issue, release, or post without exposing prompts or tool payloads.

What It Finds

TokenSaver currently detects patterns such as:

  • short requests routed through deep research workflows
  • oversized or repeated context
  • raw tool payloads and repeated uncached tool calls
  • excessive model input and ReAct loop amplification
  • slow tools, latency budget violations, and missing fallbacks
  • answers that are too long for the delivery channel
  • quality guardrail regressions during optimization
  • missing production trace fields and task classification conflicts
  • stale or failed trace persistence after deployment
  • smoke traffic accidentally presented as production ROI

It writes:

.tokensaver/
  runs.jsonl
  health.json
  deployment.json
  reports/latest.md
  reports/latest_real.md
  reports/latest_smoke.md
  briefs/latest.md
  briefs/latest_real.md
  briefs/latest_smoke.md
  index/latest_by_route.json
  panel/index.html

latest.md and panel/index.html are production-only. Smoke tests and deployment audits have separate artifacts and never replace the latest real ROI report.

Integrate With A Coding Agent

Paste this into Codex or Claude Code inside your Agent repository:

Integrate TokenSaver into this Agent application:
https://github.com/zhangtao-jayce/TokenSaver

Find the user-message entrypoint, trace route/context/tool/model/final-answer
data for each run, keep all data local, run one test request, and show:
- .tokensaver/reports/latest.md
- .tokensaver/briefs/latest.md
- .tokensaver/panel/index.html

The detailed integration prompt and verification checklist are in docs/集成指南.md.

Minimal Python Integration

from tokensaver import TokenSaver
from tokensaver.integrations import trace_openai_chat_completion

tokensaver = TokenSaver(app="my-agent", channel="chat")

def handle_message(message: str) -> str:
    with tokensaver.run(
        user_message=message,
        traffic_type="production_user_run",
        metadata={
            "host_version": APP_VERSION,
            "tokensaver_version": "0.7.0",
            "environment": "production",
        },
    ) as run:
        run.set_task(task_type="quick_question", route="default")
        run.add_context("ticket", load_ticket(message), kind="crm")

        response = trace_openai_chat_completion(
            run,
            client=openai_client,
            model="gpt-4.1-mini",
            messages=[{"role": "user", "content": message}],
        )
        answer = response.choices[0].message.content
        run.add_quality_signal("answer_verified", True)
        run.record_final_answer(answer)
        return answer

Start a deployment acceptance cycle before releasing a new host version:

tokensaver mark-deployment --host-version 2.4.0 --environment production
tokensaver health --json

Dependency-free adapters are included for:

  • OpenAI Chat Completions and Responses
  • Anthropic Messages
  • LiteLLM
  • LangChain and LangGraph callbacks
  • framework-agnostic callbacks
  • TypeScript and Vercel AI SDK JSON imports

Compare A Repair

After changing the Agent workflow, record an equivalent run and compare it:

tokensaver compare \
  --before BEFORE_RUN_ID \
  --after AFTER_RUN_ID

TokenSaver reports token, latency, ROI score, resolved findings, new findings, and quality blockers. An optimization is rejected when it introduces tracked quality regressions.

Compare two host versions across equivalent task and route groups:

tokensaver compare \
  --baseline host-version-A \
  --candidate host-version-B \
  --group-by task_type,route \
  --last 500

Each group reports sample size, P50/P95 model input/output and latency, average tool calls, quality-signal retention, and a conservative conclusion. Groups with fewer than three runs per version are marked insufficient_data.

Trustworthy Token Accounting

Schema 0.4 separates model billing from Agent data flow under token_usage:

  • billed_model_input_tokens and billed_model_output_tokens
  • tool_payload_tokens and tool_schema_tokens
  • final_answer_tokens and provider-reported reasoning_tokens
  • estimated repeated_context_tokens
  • source: provider, estimated, or mixed

New SDK traces no longer add tool output or a duplicate final answer into model output_tokens. Provider usage is preferred when an integration response exposes it.

For traffic-aware production health, register a request before tracing when the host entrypoint is observable:

request_id = tokensaver.record_host_request()
with tokensaver.run(user_message=message, request_id=request_id) as run:
    ...

This distinguishes idle_no_traffic from trace_pipeline_broken.

Generate a public Markdown report and anonymous SVG card directly from two run files:

tokensaver benchmark \
  --before-file before.json \
  --after-file after.json \
  --output-dir .tokensaver-benchmark

Three deterministic cases are included:

See examples/case-studies/README.md for exact commands.

CLI

# Product demo
tokensaver demo
tokensaver open

# Installation and environment checks
tokensaver version --verbose
tokensaver doctor
tokensaver health --json
tokensaver init-profile --template coding-agent

# Record and inspect a run
tokensaver record-run --file examples/run.json
tokensaver latest --kind summary
tokensaver latest --kind summary --traffic smoke
tokensaver latest --kind brief
tokensaver latest --kind panel
tokensaver mark-deployment --host-version 2.4.0 --environment production

# Analyze multiple runs
tokensaver list --limit 20
tokensaver top-tools --last 50
tokensaver compare --before RUN_ID --after RUN_ID
tokensaver benchmark --before-file before.json --after-file after.json

If the console script is not on PATH, use python3 -m tokensaver.cli in place of tokensaver.

Profiles

Profiles keep project-specific budgets and quality requirements outside application code:

app: my_agent
channel: chat
budgets:
  quick_question:
    input_tokens: 3000
    output_tokens: 500
    latency_ms: 20000
required_fields:
  quick_question:
    - conclusion
    - next_action

Built-in templates:

chatbot, coding-agent, crm-agent, finance-assistant,
legal-assistant, research-agent, support-bot

MCP

Start the dependency-free stdio server:

tokensaver-mcp

Main tools include:

  • tokensaver.plan_task
  • tokensaver.record_agent_run
  • tokensaver.get_latest
  • tokensaver.get_health
  • tokensaver.mark_deployment
  • tokensaver.diagnose_roi
  • tokensaver.generate_repair_brief
  • tokensaver.eval_fixtures
  • tokensaver.doctor

Privacy By Default

TokenSaver is local-first:

  • prompts, context, traces, and tool results are not uploaded by default
  • the core diagnosis loop does not call an LLM
  • stored traces omit raw context and tool text after estimating their size
  • the HTML panel is a static offline file

See OPEN_SOURCE_SCOPE.md and SECURITY.md for the current boundary.

Project Status

TokenSaver is beta software. The local trace, diagnosis, repair brief, comparison, GUI panel, integration helpers, CLI, and MCP server are implemented. It is not currently a hosted observability platform or automatic LLM gateway.

Useful project documents:

Development

git clone https://github.com/zhangtao-jayce/TokenSaver.git
cd TokenSaver
python3 -m unittest discover -s tests
python3 -m py_compile tokensaver/*.py
python3 -m tokensaver.cli demo --store-dir /private/tmp/tokensaver-demo

Contributions that improve real Agent integrations, diagnosis rules, benchmark fixtures, and before/after case studies are especially useful.

Download files

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

Source Distribution

tokensaver_agent-0.7.0.tar.gz (84.7 kB view details)

Uploaded Source

Built Distribution

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

tokensaver_agent-0.7.0-py3-none-any.whl (73.9 kB view details)

Uploaded Python 3

File details

Details for the file tokensaver_agent-0.7.0.tar.gz.

File metadata

  • Download URL: tokensaver_agent-0.7.0.tar.gz
  • Upload date:
  • Size: 84.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tokensaver_agent-0.7.0.tar.gz
Algorithm Hash digest
SHA256 0fa95a285cd49d204b7aba43cb2977ff7e24b75210763309742df9f17ca9095e
MD5 4f324c80bd449ac6a75fa4ffd91da1cc
BLAKE2b-256 e5ddbb7937fb149625786912fbd65434c123f8b39008c9945f4bde99d8a69679

See more details on using hashes here.

Provenance

The following attestation bundles were made for tokensaver_agent-0.7.0.tar.gz:

Publisher: release.yml on zhangtao-jayce/TokenSaver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tokensaver_agent-0.7.0-py3-none-any.whl.

File metadata

File hashes

Hashes for tokensaver_agent-0.7.0-py3-none-any.whl
Algorithm Hash digest
SHA256 38ea4acd966f1fc91c23f9994ec7ca0dd0e301694a7f9548bbc2de95d7a8e42d
MD5 c8af5179d694ecdd5e37b20074fa9df2
BLAKE2b-256 144c1ddfdcbaee88743d77a85bb03bbd866724e0a6f8bee43652a1b39058cebf

See more details on using hashes here.

Provenance

The following attestation bundles were made for tokensaver_agent-0.7.0-py3-none-any.whl:

Publisher: release.yml on zhangtao-jayce/TokenSaver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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