NanoResearch Ideation (Literature Search & Hypothesis Generation)
Searches arXiv and Semantic Scholar, analyses research gaps, and proposes novel hypotheses for a given topic.
What it does
Give it a research topic and Claude runs this pipeline:
- Generates 5–8 diverse search queries from the topic
- Searches arXiv and Semantic Scholar
- Deduplicates and ranks papers by relevance
- Analyses the collected papers to identify research gaps
- Proposes 2–4 novel hypotheses that address those gaps
- Picks the most promising hypothesis with a justification
Everything is written to papers/ideation_output.json — paper metadata, survey summary, gap analysis, and the hypothesis list — so downstream steps can reuse it.
Who it's for
- Graduate students and researchers hunting for a thesis direction
- Anyone who needs a fast sweep of prior work to find a differentiator
- People drafting research proposals or R&D plans
Examples
- "Survey recent work on long-term memory for LLM agents and list what nobody has solved yet"
- Run three candidate thesis topics and compare hypothesis quality and prior-work density
- Use the generated
ideation_output.jsonto draft the Related Work section of a proposal
Prerequisite: arXiv / Semantic Scholar search tools (e.g. via MCP) must be connected to Claude Code.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/OpenRaiser/NanoResearch/HEAD/skills/nanoresearch-ideation/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
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/nanoresearch-ideation folder from the GitHub repo OpenRaiser/NanoResearch into my ~/.claude/skills/nanoresearch-ideation/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/OpenRaiser/NanoResearch.git && mkdir -p ~/.claude/skills && cp -r NanoResearch/skills/nanoresearch-ideation ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repo:
git clone https://github.com/OpenRaiser/NanoResearch.git - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r NanoResearch/skills/nanoresearch-ideation ~/.claude/skills/ - Connect arXiv / Semantic Scholar search tools to Claude Code (see the repo README for MCP/tool setup).
- Restart Claude Code and ask: "Use nanoresearch-ideation to survey '<topic>' and generate hypotheses".
- Check that
papers/ideation_output.jsonwas created in your working directory.