@orchestra-research/ai-research-skills 1.1.4 → 1.2.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
@@ -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
  - **One canonical copy** with symlinks to all agents
15
- - **Works with 6 agents**: Claude Code, OpenCode, Cursor, Codex, Gemini CLI, Qwen Code
15
+ - **Works with 8 agents**: Claude Code, OpenCode, OpenClaw, Cursor, Codex, Gemini CLI, Qwen Code, and shared `.agents/`
16
16
 
17
17
  ## Quick Start
18
18
 
@@ -86,10 +86,12 @@ npx @orchestra-research/ai-research-skills update
86
86
  |-------|-----------------|
87
87
  | Claude Code | `~/.claude` |
88
88
  | OpenCode | `~/.config/opencode` |
89
+ | OpenClaw | `~/.openclaw` |
89
90
  | Cursor | `~/.cursor` |
90
91
  | Codex (OpenAI) | `~/.codex` |
91
92
  | Gemini CLI | `~/.gemini` |
92
93
  | Qwen Code | `~/.qwen` |
94
+ | Shared Agents | `~/.agents` |
93
95
 
94
96
  ## License
95
97
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orchestra-research/ai-research-skills",
3
- "version": "1.1.4",
3
+ "version": "1.2.0",
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": {
@@ -20,6 +20,7 @@
20
20
  "cursor",
21
21
  "gemini",
22
22
  "codex",
23
+ "openclaw",
23
24
  "windsurf",
24
25
  "llm",
25
26
  "machine-learning",
package/src/agents.js CHANGED
@@ -43,6 +43,18 @@ export const SUPPORTED_AGENTS = [
43
43
  configDir: '.config/opencode',
44
44
  skillsDir: 'skills',
45
45
  },
46
+ {
47
+ id: 'openclaw',
48
+ name: 'OpenClaw',
49
+ configDir: '.openclaw',
50
+ skillsDir: 'skills',
51
+ },
52
+ {
53
+ id: 'agents',
54
+ name: 'Shared Agents',
55
+ configDir: '.agents',
56
+ skillsDir: 'skills',
57
+ },
46
58
  ];
47
59
 
48
60
  /**
package/src/ascii.js CHANGED
@@ -116,10 +116,12 @@ export function showNoAgents() {
116
116
  console.log();
117
117
  console.log(' ○ Claude Code');
118
118
  console.log(' ○ OpenCode');
119
+ console.log(' ○ OpenClaw');
119
120
  console.log(' ○ Cursor');
120
121
  console.log(' ○ Codex (OpenAI)');
121
122
  console.log(' ○ Gemini CLI');
122
123
  console.log(' ○ Qwen Code');
124
+ console.log(' ○ .agents (shared)');
123
125
  console.log();
124
126
  console.log();
125
127
  }