@orchestra-research/ai-research-skills 1.0.2 → 1.1.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 +3 -4
- package/package.json +3 -2
- package/src/agents.js +6 -0
- package/src/ascii.js +2 -3
- package/src/installer.js +1 -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, Cursor, Gemini CLI, and more).
|
|
3
|
+
Install AI research engineering skills to your coding agents (Claude Code, 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
|
- **One canonical copy** with symlinks to all agents
|
|
15
|
-
- **Works with
|
|
15
|
+
- **Works with 6 agents**: Claude Code, OpenCode, Cursor, Codex, Gemini CLI, Qwen Code
|
|
16
16
|
|
|
17
17
|
## Quick Start
|
|
18
18
|
|
|
@@ -85,11 +85,10 @@ npx @orchestra-research/ai-research-skills update
|
|
|
85
85
|
| Agent | Config Directory |
|
|
86
86
|
|-------|-----------------|
|
|
87
87
|
| Claude Code | `~/.claude` |
|
|
88
|
+
| OpenCode | `~/.config/opencode` |
|
|
88
89
|
| Cursor | `~/.cursor` |
|
|
89
90
|
| Codex (OpenAI) | `~/.codex` |
|
|
90
|
-
| Windsurf | `~/.windsurf` |
|
|
91
91
|
| Gemini CLI | `~/.gemini` |
|
|
92
|
-
| Kilo Code | `~/.kilocode` |
|
|
93
92
|
| Qwen Code | `~/.qwen` |
|
|
94
93
|
|
|
95
94
|
## License
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orchestra-research/ai-research-skills",
|
|
3
|
-
"version": "1.0
|
|
4
|
-
"description": "Install AI research engineering skills to your coding agents (Claude Code, Cursor, Gemini CLI, and more)",
|
|
3
|
+
"version": "1.1.0",
|
|
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": {
|
|
7
7
|
"ai-research-skills": "./bin/cli.js"
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
"research",
|
|
17
17
|
"skills",
|
|
18
18
|
"claude",
|
|
19
|
+
"opencode",
|
|
19
20
|
"cursor",
|
|
20
21
|
"gemini",
|
|
21
22
|
"codex",
|
package/src/agents.js
CHANGED
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 =
|
|
18
|
+
export function showWelcome(skillCount = 82, categoryCount = 20, agentCount = 6) {
|
|
19
19
|
console.clear();
|
|
20
20
|
console.log(chalk.white(logo));
|
|
21
21
|
console.log();
|
|
@@ -115,11 +115,10 @@ export function showNoAgents() {
|
|
|
115
115
|
console.log(chalk.dim(' Install one of these supported agents:'));
|
|
116
116
|
console.log();
|
|
117
117
|
console.log(' ○ Claude Code');
|
|
118
|
+
console.log(' ○ OpenCode');
|
|
118
119
|
console.log(' ○ Cursor');
|
|
119
120
|
console.log(' ○ Codex (OpenAI)');
|
|
120
|
-
console.log(' ○ Windsurf');
|
|
121
121
|
console.log(' ○ Gemini CLI');
|
|
122
|
-
console.log(' ○ Kilo Code');
|
|
123
122
|
console.log(' ○ Qwen Code');
|
|
124
123
|
console.log();
|
|
125
124
|
console.log();
|
package/src/installer.js
CHANGED
|
@@ -5,7 +5,7 @@ import { execSync } from 'child_process';
|
|
|
5
5
|
import chalk from 'chalk';
|
|
6
6
|
import ora from 'ora';
|
|
7
7
|
|
|
8
|
-
const REPO_URL = 'https://github.com/
|
|
8
|
+
const REPO_URL = 'https://github.com/Orchestra-Research/AI-research-SKILLs';
|
|
9
9
|
const CANONICAL_DIR = join(homedir(), '.orchestra', 'skills');
|
|
10
10
|
const LOCK_FILE = join(homedir(), '.orchestra', '.lock.json');
|
|
11
11
|
|