idea-pipeline

Orchestrates literature survey, idea generation, screening, and refinement into one autonomous research pipeline.

Updated Mar 27, 2026
One-click install
npx skills add https://github.com/megumi-ben/work17 --skill idea-pipeline-megumi-ben
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: idea-pipeline
Source: https://github.com/megumi-ben/work17/tree/main/AutoVibeIdea/skills/idea-pipeline
Command: npx skills add https://github.com/megumi-ben/work17 --skill idea-pipeline-megumi-ben

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Going from a vague research direction to a refined, venue-ready proposal requires many disconnected steps: surveying literature, brainstorming ideas, checking novelty, simulating peer review, and iterating on the proposal. This Skill chains all of these phases into a single autonomous workflow with checkpoint logging and resumable state. ## Core Features & Use Cases - Four-Phase Pipeline: Runs literature survey, idea generation (8-12 ideas filtered to 4-6), multi-dimensional screening (novelty, venue reviewer simulation, strategic fit), and deep refinement of the top 2 ideas. - Autonomous Operation with State Persistence: Logs every checkpoint decision to outputs/PIPELINE_LOG.md and writes PIPELINE_STATE.json after each phase so an interrupted run can resume from the last completed phase. - Venue-Targeted Screening: Passes a target venue (e.g., ICML, NeurIPS, VLDB) through to reviewer simulation and composite ranking. - Use Case: A PhD student types a direction like "efficient long-context LLM inference" and receives a final IDEA_DISCOVERY_REPORT.md containing the landscape map, ranked ideas with composite scores, two refined proposals, and documented reasons for every eliminated idea. ## Quick Start Run the full idea discovery pipeline on the research direction "efficient long-context LLM inference" targeting ICML and produce the final report.

Frequently Asked Questions about idea-pipeline

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run a full research idea discovery pipeline?

Invoke the pipeline with a research direction, optionally adding a venue flag such as -- venue: NeurIPS. It autonomously runs literature survey, idea generation, screening, and refinement, then writes a final IDEA_DISCOVERY_REPORT.md.

How does automated idea screening work for conference submissions?

Screening combines three modules: multi-source novelty assessment with cross-model verification, a simulated venue review with three reviewers plus meta review, and a five-dimension strategic fit assessment. Ideas are ranked by composite score with PROCEED, REVISE, or REJECT recommendations.

Can the pipeline resume after being interrupted?

Yes. After each phase the pipeline writes PIPELINE_STATE.json with completed phases and timestamps. On restart with the same research direction, it skips completed phases and resumes from the next incomplete one.

What happens if one phase of the pipeline fails?

The error is appended to outputs/PIPELINE_LOG.md and the pipeline continues with degraded quality using whatever data is available. The final report still generates, with failed phases marked as [PHASE FAILED] including error details.

Can I run individual phases like literature survey or idea refinement separately?

Yes. Each phase is a standalone skill: /lit-survey for the landscape map, /idea-gen for brainstorming, /idea-screen for ranking, and /idea-refine for proposal iteration. The pipeline simply chains them with shared outputs.