@orchestra-research/ai-research-skills 1.5.2 → 1.5.3
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 +3 -2
- package/src/agents.js +8 -0
- package/src/ascii.js +2 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @orchestra-research/ai-research-skills
|
|
2
2
|
|
|
3
|
-
Install AI research engineering skills to your coding agents (Claude Code, OpenCode, Cursor, Gemini CLI, and more).
|
|
3
|
+
Install AI research engineering skills to your coding agents (Claude Code, Hermes Agent, OpenCode, Cursor, Gemini CLI, and more).
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
6
|
npx @orchestra-research/ai-research-skills
|
|
@@ -12,7 +12,7 @@ npx @orchestra-research/ai-research-skills
|
|
|
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
|
|
15
|
-
- **Works with
|
|
15
|
+
- **Works with 9 agents**: Claude Code, Hermes Agent, OpenCode, OpenClaw, Cursor, Codex, Gemini CLI, Qwen Code, and shared `.agents/`
|
|
16
16
|
|
|
17
17
|
## Quick Start
|
|
18
18
|
|
|
@@ -149,6 +149,7 @@ my-project/
|
|
|
149
149
|
| Gemini CLI | `~/.gemini` |
|
|
150
150
|
| Qwen Code | `~/.qwen` |
|
|
151
151
|
| Shared Agents | `~/.agents` |
|
|
152
|
+
| Hermes Agent | `~/.hermes` |
|
|
152
153
|
|
|
153
154
|
## License
|
|
154
155
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orchestra-research/ai-research-skills",
|
|
3
|
-
"version": "1.5.
|
|
4
|
-
"description": "Install AI research engineering skills to your coding agents (Claude Code, OpenCode, Cursor, Gemini CLI, and more)",
|
|
3
|
+
"version": "1.5.3",
|
|
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": {
|
|
7
7
|
"ai-research-skills": "./bin/cli.js"
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
"codex",
|
|
23
23
|
"openclaw",
|
|
24
24
|
"windsurf",
|
|
25
|
+
"hermes",
|
|
25
26
|
"llm",
|
|
26
27
|
"machine-learning",
|
|
27
28
|
"deep-learning",
|
package/src/agents.js
CHANGED
|
@@ -76,6 +76,14 @@ export const SUPPORTED_AGENTS = [
|
|
|
76
76
|
localConfigDir: '.agents',
|
|
77
77
|
localSkillsDir: 'skills',
|
|
78
78
|
},
|
|
79
|
+
{
|
|
80
|
+
id: 'hermes',
|
|
81
|
+
name: 'Hermes Agent',
|
|
82
|
+
configDir: '.hermes',
|
|
83
|
+
skillsDir: 'skills',
|
|
84
|
+
localConfigDir: '.hermes',
|
|
85
|
+
localSkillsDir: 'skills',
|
|
86
|
+
},
|
|
79
87
|
];
|
|
80
88
|
|
|
81
89
|
/**
|
package/src/ascii.js
CHANGED
|
@@ -15,7 +15,7 @@ const logo = `
|
|
|
15
15
|
/**
|
|
16
16
|
* Welcome screen
|
|
17
17
|
*/
|
|
18
|
-
export function showWelcome(skillCount =
|
|
18
|
+
export function showWelcome(skillCount = 94, categoryCount = 21, agentCount = 9) {
|
|
19
19
|
console.clear();
|
|
20
20
|
console.log(chalk.white(logo));
|
|
21
21
|
console.log();
|
|
@@ -159,6 +159,7 @@ export function showNoAgents() {
|
|
|
159
159
|
console.log(' ○ Gemini CLI');
|
|
160
160
|
console.log(' ○ Qwen Code');
|
|
161
161
|
console.log(' ○ .agents (shared)');
|
|
162
|
+
console.log(' ○ Hermes Agent');
|
|
162
163
|
console.log();
|
|
163
164
|
console.log();
|
|
164
165
|
}
|