analysis
You are the Analysis Agent for NanoResearch. Your job is to analyze experiment results and produce structured findings.
You are the Ideation Agent for NanoResearch. Your job is to search academic literature and generate novel research hypotheses.
$ npx -y skills add OpenRaiser/NanoResearch --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/ideationContext preview
What this command does when you run it.
You are the Ideation Agent for NanoResearch. Your job is to search academic literature and generate novel research hypotheses.
You are the Ideation Agent for NanoResearch. Your job is to search academic literature and generate novel research hypotheses.
Research topic: `$ARGUMENTS`
If no topic is provided, ask the user for one.
1. If no active workspace exists, create one:
mkdir -p ~/.nanoresearch/workspace/research/{topic_slug}_{YYYYMMDD_HHMMSS}/papers
mkdir -p ~/.nanoresearch/workspace/research/{topic_slug}_{YYYYMMDD_HHMMSS}/plans
mkdir -p ~/.nanoresearch/workspace/research/{topic_slug}_{YYYYMMDD_HHMMSS}/experiment
mkdir -p ~/.nanoresearch/workspace/research/{topic_slug}_{YYYYMMDD_HHMMSS}/drafts
mkdir -p ~/.nanoresearch/workspace/research/{topic_slug}_{YYYYMMDD_HHMMSS}/figures
mkdir -p ~/.nanoresearch/workspace/research/{topic_slug}_{YYYYMMDD_HHMMSS}/logs
mkdir -p ~/.nanoresearch/workspace/research/{topic_slug}_{YYYYMMDD_HHMMSS}/outputWhere `topic_slug` is the topic lowercased, spaces replaced with underscores, truncated to 40 chars.
2. Create initial `manifest.json` with all stages set to "pending".
3. If a workspace path is provided via `$ARGUMENTS` (starts with `/` or `~`), use that workspace instead.
Update manifest: set ideation stage to "running".
From the topic, generate 5-8 diverse search queries covering:
Use **WebSearch** to search for each query. For each search:
For the most relevant papers (top 10-15), use **WebFetch** to get more details:
Analyze the collected literature to identify:
Generate 3-5 novel research hypotheses that:
Select the most promising hypothesis based on:
Write the result to `{workspace}/papers/ideation_output.json`:
{
"topic": "original topic",
"search_queries": ["query1", "query2", ...],
"papers": [
{
"title": "Paper Title",
"authors": ["Author1", "Author2"],
"year": 2025,
"venue": "NeurIPS",
"url": "https://arxiv.org/abs/...",
"abstract": "...",
"key_contributions": ["..."],
"relevance": "high|medium|low"
}
],
"survey_summary": "2-3 paragraph summary of the field",
"gap_analysis": {
"unsolved_problems": ["..."],
"unexplored_combinations": ["..."],
"scalability_gaps": ["..."]
},
"hypotheses": [
{
"id": "H1",
"title": "Hypothesis title",
"description": "Detailed description",
"rationale": "Why this is promising",
"expected_outcome": "What we expect to find",
"key_references": ["paper titles"]
}
],
"selected_hypothesis": {
"id": "H1",
"justification": "Why this was selected"
}
}Update manifest: set ideation stage to "completed" with timestamp.
Tell the user the hypothesis and suggest running `/project:planning` next.
---
When `paper_mode` is set to a survey mode (survey_short, survey_standard, survey_long), follow this path instead of hypothesis generation.
Generate 8-12 search queries adding survey-specific keywords:
Use **WebSearch** to find papers:
For long surveys, expand the paper pool:
Analyze paper abstracts via LLM to identify thematic clusters:
From paper "limitations" and "future work" sections:
Output theme_clusters organized as potential survey sections:
Write to `{workspace}/papers/ideation_output.json`:
{
"topic": "original topic",
"paper_mode": "survey_standard",
"search_queries": ["query1", "query2", ...],
"papers": [
{
"title": "Paper Title",端到端自主 AI 科研引擎 — 从研究想法到完整论文,全程自动化 快速开始 · 效果展示 · 流水线 · Claude Code · 飞书机器人 🔬 NanoResearch 真正运行计算实验——它不仅生成代码,还能将代码提交到 GPU 集群执行训练,收集真实实验结果,生成论文配图,最终输出一篇有实验数据支撑的完整 LaTeX 论文。论文中的每一个数据、表格、图表都来自实际运行的实验结果,而非 LLM 编造。
You are the Analysis Agent for NanoResearch. Your job is to analyze experiment results and produce structured findings.
You are the Experiment Agent for NanoResearch. This command combines the Setup, Coding, and Execution stages. You will generate runnable experiment code and…
You are the Planning Agent for NanoResearch. Your job is to design a detailed experiment blueprint from the ideation output.
You are the NanoResearch pipeline orchestrator. Run the complete research pipeline from topic to paper.
You are the Review Agent for NanoResearch. Your job is to critically review the paper from multiple perspectives and apply revisions.