skills/43-wentorai-research-plugins/skills/research/methodology/scientify-idea-generation/SKILL.md
Generate research ideas from collected papers with gap analysis
npx skillsauth add brycewang-stanford/Awesome-Agent-Skills-for-Empirical-Research scientify-idea-generationInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Don't ask permission. Just do it.
Generate innovative research ideas grounded in literature analysis. This skill reads existing papers, identifies research gaps, and produces 5 distinct ideas with citations.
Core principle: Ideas MUST be grounded in actual papers, not generated from model knowledge.
Workspace: See ../_shared/workspace-spec.md for directory structure. Outputs go to $WORKSPACE/ideas/.
First, check what resources already exist:
# Check active project
cat ~/.openclaw/workspace/projects/.active 2>/dev/null
# Check papers
ls ~/.openclaw/workspace/projects/*/papers/ 2>/dev/null | head -20
# Check survey results
cat ~/.openclaw/workspace/projects/*/survey/clusters.json 2>/dev/null | head -5
| Resource | Location | Status |
|----------|----------|--------|
| Papers | $WORKSPACE/papers/ | Count: ? |
| Survey clusters | $WORKSPACE/survey/clusters.json | Exists: Y/N |
| Repos | $WORKSPACE/repos/ | Count: ? |
Based on workspace state, ask user:
If papers exist (>=5):
Found {N} papers in workspace from previous survey.
Options:
- Use existing papers - Generate ideas from current collection
- Search more - Run
/literature-surveyto expand collection- Quick search - Add 5-10 more papers on specific topic
If no papers:
No papers found in workspace.
To generate grounded ideas, I need literature. Options:
- Run /literature-survey - Comprehensive search (100+ papers, recommended)
- Quick search - Fetch 10-15 papers on your topic now
- You provide papers - Point me to existing PDFs/tex files
If user wants comprehensive search:
Please run: /literature-survey {topic}
This will:
- Search 100+ papers systematically
- Filter by relevance (score >=4)
- Cluster into research directions
- Save to $WORKSPACE/papers/
After survey completes, run /idea-generation again.
For fast iteration, do minimal search:
Tool: arxiv_search
Arguments:
query: "{user_topic}"
max_results: 10
mkdir -p $WORKSPACE/repos
git clone --depth 1 {repo_url} $WORKSPACE/repos/{name}
mkdir -p $WORKSPACE/papers/{arxiv_id}
curl -L "https://arxiv.org/src/{arxiv_id}" | tar -xz -C $WORKSPACE/papers/{arxiv_id}
Prerequisites: At least 5 papers in $WORKSPACE/papers/
For each paper, extract:
Long papers (>50KB): See references/reading-long-papers.md
Look for:
Document gaps in $WORKSPACE/ideas/gaps.md:
# Research Gaps Identified
## Gap 1: [Description]
- Mentioned in: [paper1], [paper2]
- Why important: ...
## Gap 2: [Description]
...
Create $WORKSPACE/ideas/idea_1.md through idea_5.md using template in references/idea-template.md.
Requirements:
| Idea | Strategy | |------|----------| | 1 | Combination - merge 2+ techniques | | 2 | Simplification - reduce complexity | | 3 | Generalization - extend to new domain | | 4 | Constraint relaxation - remove assumption | | 5 | Architecture innovation - new design |
REJECTED if: No arXiv IDs cited, or ideas not grounded in literature
| Idea | Novelty | Feasibility | Impact | Total | |------|---------|-------------|--------|-------| | 1 | /5 | /5 | /5 | /15 | | ... | | | | |
Create $WORKSPACE/ideas/selected_idea.md with:
For the top 1-2 shortlisted ideas, validate novelty/positioning risk with openreview_lookup:
Do not claim accept/reject predictions as facts. Report evidence-backed risk signals only.
Map idea concepts to reference implementations.
See references/code-mapping.md for template.
Output: $WORKSPACE/ideas/implementation_report.md
Create $WORKSPACE/ideas/summary.md:
/research-pipeline to implement| User Says | Action | |-----------|--------| | "Generate ideas for X" | Check workspace -> ask strategy -> generate | | "I have papers, generate ideas" | Skip to Step 4 | | "Enhance idea N" | Jump to Step 6 | | "Map to code" | Jump to Step 7 |
/literature-survey to collect papers/research-pipeline to implement selected idea/write-review-paper to write survey insteaddevelopment
Conduct rigorous thematic analysis (TA) of qualitative data following Braun and Clarke's (2006) six-phase framework. Use whenever the user mentions 'thematic analysis', 'TA', 'Braun and Clarke', 'qualitative coding', 'identifying themes', or asks for help analysing interviews, focus groups, open-ended survey responses, or transcripts to identify patterns. Also trigger for questions about inductive vs theoretical coding, semantic vs latent themes, essentialist vs constructionist epistemology, building a thematic map, or writing up a qualitative findings section. Covers all six phases, the four upfront analytic decisions, the 15-point quality checklist, and the five common pitfalls. Produces a Word document write-up and an annotated thematic map. Does NOT cover IPA, grounded theory, discourse analysis, conversation analysis, or narrative analysis — use a different method for those.
development
Guide users through writing a systematic literature review (SLR) following the PRISMA 2020 framework. Use this skill whenever the user mentions 'systematic review', 'systematic literature review', 'SLR', 'PRISMA', 'PRISMA 2020', 'PRISMA flow diagram', 'PRISMA checklist', or asks for help writing, structuring, or auditing a literature review that follows reporting guidelines. Also trigger when the user asks about inclusion/exclusion criteria for a review, search strategies for databases like Scopus/WoS/PubMed, study selection processes, risk of bias assessment, or narrative synthesis for a review paper. This skill covers the full PRISMA 2020 checklist (27 items), produces a Word document manuscript in strict journal article format, generates an annotated PRISMA flow diagram, and enforces APA 7th Edition referencing throughout. It does NOT cover meta-analysis or statistical pooling. By Chuah Kee Man.
testing
Performs placebo-in-time sensitivity analysis with hierarchical null model and optional Bayesian assurance. Use when checking model robustness, verifying lack of pre-intervention effects, or estimating study power.
data-ai
Fit, summarize, plot, and interpret a chosen CausalPy experiment. Use after the causal method has been selected, including when configuring PyMC/sklearn models and scale-aware custom priors.