@orchestra-research/ai-research-skills 1.6.0 → 1.7.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 +1 -1
- package/package.json +4 -4
- package/src/agents.js +8 -0
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ npx @orchestra-research/ai-research-skills
|
|
|
8
8
|
|
|
9
9
|
## Features
|
|
10
10
|
|
|
11
|
-
- **
|
|
11
|
+
- **98 skills** across 23 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
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orchestra-research/ai-research-skills",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.2",
|
|
4
4
|
"description": "Install AI research engineering skills to your coding agents (Claude Code, OpenCode, Cursor, Gemini CLI, Hermes Agent, and more)",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
"node": ">=18.0.0"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"chalk": "
|
|
46
|
-
"inquirer": "
|
|
47
|
-
"ora": "
|
|
45
|
+
"chalk": "5.6.2",
|
|
46
|
+
"inquirer": "9.3.8",
|
|
47
|
+
"ora": "8.2.0"
|
|
48
48
|
}
|
|
49
49
|
}
|
package/src/agents.js
CHANGED
|
@@ -84,6 +84,14 @@ export const SUPPORTED_AGENTS = [
|
|
|
84
84
|
localConfigDir: '.hermes',
|
|
85
85
|
localSkillsDir: 'skills',
|
|
86
86
|
},
|
|
87
|
+
{
|
|
88
|
+
id: 'qoder',
|
|
89
|
+
name: 'Qoder',
|
|
90
|
+
configDir: '.qoder',
|
|
91
|
+
skillsDir: 'skills',
|
|
92
|
+
localConfigDir: '.qoder',
|
|
93
|
+
localSkillsDir: 'skills',
|
|
94
|
+
},
|
|
87
95
|
];
|
|
88
96
|
|
|
89
97
|
/**
|