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

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/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.1",
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
  /**