@orchestra-research/ai-research-skills 1.5.2 → 1.6.0

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
@@ -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 8 agents**: Claude Code, OpenCode, OpenClaw, Cursor, Codex, Gemini CLI, Qwen Code, and shared `.agents/`
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.2",
4
- "description": "Install AI research engineering skills to your coding agents (Claude Code, OpenCode, Cursor, Gemini CLI, and more)",
3
+ "version": "1.6.0",
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 = 82, categoryCount = 20, agentCount = 6) {
18
+ export function showWelcome(skillCount = 98, categoryCount = 23, 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
  }
package/src/prompts.js CHANGED
@@ -27,6 +27,7 @@ export const CATEGORIES = [
27
27
  { id: '19-emerging-techniques', name: 'Emerging Techniques', skills: 6, examples: 'MoE, Model Merging, Speculative Decoding' },
28
28
  { id: '20-ml-paper-writing', name: 'ML Paper Writing', skills: 1, examples: 'NeurIPS/ICML paper writing' },
29
29
  { id: '21-research-ideation', name: 'Research Ideation', skills: 2, examples: 'Brainstorming, Creative Thinking' },
30
+ { id: '22-agent-native-research-artifact', name: 'Agent-Native Research Artifact', skills: 3, examples: 'ARA Compiler, Research Manager, Rigor Reviewer' },
30
31
  ];
31
32
 
32
33
  /**
@@ -69,6 +70,10 @@ export const INDIVIDUAL_SKILLS = [
69
70
  { id: '21-research-ideation/creative-thinking-for-research', name: 'Creative Thinking', category: 'Ideation' },
70
71
  // Autoresearch
71
72
  { id: '0-autoresearch-skill', name: 'Autoresearch', category: 'Research' },
73
+ // Agent-Native Research Artifact
74
+ { id: '22-agent-native-research-artifact/compiler', name: 'ARA Compiler', category: 'ARA' },
75
+ { id: '22-agent-native-research-artifact/research-manager', name: 'ARA Research Manager', category: 'ARA' },
76
+ { id: '22-agent-native-research-artifact/rigor-reviewer', name: 'ARA Rigor Reviewer', category: 'ARA' },
72
77
  ];
73
78
 
74
79
  /**