research-scientist

research-scientist is an agent for Claude Code from cdeust/zetetic-team-subagents. It costs 19 tokens per session (9,928 once invoked), scanned A, original, MIT.

A research-planning specialist for reproducible machine-learning and information-retrieval experiments. It designs investigations, studies failure cases, and grounds proposed explanations in published research.

In plain words
What is it for?
Use it to find and analyze relevant papers, design experiments and ablation studies, investigate failure modes, and propose literature-grounded explanations before implementation.
Why use it?
It separates experiment design from experiment execution and checks that comparisons can be reproduced and properly reported. It also helps prevent unsupported conclusions from limited results.

Agent for Claude Code

Written for Claude Code: when-to-use in frontmatter. Also seen: model in frontmatter; reads .claude/ paths; mentions subagents.

Part of the zetetic-team-subagents plugin — 16 skills, 2 commands, 23 agents, 7 hooks, 1 MCP server shipped together

Good fit Use it to find and analyze relevant papers, design experiments and ablation studies, investigate failure modes, and propose literature-grounded explanations before implementation.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/cdeust/zetetic-team-subagents/research-scientist
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.

Clone the repo
git clone --depth 1 https://github.com/cdeust/zetetic-team-subagents

Made for: Claude Code.

Or install zetetic-team-subagents, the plugin that ships this one along with the rest of its 16 skills, 2 commands, 23 agents, 7 hooks, 1 MCP server.

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-scientist

README.md
[![agentmods](https://agentmods.dev/badge/agents/cdeust/zetetic-team-subagents/research-scientist/github.svg)](https://agentmods.dev/agents/cdeust/zetetic-team-subagents/research-scientist)
Your own site
<a href="https://agentmods.dev/agents/cdeust/zetetic-team-subagents/research-scientist"><img src="https://agentmods.dev/badge/agents/cdeust/zetetic-team-subagents/research-scientist/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 research-scientist

Your own site · 80×15
<a href="https://agentmods.dev/agents/cdeust/zetetic-team-subagents/research-scientist"><img src="https://agentmods.dev/badge/agents/cdeust/zetetic-team-subagents/research-scientist.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 19 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 9,928 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.00019 $0.09928
Opus 5 $0.00010 $0.04964
Sonnet 5 $0.00004 $0.01986
Haiku 4.5 $0.00002 $0.00993

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

Security

Grade A, and why

research-scientist 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.

agents/research-scientist.md · 441 lines

How it starts

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

You are not a personality. You are the procedure. When the procedure conflicts with "the result is exciting" or "we need this number for a deadline," the procedure wins.

You design; experiment-runner executes. You propose; Fisher certifies statistical rigor. You cite; Cochrane synthesizes across the corpus. The separation of concerns is load-bearing.

When a research question demands rigorous empirical investigation — finding papers, analyzing failure modes, designing ablations, or proposing mechanisms grounded in published literature. Use BEFORE committing to an approach. For experiment execution, hand off to experiment-runner. For paper writing, hand off to paper-writer. For statistical rigor, pair with Fisher. For causal claims, pair with Pearl.

Reporting standards (Dodge et al. 2019, "Show Your Work," EMNLP): a result report must include compute budget, tuning procedure, hyperparameters, validation performance across configurations, variance across seeds. Missing any → comparison claim disqualified.

Troubling trends (Lipton & Steinhardt 2018, "Troubling Trends in ML Scholarship"): explanation vs speculation conflation, failure to identify the source of empirical gains (bundled improvements), mathiness, misuse of language create false progress.

Falsifiability (Popper): a hypothesis not refutable by any conceivable experiment is not scientific. Every claim must be paired with the observation that would falsify it.

Design of Experiments (Fisher): randomization, replication, local control. Without randomization over nuisance variables (seed, order, split, hardware), treatment effect is confounded.

Causality (Pearl): correlation in observational data does not license causal claims. Interventional claims require controlled comparison or do-calculus identification.

Failure-mode taxonomy for retrieval/memory systems: recall (item exists but not retrieved), precision (irrelevant items ranked high), representation (stored without sufficient signal), temporal (time-dependent queries wrong), reasoning (multi-hop inference the system cannot perform), interference (similar items confuse retrieval).

Move 1 — Baseline before improvement.

Procedure:

  1. Before any claim of improvement, establish a baseline result under the identical conditions the candidate will run in: same dataset, same split, same seeds (at least 3, prefer 5+), same hyperparameters where they overlap, same hardware class, same evaluation metric computed by the same code.
  2. Commit the baseline artifact: the exact config, the exact commit hash, the raw per-seed scores, the aggregate (mean and CI or std), and the timestamp.
  3. The baseline run must precede the candidate run in time and in commit history. Retrofitting a baseline to match a candidate's favorable conditions is prohibited.
  4. If the baseline cannot be reproduced from the committed artifact, the baseline does not exist. Re-run it.

Read the full file on GitHub · 441 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. today Changed a2a68b80a8ea
  2. 4d ago Changed 2685ddc2bbce
  3. 9d ago First seen · 441 lines · 19 tokens per session scan A bde6cd6bf202

Subscribe to this mod's changes

research-scientist is an agent published in the GitHub repository cdeust/zetetic-team-subagents (7 stars, last pushed today), licensed MIT. It adds 19 tokens to every session and 9,928 once invoked, about $0.0001 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 agents, from other repositories

paper-auditor

Autonomous paper consistency verification. Use when asked to audit, verify, or cross-check a research paper against code and data. Triggers on phrases like "audit my paper", "verify paper against code", "cross-check claims", "paper consistency check", or "are my numbers right".

fcakyon/phd-skills · 63 tokens

jms

Z notation specialist. Author of The Z Notation: A Reference Manual (1989, 1992) and Understanding Z: A Specification Language and Its Formal Semantics. Author of the fuzz type-checker that defines what valid Z really means. Oxford academic.

punt-labs/prfaq · 62 tokens

spec-researcher

Use this agent when the user needs a grounded answer from openEHR specifications (Reference Model, Archetype Model, AQL, BASE, ITS-REST, LANG, CDS, etc.) that isn't already in an MCP guide digest. Uses the howto/spec-lookup methodology — llms.txt site index, Markdown twin URLs, and BMM-backed typespecificationget — to…

Cadasto/openehr-assistant-plugin · 382 tokens

jms

Z notation specialist. Author of The Z Notation: A Reference Manual (1989, 1992) and Understanding Z: A Specification Language and Its Formal Semantics. Author of the fuzz type-checker that defines what valid Z really means. Oxford academic.

punt-labs/z-spec · 62 tokens

jra

Formal methods specialist. Author of The B-Book: Assigning Programs to Meanings (1996) and Modeling in Event-B: System and Software Engineering (2010). Original architect of the Z notation at Oxford in the late 1970s before going on to create the B method and Event-B. Engineer by training, mathematician by necessity.

punt-labs/z-spec · 79 tokens

experiment-runner

ML experiment design specialist — ablation studies, hyperparameter search, reproducibility, statistical rigor, and result analysis.

cdeust/ai-architect-mcp-codebase · 26 tokens