mcpbeat Sign in

Requesting Red Team Review Agent Skill

Use after completing an analysis or before reporting a finding, to have a skeptical reviewer attack the conclusion before you believe it

2k tokens
context cost
the whole folder, loaded on every use
2
files
instructions only
0
copies elsewhere
how many repositories repackaged it
280
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/K-Dense-AI/science-superpowers --skill requesting-red-team-review

The instruction itself

7 sections, as written by the author

Requesting Red-Team Review

Dispatch a reviewer subagent whose explicit job is to find why your conclusion is wrong — before you believe it or report it. The reviewer gets precisely crafted context for evaluation, never your session's history. This keeps it focused on the work product and your reasoning, not on agreeing with you, and preserves your own context.

Core principle: Try hardest to break a finding when it's most likely to be right. A result that survives a genuine attack is worth reporting; one that hasn't been attacked isn't.

When to Request Review

Mandatory:

  • After each analysis step in subagent-driven-analysis (the rigor reviewer plays this role per step)
  • After completing the full analysis, before writing it up
  • Before claiming any confirmatory finding

Especially valuable:

  • When the result is surprising, important, or convenient
  • When performance is suspiciously good (possible leakage)
  • After resolving an anomaly

How to Request

1. Get the git SHAs that bound the work:

BASE_SHA=$(git rev-parse HEAD~N)   # before the analysis
HEAD_SHA=$(git rev-parse HEAD)

2. Dispatch the reviewer subagent with the Task tool (general-purpose), filling the template at reviewer.md.

Placeholders:

  • {DESCRIPTION} — what you analyzed and the conclusion you're considering
  • {QUESTION} — the research question
  • {PREREGISTRATION} — the frozen pre-registration (or note that this is exploratory)
  • {BASE_SHA} / {HEAD_SHA} — commit range

3. Act on feedback:

  • Fix Critical issues (a confound, leakage, an assumption violation that changes the conclusion) before claiming anything
  • Address Important issues before reporting
  • Note Minor issues
  • Push back with reasoning if the reviewer is wrong — but verify first

What the Reviewer Attacks

The reviewer is prompted to look for:

  • Confounds and alternative explanations — what else could produce this result?
  • Assumption violations — does the method fit the data?
  • Data leakage — did test information contaminate the result?
  • Researcher degrees of freedom — signs of p-hacking, HARKing, or post-hoc choices
  • Multiplicity — uncorrected multiple comparisons
  • Reproducibility — does it reproduce from raw + seed?
  • Over-claiming — does the conclusion outrun the evidence (causal language from observational data, generalizing beyond the sample)?

Example

[Completed primary analysis: exposure → outcome, pre-registered]

You: Requesting red-team review before I report this.

BASE_SHA=a1b2c3d  HEAD_SHA=e4f5g6h
[Dispatch reviewer subagent with reviewer.md filled in]

Reviewer returns:
  Critical: Site is associated with both exposure and outcome but isn't in the model — likely confound (Simpson's risk).
  Important: No check of the homoscedasticity assumption.
  Minor: Figure axis unlabeled.

You: [Site WAS pre-registered as a covariate — verify the model actually included it]
[Check: the model formula dropped `site` due to a typo. Reviewer is right. Fix, re-run, re-verify.]

Red Flags

Never:

  • Skip review because the result "is obviously right"
  • Ignore a Critical issue
  • Report a finding with unresolved Important issues
  • Argue with valid methodological feedback

If the reviewer is wrong: push back with technical reasoning and show the verification (the diagnostic, the pre-registration line, the reproduced number) — see science-superpowers:receiving-critical-review.

Integration

  • science-superpowers:subagent-driven-analysis — the per-step rigor review uses this pattern
  • science-superpowers:receiving-critical-review — how to respond to what the reviewer finds
  • science-superpowers:reporting-and-archiving-findings — only after the result survives review

See template at: requesting-red-team-review/reviewer.md

Other skills for the same job

different authors, same section of the catalogue
Protocolsio Integration
by christophacham
×4

Integration with protocols.io API for managing scientific protocols. This skill should be used when working with protocols.io to search, create, update, or publish protocols; manage protocol steps and materials; handle discussions and comments; organize workspaces; upload and manage files; or integrate protocols.io functionality into workflows. Applicable for protocol discovery, collaborative protocol development, experiment tracking, lab protocol management, and scientific documentation.

16k tokens
Tailored Resume Generator
by frostant
×4

Analyzes job descriptions and generates tailored resumes that highlight relevant experience, skills, and achievements to maximize interview chances

3k tokens
Excalidraw Diagram Generator
by github
vendor ×3

Generate Excalidraw diagrams from natural language descriptions. Use when asked to "create a diagram", "make a flowchart", "visualize a process", "draw a system architecture", "create a mind map", or "generate an Excalidraw file". Supports flowcharts, relationship diagrams, mind maps, and system architecture diagrams. Outputs .excalidraw JSON files that can be opened directly in Excalidraw.

36k tokens scripts
Expo Dev Client
by openai
vendor ×3

Build and distribute Expo development clients locally or via TestFlight

961 tokens
Executing Plans
by ZhanlinCui
×3

Use when you have a written implementation plan to execute in a separate session with review checkpoints

542 tokens
Anndata
by christophacham
×3

Data structure for annotated matrices in single-cell analysis. Use when working with .h5ad files or integrating with the scverse ecosystem. This is the data format skill—for analysis workflows use scanpy; for probabilistic models use scvi-tools; for population-scale queries use cellxgene-census.

16k tokens
Benchling Integration
by christophacham
×3

Benchling R&D platform integration. Access registry (DNA, proteins), inventory, ELN entries, workflows via API, build Benchling Apps, query Data Warehouse, for lab data management automation.

14k tokens
Biopython
by christophacham
×3

Comprehensive molecular biology toolkit. Use for sequence manipulation, file parsing (FASTA/GenBank/PDB), phylogenetics, and programmatic NCBI/PubMed access (Bio.Entrez). Best for batch processing, custom bioinformatics pipelines, BLAST automation. For quick lookups use gget; for multi-service integration use bioservices.

24k tokens

How to use it

Copy the folder

Take k-dense-ai/requesting-red-team-review from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.