@orchestra-research/ai-research-skills 1.4.1 → 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 +3 -2
- package/package.json +1 -1
- package/src/prompts.js +2 -2
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ npx @orchestra-research/ai-research-skills
|
|
|
8
8
|
|
|
9
9
|
## Features
|
|
10
10
|
|
|
11
|
-
- **
|
|
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
|
|
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.4.
|
|
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/prompts.js
CHANGED
|
@@ -216,7 +216,7 @@ export async function askLocalConfirmation(skillCount, agents, projectDir, categ
|
|
|
216
216
|
|
|
217
217
|
// Description based on install type
|
|
218
218
|
if (installType === 'everything') {
|
|
219
|
-
console.log(chalk.dim(' All
|
|
219
|
+
console.log(chalk.dim(' All 22 categories'));
|
|
220
220
|
} else if (installType === 'quickstart') {
|
|
221
221
|
console.log(chalk.dim(' Essential skills for AI research'));
|
|
222
222
|
} else if (categories && categories.length > 0) {
|
|
@@ -502,7 +502,7 @@ export async function askConfirmation(skillCount, agents, selectedCategories, se
|
|
|
502
502
|
|
|
503
503
|
// Description based on install type
|
|
504
504
|
if (installType === 'everything') {
|
|
505
|
-
console.log(chalk.dim(' All
|
|
505
|
+
console.log(chalk.dim(' All 22 categories including:'));
|
|
506
506
|
console.log(chalk.dim(' Post-Training, Fine-Tuning, Inference, Distributed Training,'));
|
|
507
507
|
console.log(chalk.dim(' Optimization, Evaluation, MLOps, RAG, Agents, Paper Writing...'));
|
|
508
508
|
} else if (installType === 'quickstart') {
|