PluginBench
Skill
Review
Audit score 70

idea-generation

lingzhi227/agent-research-skills

How to install idea-generation

npx skills add https://github.com/lingzhi227/agent-research-skills --skill idea-generation
Claude Code
Cursor
Windsurf
Cline
Full instructions (SKILL.md)

Source of truth, from lingzhi227/agent-research-skills.


name: idea-generation description: Generate novel research ideas with iterative refinement and novelty checking against literature. Score ideas on Interestingness, Feasibility, and Novelty. Use when brainstorming research directions or validating idea novelty. argument-hint: [research-area]

Idea Generation

Generate and refine novel research ideas with literature-backed novelty assessment.

Input

  • $0 — Research area, task description, or existing codebase context
  • $1 — Optional: additional context (e.g., "for NeurIPS", constraints)

Scripts

Novelty check against Semantic Scholar

python ~/.claude/skills/idea-generation/scripts/novelty_check.py \
  --idea "Adaptive attention head pruning via gradient-guided importance" \
  --max-rounds 5

Performs iterative literature search to assess if an idea is novel.

References

  • Ideation prompts (generation, reflection, novelty): ~/.claude/skills/idea-generation/references/ideation-prompts.md

Workflow

Step 1: Generate Ideas

Given a research area and optional code/paper context:

  1. Generate 3-5 diverse research ideas
  2. For each idea, provide: Name, Title, Experiment plan, and ratings
  3. Use the ideation prompt templates from references

Step 2: Iterative Refinement (up to 5 rounds per idea)

For each idea:

  1. Critically evaluate quality, novelty, and feasibility
  2. Refine the idea while preserving its core spirit
  3. Stop when converged ("I am done") or max rounds reached

Step 3: Novelty Assessment

For each promising idea:

  1. Run novelty_check.py or manually search Semantic Scholar / arXiv
  2. Use the novelty checking prompts from references
  3. Multi-round search: generate queries, review results, decide
  4. Binary decision: Novel / Not Novel with justification

Step 4: Rank and Select

  • Score each idea on three dimensions (1-10): Interestingness, Feasibility, Novelty
  • Be cautious and realistic on ratings
  • Select the top idea(s) for development

Output Format

{
  "Name": "adaptive_attention_pruning",
  "Title": "Adaptive Attention Head Pruning via Gradient-Guided Importance Scoring",
  "Experiment": "Detailed implementation plan...",
  "Interestingness": 8,
  "Feasibility": 7,
  "Novelty": 9,
  "novel": true,
  "most_similar_papers": ["paper1", "paper2"]
}

Rules

  • Ideas must be feasible with available resources (no requiring new datasets or massive compute)
  • Do not overfit ideas to a specific dataset or model — aim for wider significance
  • Be a harsh critic for novelty — ensure sufficient contribution for a conference paper
  • Each idea should stem from a simple, elegant question or hypothesis
  • Always check novelty before committing to an idea

Related Skills

Related skills

More from lingzhi227/agent-research-skills and the wider catalog.

LI

literature-review

lingzhi227/agent-research-skills

Conduct comprehensive literature reviews using multi-perspective dialogue simulation. Generate diverse expert personas, conduct grounded Q&A conversations, and synthesize findings into structured knowledge. Use when starting a new research project or writing a survey section.

2.5k installs
LI

literature-search

lingzhi227/agent-research-skills

Search academic literature using Semantic Scholar, arXiv, and OpenAlex APIs. Returns structured JSONL with title, authors, year, venue, abstract, citations, and BibTeX. Use when the user needs to find papers, check related work, or build a bibliography.

1.6k installs
FI

figure-generation

lingzhi227/agent-research-skills

Generate publication-quality scientific figures using matplotlib/seaborn with a three-phase pipeline (query expansion, code generation with execution, VLM visual feedback). Handles bar charts, line plots, heatmaps, training curves, ablation plots, and more. Use when the user needs figures, plots, or visualizations for a paper.

1.3k installs
CI

citation-management

lingzhi227/agent-research-skills

Manage BibTeX citations for LaTeX papers. Harvest missing citations from a draft using Semantic Scholar, validate cite keys against .bib files, deduplicate entries, and format bibliography. Use when working with references, BibTeX, or citations.

1.3k installs
LA

latex-formatting

lingzhi227/agent-research-skills

Handle LaTeX formatting, templates, and styling for academic papers. Set up conference templates (ICML, ICLR, NeurIPS, AAAI, ACL), fix formatting issues, manage packages, and ensure venue-specific compliance. Use when the user needs to set up a paper template, fix LaTeX formatting, or prepare for submission.

1.3k installs
DA

data-analysis

lingzhi227/agent-research-skills

Generate statistical analysis code with 4-round review. Select appropriate statistical tests, interpret results, and produce analysis reports with p-values, effect sizes, and confidence intervals. Use when analyzing experimental data for a paper.

1.2k installs