research-pipeline

Orchestrates end-to-end autonomous research from idea discovery through experiments to paper PDF.

Updated Jul 9, 2026
One-click install
npx skills add https://github.com/Lingjie-wang/autoRL --skill research-pipeline-lingjie-wang
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: research-pipeline
Source: https://github.com/Lingjie-wang/autoRL/tree/main/Auto-claude-code-research-in-sleep/skills/research-pipeline
Command: npx skills add https://github.com/Lingjie-wang/autoRL --skill research-pipeline-lingjie-wang

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Running a complete research project requires manually chaining literature review, idea validation, experiment implementation, GPU deployment, iterative review, and paper writing, which is slow and error-prone. This Skill automates the entire lifecycle as a single resumable pipeline with cross-model quality gates. ## Core Features & Use Cases - Full Pipeline Orchestration: Chains idea discovery, experiment bridge, auto-review loop, and optional paper writing into one command with human or automatic gates. - Resumable Runs: Tracks per-stage state in run files so interrupted runs resume via a run ID instead of restarting, with acceptance gates separating finished work from verified work. - Overnight Stall Detection: A heartbeat mechanism counts new findings per stage and forces structural pivots or human escalation when progress stalls, without ever judging quality itself. - Use Case: A researcher provides a broad direction in the evening, lets the pipeline discover and pilot ideas, run GPU experiments, iterate through adversarial review rounds, and wakes up to a narrative report or a compiled paper PDF. ## Quick Start Run the research pipeline on the topic of efficient attention mechanisms with automatic idea selection and ICLR as the target venue.

Frequently Asked Questions about research-pipeline

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

FAQPage Schema
How do I run an end-to-end autonomous research pipeline?

Invoke the pipeline with a research direction, and it chains idea discovery, experiment implementation, auto-review loops, and optional paper writing. Set AUTO_PROCEED to true to skip the idea confirmation gate and let it select the top-ranked idea automatically.

How do I resume an interrupted research pipeline run?

Pass the resume flag with your run ID, and the pipeline reads per-stage state from the run file to restart at the first non-accepted phase. Stages marked done but not accepted are re-validated through their cross-model gate or deterministic verifier.

Can the pipeline write a paper for a specific venue like NeurIPS or ICLR?

Yes, set AUTO_WRITE to true and VENUE to your target such as ICLR, NeurIPS, ICML, CVPR, or ACL. After the review loop, it generates a narrative report and invokes the paper writing workflow to produce a compiled PDF.

What happens when an overnight research run stops making progress?

A heartbeat mechanism counts new findings per stage each tick. After two stale ticks it forces a structural pivot to an untried direction, and after four it flags the run for human attention, but it never judges result quality itself.

Does the pipeline review experiment code before using GPU time?

Yes, when CODE_REVIEW is true, a cross-model review inspects the implementation for logic bugs, incorrect metrics, and ground-truth misuse before deployment. A sanity check then runs the smallest experiment first with up to three auto-debug attempts.