Scientific Brainstorming Facilitator
Turns early-stage research ideation into a reproducible pipeline: independent generation, transparent scoring, adversarial review, and an auditable decision log.
EducationIntermediate★ 33,030⑂ 3,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
- 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.
- 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 withdecisiondeliberately left null. - 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)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the 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.
- Open a terminal (Terminal on macOS, WSL or Git Bash on Windows).
- Verify prerequisites:
git --versionandpython3 --version(Python 3.11+ is only needed for the optional bundled CLIs). - Clone the repository:
git clone https://github.com/K-Dense-AI/scientific-agent-skills.git - Create the skills directory:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r scientific-agent-skills/skills/scientific-brainstorming ~/.claude/skills/ - Confirm the copy:
ls ~/.claude/skills/scientific-brainstormingshould showSKILL.md,references/, andscripts/. - Restart Claude Code and try a prompt like "Facilitate a research brainstorming session on ..." to trigger the skill.
- (Optional) From the skill folder, run
python3 scripts/session_scaffold.py --helpto confirm the CLI utilities work.
View source on GitHub ↗License: MIT