@orchestra-research/ai-research-skills 1.3.8 → 1.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -8,7 +8,7 @@ npx @orchestra-research/ai-research-skills
8
8
 
9
9
  ## Features
10
10
 
11
- - **83 skills** across 20 categories for AI research engineering
11
+ - **86 skills** across 22 categories for AI research engineering
12
12
  - **Auto-detects** installed coding agents
13
13
  - **Interactive installer** with guided experience
14
14
  - **Global or local install** — install globally with symlinks, or per-project with `--local` for version-controlled, project-specific skill sets
@@ -91,13 +91,14 @@ Benefits:
91
91
 
92
92
  | Category | Skills | Description |
93
93
  |----------|--------|-------------|
94
+ | **Autoresearch** | **1** | **Central orchestration — manages full research lifecycle, routes to all other skills** |
94
95
  | Model Architecture | 6 | LitGPT, Mamba, TorchTitan, Megatron... |
95
96
  | Post-Training | 8 | GRPO, verl, slime, miles, torchforge... |
96
97
  | Fine-Tuning | 5 | Axolotl, Unsloth, PEFT, Torchtune... |
97
98
  | Distributed Training | 6 | DeepSpeed, FSDP, Megatron... |
98
99
  | Inference Serving | 4 | vLLM, TensorRT-LLM, SGLang... |
99
100
  | Optimization | 6 | Flash Attention, GPTQ, AWQ... |
100
- | And 14 more... | | |
101
+ | And 15 more... | | Ideation, Paper Writing, RAG, Agents, Multimodal... |
101
102
 
102
103
  ## How It Works
103
104
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orchestra-research/ai-research-skills",
3
- "version": "1.3.8",
3
+ "version": "1.4.2",
4
4
  "description": "Install AI research engineering skills to your coding agents (Claude Code, OpenCode, Cursor, Gemini CLI, and more)",
5
5
  "main": "src/index.js",
6
6
  "bin": {
package/src/installer.js CHANGED
@@ -401,6 +401,7 @@ export function getAllCategoryIds() {
401
401
  '19-emerging-techniques',
402
402
  '20-ml-paper-writing',
403
403
  '21-research-ideation',
404
+ '0-autoresearch-skill',
404
405
  ];
405
406
  }
406
407
 
package/src/prompts.js CHANGED
@@ -5,6 +5,7 @@ import chalk from 'chalk';
5
5
  * Skill categories with their skill counts and example skills
6
6
  */
7
7
  export const CATEGORIES = [
8
+ { id: '0-autoresearch-skill', name: 'Autoresearch', skills: 1, examples: 'Autonomous research orchestration' },
8
9
  { id: '01-model-architecture', name: 'Model Architecture', skills: 6, examples: 'LitGPT, Mamba, TorchTitan, Megatron' },
9
10
  { id: '02-tokenization', name: 'Tokenization', skills: 2, examples: 'HuggingFace Tokenizers, SentencePiece' },
10
11
  { id: '03-fine-tuning', name: 'Fine-Tuning', skills: 5, examples: 'Axolotl, Unsloth, Torchtune, PEFT' },
@@ -25,6 +26,7 @@ export const CATEGORIES = [
25
26
  { id: '18-multimodal', name: 'Multimodal', skills: 7, examples: 'CLIP, Whisper, LLaVA, Qwen2-VL' },
26
27
  { id: '19-emerging-techniques', name: 'Emerging Techniques', skills: 6, examples: 'MoE, Model Merging, Speculative Decoding' },
27
28
  { id: '20-ml-paper-writing', name: 'ML Paper Writing', skills: 1, examples: 'NeurIPS/ICML paper writing' },
29
+ { id: '21-research-ideation', name: 'Research Ideation', skills: 2, examples: 'Brainstorming, Creative Thinking' },
28
30
  ];
29
31
 
30
32
  /**
@@ -62,6 +64,11 @@ export const INDIVIDUAL_SKILLS = [
62
64
  { id: '15-rag/chroma', name: 'Chroma', category: 'RAG' },
63
65
  // Paper Writing
64
66
  { id: '20-ml-paper-writing', name: 'ML Paper Writing', category: 'Writing' },
67
+ // Ideation
68
+ { id: '21-research-ideation/brainstorming-research-ideas', name: 'Research Brainstorming', category: 'Ideation' },
69
+ { id: '21-research-ideation/creative-thinking-for-research', name: 'Creative Thinking', category: 'Ideation' },
70
+ // Autoresearch
71
+ { id: '0-autoresearch-skill', name: 'Autoresearch', category: 'Research' },
65
72
  ];
66
73
 
67
74
  /**
@@ -82,6 +89,7 @@ export const QUICK_START_SKILLS = [
82
89
  '16-prompt-engineering/dspy',
83
90
  '15-rag/chroma',
84
91
  '20-ml-paper-writing',
92
+ '0-autoresearch-skill',
85
93
  ];
86
94
 
87
95
  /**
@@ -208,7 +216,7 @@ export async function askLocalConfirmation(skillCount, agents, projectDir, categ
208
216
 
209
217
  // Description based on install type
210
218
  if (installType === 'everything') {
211
- console.log(chalk.dim(' All 20 categories'));
219
+ console.log(chalk.dim(' All 22 categories'));
212
220
  } else if (installType === 'quickstart') {
213
221
  console.log(chalk.dim(' Essential skills for AI research'));
214
222
  } else if (categories && categories.length > 0) {
@@ -494,7 +502,7 @@ export async function askConfirmation(skillCount, agents, selectedCategories, se
494
502
 
495
503
  // Description based on install type
496
504
  if (installType === 'everything') {
497
- console.log(chalk.dim(' All 20 categories including:'));
505
+ console.log(chalk.dim(' All 22 categories including:'));
498
506
  console.log(chalk.dim(' Post-Training, Fine-Tuning, Inference, Distributed Training,'));
499
507
  console.log(chalk.dim(' Optimization, Evaluation, MLOps, RAG, Agents, Paper Writing...'));
500
508
  } else if (installType === 'quickstart') {