research-experiments

research-experiments is a skill for Claude Code from fbabelle/PrettySeriousResearcher. It costs 62 tokens per session (5,115 once invoked), scanned A, original, Apache-2.0.

A research-experiment planning skill for testing AI or finance systems, including comparisons called ablation studies. It focuses on small preliminary tests, rate limits, reproducible run plans, and recording token use and cost.

In plain words
What is it for?
It helps smoke-test paid APIs, measure token lengths and latency, design comparison matrices and baselines, plan resumable runs, and track experiment costs.
Why use it?
It finds service limits and timing problems early, before a large experiment spends significant time or money.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

Part of the research-paper-skills plugin — 17 skills shipped together

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.

agentmods
npx agentmods add skills/fbabelle/prettyseriousresearcher/research-experiments
Any agent
npx skills add fbabelle/PrettySeriousResearcher --skill research-experiments
Clone the repo
git clone --depth 1 https://github.com/fbabelle/PrettySeriousResearcher

Made for: Claude Code.

Or install research-paper-skills, the plugin that ships this one along with the rest of its 17 skills.

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 research-experiments

README.md
[![agentmods](https://agentmods.dev/badge/skills/fbabelle/prettyseriousresearcher/research-experiments.svg)](https://agentmods.dev/skills/fbabelle/prettyseriousresearcher/research-experiments)
Your own site
<a href="https://agentmods.dev/skills/fbabelle/prettyseriousresearcher/research-experiments"><img src="https://agentmods.dev/badge/skills/fbabelle/prettyseriousresearcher/research-experiments.svg" alt="Measured on agentmods" height="20"></a>
Per session 62 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,115 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00062 $0.05115
Opus 5 $0.00031 $0.02558
Sonnet 5 $0.00012 $0.01023
Haiku 4.5 $0.00006 $0.00511

Measured today against content hash 4d33c83376b7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

research-experiments 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 today.

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.

.claude/skills/research-experiments/SKILL.md · 80 lines

How it starts

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

Phase 3 — Experiments & ablations

Where the claims get tested and 30% of effort (and most variable cost) lands. The deliverable is evidence: a clean ablation matrix, honest baselines, and results that survive scrutiny — produced on local hardware under real rate limits and a finalized budget. Apply the full experimental-rigor protocol before the full run and again during reporting.

Step 1 — Pre-flight smoke tests = boundary calibration (do this BEFORE any full run)

A smoke test here is not "does it run once" — it discovers the operating envelope and proves robustness, especially for cost-triggered services (LLM APIs, data-vendor APIs). Run it small and cheap, then read off:

  • Boundary discovery per service. Measure the real input/output token-length distribution for the actual call scenarios — set max_tokens from measurement, not a guess. Distinguish reasoning models (much larger output budgets, longer/variable latency — verify against the provider's current official model/API documentation) from standard ones. Record per-call latency and timeout tolerances for the specific models/providers in this project.
  • Meaningfulness checks. Confirm function-calling / prompt framings return useful, parseable data on the large majority of calls. Measure and drive down parse-failure and excessive-retry rates; fix schemas/framings until results are reliable. A run that mostly retries or returns garbage is wasted budget.
  • Config robustness. Validate configs across the scenario spread — long vs short inputs, rate-limit bursts, partial failures, empty/degenerate responses — with sane backoff and retry caps.
  • Outputs feed two consumers. The measured I/O sizes + latencies + failure rates refine (a) the throttled/resumable run plan below and (b) the cost estimate that research-tracking uses for the budget-finalization gate. Record a go/no-go summary before the full run is authorized.
  • A mock/fault-injection battery is necessary, not sufficient. Run it first (free: every role × every injected failure mode → a recovery matrix with valid fallbacks), then run a live battery of real calls per (model × role) with realistic contexts under a hard USD cap — only real calls reveal provider contracts. Earned: an all-green mock matrix was followed by three defects in the first 30 real calls: (i) reasoning-capable models spend the output budget on hidden reasoning and return an empty body with finish_reason=length (classify as truncation → grow the budget; never "fix" it by disabling reasoning — see research-code-review); (ii) structured-output schemas must sit in the intersection of provider constraints (strict modes want every property declared and required with nullable unions for "optional"; some providers reject an array-of-objects nested in an array-of-objects — keep depth-2 free-form data as strings) and be A/B-verified per provider; (iii) per-cell breaker resets in a battery so one dead role does not hide the others. Start output budgets generous and unified (largest observed need + headroom) and narrow from measured maxima; if the provider does not itemise reasoning tokens, budget and price on total output.
  • Validity is not quality — plant ground truth before pinning any capability knob. A live battery's first-try-valid rate measures engineering health, not decision quality (with reasoning effectively off, every role still returned schema-valid answers), so it cannot choose an effort level, a model or a prompt version. Build a small planted-truth case bank per role (cases with a known cause, a transparent oracle for allocations, an ambiguous case whose right answer is abstain), score QUALITY against it, and run every knob that was pinned by argument (reasoning effort, context size, memory arm) as a sweep with the selection rule stated before the data — and its bias: with ~10 calls per cell a "within one SE of the best" rule defaults to the cheap level on ties, so print the argmax and the full table too, and treat a monotone gradient as the trigger for a confirmatory run on that role only. Agent-authored code is scored by running it in a subprocess sandbox on synthetic worlds (discrimination + robustness to empty/NaN input), never by static checks alone; keep the prompt's worked examples out of the case bank — a case that mirrors the example measures copying, not the capability. Earned: effort pins were "high by argument"; the first sweep showed flat quality on allocation roles at 3× the cost and latency, a gradient only on diagnosis, and one probe case contaminated by the prompt's own example. Three follow-ups the first sweep needed: (i) a flat curve on an easy case bank is not evidence — add a difficulty ladder (graded signal, fewer post-event points, an unsynchronised distractor cue) so accuracy can leave the ceiling; (ii) run a manipulation check first — a task with exact answers where the knob must show (puzzles for reasoning effort): if tokens and accuracy do not move, the setting is not reaching the model (one vendor's levels were inert through the aggregator) and no sweep on it means anything; (iii) the unit of analysis is model × setting, not role × setting — the same knob bent one model's curve and left another's byte-identical, so pin per role only after checking per model, and record a per-vendor table as the alternative.

Read the full file on GitHub · 80 lines

Files

What ships with it

1 file 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. today Changed · +8 lines 4d33c83376b7
  2. 5d ago First seen · 72 lines · 62 tokens per session scan A d051965f2b98

Subscribe to this mod's changes

research-experiments is a skill published in the GitHub repository fbabelle/PrettySeriousResearcher (2 stars, last pushed today), licensed Apache-2.0. It adds 62 tokens to every session and 5,115 once invoked, about $0.0003 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-31.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

next-partial-prefetching-adoption

Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…

vercel/next.js · 103 tokens

chronicle

Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…

microsoft/vscode · 72 tokens

imagegen

Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output…

openai/codex · 113 tokens