Claude Skill MartBrowse skillsWhat is a Skill?
Back to list

Scientific Brainstorming Facilitator

Turns early-stage research ideation into a reproducible pipeline: independent generation, transparent scoring, adversarial review, and an auditable decision log.

EducationIntermediate33,0303,248AI score 8/10Last updated: Aug 9, 2026

What it does

Structures research brainstorming so that ideas, assumptions, evidence, and decisions never get blurred together:

  • Scoping: one focal question plus decision owner, constraints, out-of-scope topics, prohibited outputs, and whether human subjects, animals, sensitive data, pathogens, or dual-use tech are implicated
  • Independent-first generation: private, parallel idea writing before anyone sees peer or AI examples (avoids production blocking and anchoring)
  • Provenance capture: every idea gets an ID, contributor, stage (independent / discussion / post-check), and origin (human, AI-assisted, literature-inspired, mixed)
  • Transparent evaluation: criteria, scale anchors, and weights defined before scoring; raw ratings, uncertainty ranges, dissent, and abstentions stay visible
  • Adversarial review: a non-originator asks what would falsify the idea, what alternative explanation fits, what confounder or measurement failure could dominate
  • Gates and decision log: feasibility, rigor, ethics, biosafety, and dual-use gates that a high creativity score can never override
  • Optional local CLIs: session_scaffold.py, validate_register.py, evaluate_matrix.py — deterministic, standard-library only, no network or LLM calls

It explicitly refuses to validate hypotheses, and hands off to hypothesis-generation, experimental-design, statistical-power, literature-review, and statistical-analysis.

Who it's for

  • Grad students, postdocs, and PIs choosing and prioritizing research directions
  • Facilitators running lab meetings or research workshops who want less bias and a paper trail
  • Grant-writing teams narrowing many candidate aims with documented reasoning
  • R&D groups that need an auditable record of how an idea was selected

Example uses

  1. Run a lab meeting: "Design a brainstorming session on mechanisms linking gut microbiome composition to metabolic phenotype." → returns a neutral prompt, timed private-writing round, round-robin sharing script, and clustering rules.
  2. Prioritize a candidate list: give it 12 ideas and your criteria; it builds a weighted matrix (information gain, originality vs. checked literature, feasibility, ethics burden), runs one-at-a-time weight sensitivity via evaluate_matrix.py, and returns a shortlist with decision deliberately left null.
  3. Red-team a favorite hypothesis: it generates the falsification questions, alternative explanations, hidden-dependency checks, and a template recording mitigation plus residual uncertainty rather than a pass/fail stamp.

· · · Install guide · · ·

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the skills/scientific-brainstorming folder from the GitHub repo K-Dense-AI/scientific-agent-skills into my ~/.claude/skills/scientific-brainstorming/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/K-Dense-AI/scientific-agent-skills.git && mkdir -p ~/.claude/skills && cp -r scientific-agent-skills/skills/scientific-brainstorming ~/.claude/skills/

This is a third-party skill. Check the source repository before installing.

  1. Open a terminal (Terminal on macOS, WSL or Git Bash on Windows).
  2. Verify prerequisites: git --version and python3 --version (Python 3.11+ is only needed for the optional bundled CLIs).
  3. Clone the repository: git clone https://github.com/K-Dense-AI/scientific-agent-skills.git
  4. Create the skills directory: mkdir -p ~/.claude/skills
  5. Copy the skill: cp -r scientific-agent-skills/skills/scientific-brainstorming ~/.claude/skills/
  6. Confirm the copy: ls ~/.claude/skills/scientific-brainstorming should show SKILL.md, references/, and scripts/.
  7. Restart Claude Code and try a prompt like "Facilitate a research brainstorming session on ..." to trigger the skill.
  8. (Optional) From the skill folder, run python3 scripts/session_scaffold.py --help to confirm the CLI utilities work.