@orchestra-research/ai-research-skills 1.0.2 → 1.0.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/installer.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orchestra-research/ai-research-skills",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Install AI research engineering skills to your coding agents (Claude Code, Cursor, Gemini CLI, and more)",
5
5
  "main": "src/index.js",
6
6
  "bin": {
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/zechenzhangAGI/AI-research-SKILLs';
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