think-fermi-estimation

think-fermi-estimation is a skill for Claude Code from product-on-purpose/thinking-framework-skills. It costs 144 tokens per session (1,771 once invoked), scanned A, original, Apache-2.0.

A worksheet method for estimating a number when no reliable data or comparison exists. It breaks the unknown into smaller guesses, multiplies them, and shows a low-to-high range.

In plain words
What is it for?
Use it for unfamiliar quantities such as market size or total system load when you cannot look up the answer, including an independence check for the assumptions.
Why use it?
It makes a large guess easier to inspect and shows which assumption contributes most to the uncertainty.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the thinking-framework-skills plugin — 68 skills, 10 commands, 1 agent shipped together

Good fit Use it for unfamiliar quantities such as market size or total system load when you cannot look up the answer, including an independence check for the assumptions.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/product-on-purpose/thinking-framework-skills/think-fermi-estimation
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add product-on-purpose/thinking-framework-skills --skill think-fermi-estimation
Clone the repo
git clone --depth 1 https://github.com/product-on-purpose/thinking-framework-skills

Made for: Claude Code.

Or install thinking-framework-skills, the plugin that ships this one along with the rest of its 68 skills, 10 commands, 1 agent.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for think-fermi-estimation

README.md
[![agentmods](https://agentmods.dev/badge/skills/product-on-purpose/thinking-framework-skills/think-fermi-estimation/github.svg)](https://agentmods.dev/skills/product-on-purpose/thinking-framework-skills/think-fermi-estimation)
Your own site
<a href="https://agentmods.dev/skills/product-on-purpose/thinking-framework-skills/think-fermi-estimation"><img src="https://agentmods.dev/badge/skills/product-on-purpose/thinking-framework-skills/think-fermi-estimation/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for think-fermi-estimation

Your own site · 80×15
<a href="https://agentmods.dev/skills/product-on-purpose/thinking-framework-skills/think-fermi-estimation"><img src="https://agentmods.dev/badge/skills/product-on-purpose/thinking-framework-skills/think-fermi-estimation.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 144 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,771 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00144 $0.01771
Opus 5 $0.00072 $0.00886
Sonnet 5 $0.00029 $0.00354
Haiku 4.5 $0.00014 $0.00177

Measured 10d ago against content hash ad160fc091e9, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

think-fermi-estimation scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/think-fermi-estimation/SKILL.md · 68 lines

How it starts

The opening of the file, as written. The whole thing — 68 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Fermi Estimation

Sometimes you need a number and there is nothing to look up: no dataset, no genuine reference class, no precedent to borrow. A single all-at-once guess at the whole magnitude is badly anchored and hides its own uncertainty. The Fermi move is to factor the unknown into a short chain of sub-quantities - each one small and familiar enough to guess to within a factor - then multiply the chain back into an estimate and compound the per-factor bands into a low/high range. The reason it can beat one wild guess is partial error cancellation: if the per-factor errors are roughly independent and centered, over-guessing one factor and under-guessing another tend to offset in the product. The output is a Fermi decomposition worksheet, not a lone number. The honest constraint: the cancellation only works when the factors are independent, and the benefit is real mainly for large, unfamiliar quantities - not ordinary ones you could estimate directly.

When to Use

  • You need a numeric magnitude and no lookup-able data and no genuine reference class exists, so the number has to be built from factors.
  • The quantity is large and unfamiliar (market size, total load, total cost, a conversion count you cannot look up) - the regime where decomposition actually helps.
  • An order-of-magnitude answer with an honest band is useful for sizing, sanity-checking, or triage; the number does not have to be exact.
  • You want the estimate inspectable: each factor, its basis, and its band exposed so a reader can challenge one number, not an opaque total.

When NOT to Use

  • A genuine reference class with real base-rate data exists. Then anchor on that data, not on invented factors - use think-reference-class-forecasting. Fermi is precisely the build-from-factors method for when no such class exists; if you have real base rates, reference-class forecasting is strictly better.
  • The task only needs the question decomposed for coverage, not a number. If you want a mutually-exclusive, collectively-exhaustive breakdown of a question and explicitly no estimate, use think-issue-tree, which produces a tree and produces no number. Fermi exists to produce a number; do not use it when a number is not wanted.
  • The quantity is ordinary and familiar. Decomposing something you could estimate directly adds noise; the decomposition benefit was absent or negative in that regime (see evidence/dossier.md).
  • The factors share a driver (correlated). Multiplicative error-cancellation fails when factors move together; the chain can be worse than one careful guess. Flag it and restructure to independent factors, or stop.
  • Never emit a point estimate with no low/high band. A Fermi number without its range hides the uncertainty the method exists to expose.

Read the full file on GitHub · 68 lines

Files

What ships with it

5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 68 lines · 144 tokens per session scan A ad160fc091e9

Subscribe to this mod's changes

think-fermi-estimation is a skill published in the GitHub repository product-on-purpose/thinking-framework-skills (15 stars, last pushed 24d ago), licensed Apache-2.0. It adds 144 tokens to every session and 1,771 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

academic-deep-research

Transparent, rigorous research with full methodology — not a black-box API wrapper. Conducts exhaustive investigation through mandated 2-cycle research per theme, APA 7th citations, evidence hierarchy, and 3 user checkpoints. Self-contained using native OpenClaw tools (websearch, webfetch, sessionsspawn). Use for…

LeoYeAI/openclaw-master-skills · 85 tokens

aclawdemy

The academic research platform for AI agents. Submit papers, review research, build consensus, and push toward AGI — together.

LeoYeAI/openclaw-master-skills · 30 tokens

adme-property-predictor

Predict ADME (Absorption, Distribution, Metabolism, Excretion) properties for drug candidates using cheminformatics models and molecular descriptors. Evaluates drug-likeness, bioavailability, and pharmacokinetic profile to guide lead optimization and candidate selection in drug discovery.

LeoYeAI/openclaw-master-skills · 61 tokens

literature-reviewer-skill

A workflow for finding, checking, analyzing, and reviewing academic papers in Chinese and English. It uses browser automation to search databases such as CNKI, Web of Science, ScienceDirect, and PubMed, then exports citations and review documents.

LeoYeAI/openclaw-master-skills · 147 tokens

academic-research-hub

Use this skill when users need to search academic papers, download research documents, extract citations, or gather scholarly information. Triggers include: requests to "find papers on", "search research about", "download academic articles", "get citations for", or any request involving academic databases like arXiv…

LeoYeAI/openclaw-master-skills · 100 tokens

astro-dso-doc

Generates a complete, polished HTML documentation page, a processing checklist, an AstroBin post JSON, a PixInsight process icon set (XPSM), AND a ready-to-paste PixInsight project Description field for a deep-sky object (DSO) astrophotography project. Use this skill whenever the user mentions astrophotography, a DSO…

jjmartres/ai-coding-agents · 244 tokens