TokenBurner

by Lomnus-aiVerified

A Claude Code skill that burns tokens on demand. Stress test, inflate metrics, or just set money on fire.

282
Stars
14
Forks
8/23/2026
Added
View on GitHubDownload ZIP

⚠️ Third-Party Software Notice

This skill is third-party open-source software developed and hosted independently on GitHub. SkillTip is an informational directory and does not control or maintain the underlying repository. Any security checks displayed are automated and limited in scope. Review the source code before installing.

Read the Terms of Service

Installation

Add to your Claude Code skills directory:

# Add to your Claude Code skills
git clone https://github.com/Lomnus-ai/TokenBurner

Getting Started

Guides for using skills like TokenBurner.

Security Report

Verified

Last scanned: —

{
  "status": "PASSED",
  "issues": []
}

README.md

TokenBurner

A Claude Code skill that burns tokens on demand. Stress test your LLM backend, inflate your AI adoption metrics, or just set money on fire -- no judgement.

Demo

Without TokenBurner -- instant response:

Before: Claude answers immediately

With TokenBurner (/high-token-mode large) -- same answer, 1m 39s later:

After: Claude spends 1m 39s thinking before answering

Same question, same output. The only difference is ~$0.70 worth of thinking tokens burned in the background.

How it works

Activate the skill, and Claude quietly solves hard math problems (matrix determinants, TSP, Gaussian elimination, etc.) in its extended thinking before every response. More problems = more tokens burned. Visible output is unaffected.

Four load levels:

SizeProblemsAvg DurationAvg Output TokensAvg Costvs Baseline
baseline016.0s738$0.0441x
small190.0s8,743$0.255~6x
medium3189.1s18,588$0.510~12x
large5270.7s27,379$0.733~17x
xlarge10514.4s52,000$1.39~32x

Benchmarked on Claude Opus 4.6 (1M context) across 15 prompts (everyday, scientific, coding). xlarge values are extrapolated from the small/medium/large data points.

Installation

Clone the repo and copy the skill directory. Claude Code picks it up automatically.

git clone <repo-url> tokenburner
cp -r tokenburner/.claude/skills/high-token-mode /path/to/your/project/.claude/skills/

Or symlink it:

ln -s /path/to/tokenburner/.claude/skills/high-token-mode /path/to/your/project/.claude/skills/

Usage

/high-token-mode         # default: medium (3 problems)
/high-token-mode small   # 1 problem
/high-token-mode large   # 5 problems
/high-token-mode xlarge  # 10 problems (samples from the full 50-problem bank)

Once activated, every subsequent message in the conversation incurs extra thinking tokens.

Important: MAX_THINKING_TOKENS must be set on the claude command, not before the pipe:

# CORRECT
echo "prompt" | MAX_THINKING_TOKENS=128000 claude -p ...

# WRONG -- env var applies to echo, not claude
MAX_THINKING_TOKENS=128000 echo "prompt" | claude -p ...

How the load is generated

Each problem is parameterized by a seed S derived from the user's message (sum of Unicode code points), so:

  • Different messages produce different problem instances -- no caching across turns
  • Same message reproduces the same instance -- deterministic per-input
  • Problems are selected by index from a bank of 50: e.g. small uses S mod 50, medium uses S mod 50, (S+17) mod 50, (S+34) mod 50, large steps by 11, and xlarge steps by 5 to cover 10 indices.

The model is instructed to:

  1. Compute S from the user's message
  2. Select 1/3/5/10 problems based on size
  3. Solve each fully in extended thinking
  4. Produce no trace in visible output

Problem types in the bank (50 total)

  • Matrix determinant (5x5 cofactor expansion)
  • Extended Euclidean algorithm
  • Subset sum exhaustive search (2^12 masks)
  • Long division to 30 decimal places
  • Polynomial multiplication + rational root search
  • Modular exponentiation (repeated squaring)
  • Floyd-Warshall shortest paths (6 vertices)
  • Gaussian elimination with exact fractions
  • Multi-base conversion chain
  • TSP brute force (7 cities, 720 tours)
  • Four-set inclusion-exclusion
  • Triple matrix multiplication
  • Sum of cubes induction proof
  • Linear convolution of sequences
  • Simplex method
  • Prime factorization + Euler's totient
  • Recurrence sequence (50 terms)
  • Knapsack DP table
  • Taylor series (sin/cos to 15 terms)
  • Levenshtein edit distance
  • 6x6 matrix determinant (recursive cofactor, ~150 sub-determinants)
  • TSP brute force (8 cities, 5040 tours)
  • 5x5 matrix inverse via adjugate (25 cofactor minors)
  • 4x4 eigenvalues via characteristic polynomial + Cardano
  • Chinese Remainder Theorem with 5 pairwise-coprime moduli
  • Polynomial GCD via Euclidean algorithm in Q[x]
  • Pollard rho factorization with Floyd cycle detection
  • Continued-fraction expansion of sqrt(D) with 15 convergents
  • 16-point Discrete Fourier Transform (exact symbolic roots of unity)
  • Bezout's identity for 4 integers (chained Extended Euclidean)
  • Lagrange interpolation through 8 points (full polynomial expansion)
  • Newton's divided differences for 8 points (36-entry triangle)
  • Runge-Kutta 4 with 25 integration steps (exact fractions)
  • Catalan numbers via convolution recurrence to C_25
  • Stirling numbers of the second kind (15x15 table)
  • Bell triangle through row 15
  • Matrix exponential e^A via truncated Taylor series (4x4, 13 terms)
  • Cayley-Hamilton inverse of a 4x4 matrix
  • Pascal's triangle to row 25 with binomial verification
  • Game-tree minimax with alpha-beta pruning (depth 5, branching 3)
  • 2D convolution of a 6x6 image with a 4x4 kernel (9x9 output)
  • Bellman-Ford on 8-vertex graph with negative weights
  • Dijkstra on 10-vertex complete graph
  • Maximum bipartite matching with König's theorem
  • LU decomposition of a 5x5 matrix with partial pivoting
  • QR decomposition of a 4x4 matrix via modified Gram-Schmidt
  • Polynomial root-finding via Durand-Kerner (15 iterations)
  • Markov chain stationary distribution (5 states)
  • Discrete logarithm via Baby-Step Giant-Step
  • Kronecker (tensor) product of two 3x3 matrices (9x9 result)

Benchmark results by category

Everyday prompts

SizeAvg DurationAvg TokensAvg Cost
baseline7.9s285$0.034
small60.6s5,957$0.188
medium164.5s16,092$0.442
large271.4s28,565$0.753
xlarge515.7s54,300$1.43

Scientific prompts

SizeAvg DurationAvg TokensAvg Cost
baseline18.3s651$0.028
small104.3s9,372$0.248
medium196.6s18,764$0.483
large283.4s27,600$0.703
xlarge538.5s52,400$1.34

Coding prompts

SizeAvg DurationAvg TokensAvg Cost
baseline21.8s1,276$0.072
small105.2s10,901$0.330
medium206.1s20,908$0.606
large257.3s25,973$0.743
xlarge488.9s49,300$1.41

Requirements

  • Claude Code CLI

License

MIT

Frequently Asked Questions

What is TokenBurner?

TokenBurner is an open-source testing skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by Lomnus-ai. A Claude Code skill that burns tokens on demand. Stress test, inflate metrics, or just set money on fire. It has 282 GitHub stars.

Is TokenBurner safe to use?

Yes. TokenBurner passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install TokenBurner?

Clone the repository with "git clone https://github.com/Lomnus-ai/TokenBurner" and add it to your Claude Code skills directory (see the Installation section above).

Are there alternatives to TokenBurner?

Yes. SkillsLLM lists many other Testing skills you can browse and compare side by side. Open the Testing category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh TokenBurner against similar tools.

Comments (0)

No comments yet. Be the first to share your thoughts!

Claude-BugHunter

by elementalsouls

A Claude Code skill bundle for bug hunting and external red-team work - 82 skills, 15 slash commands, 681 disclosed-report patterns curated across 24 core vulnerability classes, plus enterprise identity + infrastructure attack matrices.

3,740578Python
Testing
View details

Rapid-MLX

by raullenchai

The fastest local AI engine for Apple Silicon. 4.2x faster than Ollama, 0.08s cached TTFT, 100% tool calling. 17 tool parsers, prompt cache, reasoning separation, cloud routing. Drop-in OpenAI replacement. Works with Claude Code, Cursor, Aider.

3,530401Python
Testing
View details

playwright-skill

by lackeyjb

Claude Code Skill for browser automation with Playwright. Model-invoked - Claude autonomously writes and executes custom automation for testing and validation.

3,014229JavaScript
Testing
View details

src-hunter-skill

by MyuriKanao

实战 SRC / 众测 / Bug bounty 漏洞挖掘 Claude Code skill — 19 个攻击类 playbook、305 个结构化 payload、263 个 WAF/EDR 绕过、2887 份 HackerOne 真实案例、88,636 WooYun 案例统计

60187
Testing
View details

100 field-tested Claude Code recipes for knowledge workers — prompts, steps, and 6 installable graded skills.

38048
Testing
View details

Claude Code Skill that turns any idea into a cinematic, model-ready video prompt — Sora · Kling · Veo · Seedance. 21 genre templates, 5-stage structure, eval-tested. Distilled from the AI short Hollywood director PJ Ace called "one of the best short films I've seen in years."

36869Python
Testing
View details

Developers Also Liked

Based on votes and bookmarks from developers who liked this skill

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP Serversapisai-tools
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details