cambridge-beer-festival-app: Skill for Claude Code

.claude/skills/proof-and-analysis-toolkit/SKILL.md

proof-and-analysis-toolkit is a skill for Claude Code from richardthe3rd/cambridge-beer-festival-app. It costs 216 tokens per session (6,472 once invoked), scanned A, original, MIT.

A proof-focused analysis toolkit for the Cambridge Beer Festival app. It provides recipes for checking real data shapes, decoding minified web-release crashes, and investigating asynchronous or shared-state code.

In plain words
What is it for?
Use it before changing schema parsing, status mappings, crash diagnosis, unawaited futures, or shared mutable state in that codebase.
Why use it?
It replaces assumptions with measured evidence, such as counted data values, matched stack frames, or tested predictions.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: mentions AGENTS.md.

This is richardthe3rd/cambridge-beer-festival-app's own configuration. It tells Claude Code how to work on cambridge-beer-festival-app itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything cambridge-beer-festival-app configures →

Reuse

Borrowing it

Nothing to install: this file belongs to richardthe3rd/cambridge-beer-festival-app. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/richardthe3rd/cambridge-beer-festival-app/main/.claude/skills/proof-and-analysis-toolkit/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/richardthe3rd/cambridge-beer-festival-app

Made for: Claude Code.

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 proof-and-analysis-toolkit

README.md
[![agentmods](https://agentmods.dev/badge/skills/richardthe3rd/cambridge-beer-festival-app/proof-and-analysis-toolkit/github.svg)](https://agentmods.dev/skills/richardthe3rd/cambridge-beer-festival-app/proof-and-analysis-toolkit)
Your own site
<a href="https://agentmods.dev/skills/richardthe3rd/cambridge-beer-festival-app/proof-and-analysis-toolkit"><img src="https://agentmods.dev/badge/skills/richardthe3rd/cambridge-beer-festival-app/proof-and-analysis-toolkit/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 proof-and-analysis-toolkit

Your own site · 80×15
<a href="https://agentmods.dev/skills/richardthe3rd/cambridge-beer-festival-app/proof-and-analysis-toolkit"><img src="https://agentmods.dev/badge/skills/richardthe3rd/cambridge-beer-festival-app/proof-and-analysis-toolkit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 216 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,472 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00216 $0.06472
Opus 5 $0.00108 $0.03236
Sonnet 5 $0.00043 $0.01294
Haiku 4.5 $0.00022 $0.00647

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

Security

Grade A, and why

proof-and-analysis-toolkit scanned grade A with 1 finding 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 12d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

description: First-principles analysis recipes for the Cambridge Beer Festival app — "prove it, don't just install it." Load before trusting or changing API-field parsing/schema code, before building the proof/forensic m
.claude/skills/proof-and-analysis-toolkit/SKILL.md · 440 lines

How it starts

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

Proof and Analysis Toolkit

Doctrine: a claim about this codebase is not true because it sounds plausible, because a doc says so, or because a past PR title implies it — it is true because you counted, decoded, or modeled it yourself and the numbers came out the way your model predicted. Every recipe below ends in a number, a matched frame, or a written prediction that either held or didn't — never in "should be fine."

Six recipes. Each has: when to use, steps, a worked example from this repo's real history (issue/PR numbers you can hand to gh issue view or grep the CHANGELOG for), and what counts as proof.


Recipe 1 — Empirical data census

When to use: before writing or trusting any fromJson branch, before believing a claim like "field X is always a string," before changing a status/enum mapping, or before filing a bug that assumes one festival's data shape applies to all festivals.

Why it matters here: the live feeds at data.cambeerfestival.app are described in AGENTS.md as having type-union fields (abv, allergens, year_founded, bar) — but a union described in prose can silently be wrong, incomplete, or stale. The only way to know what a field actually does is to fetch every festival/category combination and count.

Steps

  1. List the categories to check: beer, cider, perry, mead, wine, international-beer, low-no, apple-juice (see lib/models/beverage_categories.dart), scoped to whichever festival(s) matter — check available_beverage_types in data/festivals.json first, since per-festival unions differ (a winter festival may omit categories a summer one has, or use different vocabulary in free-text fields).
  2. Fetch each {festivalId}/{category}.json — the shape is {"producers": [...], "timestamp": ...}, NOT a bare array (verify this before assuming the top-level type; see lib/services/beer_api_service.dart:110-127, parseProducers).
  3. Run a jq group_by(type) census over every field you're about to parse or change.
  4. Compare across at least two festivals from different seasons before concluding a union is "always X" — a summer-only sample under-counts winter-only vocabulary (or vice versa).
  5. State the conclusion as a fraction, never a vibe: "branch X fires in N/M records" or "never fires in N/M records — candidate dead code" or "genuinely mixed — keep the branch."

Read the full file on GitHub · 440 lines

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. 12d ago First seen · 440 lines · 216 tokens per session scan A ac417a9bb3d9

Subscribe to this mod's changes

proof-and-analysis-toolkit is a skill published in the GitHub repository richardthe3rd/cambridge-beer-festival-app (2 stars, last pushed yesterday), licensed MIT. It adds 216 tokens to every session and 6,472 once invoked, about $0.0011 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

debug-optimize-lcp

Guides debugging and optimizing Largest Contentful Paint (LCP) using Chrome DevTools MCP tools. Use this skill whenever the user asks about LCP performance, slow page loads, Core Web Vitals optimization, or wants to understand why their page's main content takes too long to appear. Also use when the user mentions…

ChromeDevTools/chrome-devtools-mcp · 99 tokens

systematic-debugging

Use when debugging a failing test, build error, or runtime issue that isn't immediately obvious. Guides a 4-phase root cause analysis instead of random fix attempts.

open-metadata/OpenMetadata · 37 tokens

diagnose

Trace from a reproduced symptom to the source code that causes it. Pin the specific file and approximate line, rate confidence in the cause and clarity of the fix independently, and always propose a concrete fix.

emdash-cms/emdash · 43 tokens

repro-admin

Reproduce an EmDash admin UI bug. Attach a container, start the demo dev server, drive the admin with agent-browser using the dev-bypass session, and capture the reproduction as screenshots plus a replayable transcript.

emdash-cms/emdash · 48 tokens

log-error-digest

Analyze log files to troubleshoot errors, identify peak error periods, and produce error clustering, frequency statistics, and time distribution reports. Supports JSON, syslog, and Nginx formats with automatic detection. Use when a user uploads a .log file and asks to analyze errors, find patterns, debug issues, or…

zebbern/claude-code-guide · 71 tokens

byted-util-volcengine-detect-retry

An orchestration workflow for Volcengine Cloud Detect, a service that checks websites or network endpoints from test locations.

bytedance/agentkit-samples · 101 tokens