From Idea to Paper with AI: The Orchestra Research Skills Library

Mar 19, 2026

What Are AI Research Skills?

AI Research Skills by Orchestra Research is a library of 86 skills across 22 categories that enables autonomous AI research — from initial idea to published paper. It works with Claude Code, Codex, Gemini, and any agent that supports the SKILL.md standard.

With 5K+ GitHub stars, it's the go-to skill library for ML researchers who want to accelerate their workflow.

The 22 Categories

The skills cover the entire AI/ML research lifecycle:

StageCategories
DiscoveryAutoresearch, Ideation, ML Paper Reading
DesignModel Architecture, Experiment Design
BuildFine-Tuning, Post-Training, Distributed Training
OptimizeOptimization, Inference, Quantization
EvaluateBenchmarking, Evaluation, Ablation Studies
ApplyAgents, RAG, Multimodal, Tool Use
UnderstandMechanistic Interpretability, Emerging Techniques
GovernSafety & Alignment, Ethics
WriteML Paper Writing, Scientific Communication

Quick Start

One-Command Install

npx @orchestra-research/ai-research-skills

This copies all 86 skills to your local .claude/skills/ directory (or equivalent for your agent).

Manual Install

git clone https://github.com/Orchestra-Research/AI-Research-SKILLs.git
cp -r AI-Research-SKILLs/skills/* ~/.claude/skills/

The Autoresearch Skill

The standout feature is the autoresearch skill — a meta-skill that orchestrates the full research loop:

  1. Idea Generation — brainstorm research questions from a topic
  2. Literature Review — search and summarize related work
  3. Experiment Design — plan the methodology
  4. Implementation — write and run code
  5. Analysis — interpret results, generate plots
  6. Paper Writing — draft the manuscript with proper structure

You trigger it with a single prompt:

Use the autoresearch skill to investigate whether sparse attention patterns
in vision transformers can match dense attention on ImageNet while reducing
FLOPs by 50%.

The agent then works through the full loop, checking in with you at each stage.

Creating Your Own Skills

Orchestra provides a skill creation guide and template:

cat skills/docs/SKILL_CREATION_GUIDE.md
cat skills/docs/SKILL_TEMPLATE.md

Each skill is a Markdown file with:

  • Description — what it does
  • Instructions — step-by-step agent behavior
  • Tools — required APIs/libraries
  • Examples — sample interactions

Who Is This For?

  • ML researchers wanting to automate literature reviews and experiment iterations
  • PhD students who need help structuring papers and running ablations
  • Research engineers building reproducible training pipelines
  • Anyone who wants their coding agent to understand ML research deeply