olympus-ai 4.1.1 → 4.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/.claude-plugin/plugin.json +1 -1
- package/dist/installer/index.d.ts +1 -1
- package/dist/installer/index.js +1 -1
- package/package.json +100 -100
|
@@ -24,7 +24,7 @@ export declare const HOOKS_DIR: string;
|
|
|
24
24
|
export declare const SETTINGS_FILE: string;
|
|
25
25
|
export declare const VERSION_FILE: string;
|
|
26
26
|
/** Current version - MUST match package.json */
|
|
27
|
-
export declare const VERSION = "4.
|
|
27
|
+
export declare const VERSION = "4.2.0";
|
|
28
28
|
/** Installation result */
|
|
29
29
|
export interface InstallResult {
|
|
30
30
|
success: boolean;
|
package/dist/installer/index.js
CHANGED
|
@@ -40,7 +40,7 @@ export const HOOKS_DIR = join(CLAUDE_CONFIG_DIR, 'hooks');
|
|
|
40
40
|
export const SETTINGS_FILE = join(CLAUDE_CONFIG_DIR, 'settings.json');
|
|
41
41
|
export const VERSION_FILE = join(CLAUDE_CONFIG_DIR, '.olympus-version.json');
|
|
42
42
|
/** Current version - MUST match package.json */
|
|
43
|
-
export const VERSION = '4.
|
|
43
|
+
export const VERSION = '4.2.0';
|
|
44
44
|
/**
|
|
45
45
|
* Read a content file from the resources/ directory.
|
|
46
46
|
*
|
package/package.json
CHANGED
|
@@ -1,100 +1,100 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "olympus-ai",
|
|
3
|
-
"version": "4.
|
|
4
|
-
"description": "Olympus: Multi-agent orchestration for Claude Code. Summon the gods of code.",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "dist/index.js",
|
|
7
|
-
"types": "dist/index.d.ts",
|
|
8
|
-
"exports": {
|
|
9
|
-
".": {
|
|
10
|
-
"import": "./dist/index.js",
|
|
11
|
-
"types": "./dist/index.d.ts"
|
|
12
|
-
}
|
|
13
|
-
},
|
|
14
|
-
"bin": {
|
|
15
|
-
"olympus-ai": "dist/cli/index.js"
|
|
16
|
-
},
|
|
17
|
-
"files": [
|
|
18
|
-
"dist",
|
|
19
|
-
"resources",
|
|
20
|
-
"scripts",
|
|
21
|
-
".claude-plugin",
|
|
22
|
-
"README.md",
|
|
23
|
-
"LICENSE",
|
|
24
|
-
"COPYRIGHT",
|
|
25
|
-
"NOTICE"
|
|
26
|
-
],
|
|
27
|
-
"scripts": {
|
|
28
|
-
"build": "node node_modules/typescript/bin/tsc",
|
|
29
|
-
"build:hooks": "node scripts/esbuild.hooks.mjs",
|
|
30
|
-
"build:all": "npm run build && npm run build:hooks",
|
|
31
|
-
"dev": "node node_modules/typescript/bin/tsc --watch",
|
|
32
|
-
"start": "node dist/index.js",
|
|
33
|
-
"test": "vitest",
|
|
34
|
-
"test:ui": "vitest --ui",
|
|
35
|
-
"test:run": "vitest run",
|
|
36
|
-
"test:coverage": "vitest run --coverage",
|
|
37
|
-
"lint": "eslint src",
|
|
38
|
-
"format": "prettier --write src/**/*.ts",
|
|
39
|
-
"prepare": "npm run build:all",
|
|
40
|
-
"prepublishOnly": "npm run build:all",
|
|
41
|
-
"postinstall": "node dist/cli/index.js postinstall || true",
|
|
42
|
-
"preuninstall": "node dist/cli/index.js uninstall --verbose || true"
|
|
43
|
-
},
|
|
44
|
-
"dependencies": {
|
|
45
|
-
"@anthropic-ai/claude-agent-sdk": "^0.1.0",
|
|
46
|
-
"@ast-grep/napi": "^0.31.0",
|
|
47
|
-
"chalk": "^5.3.0",
|
|
48
|
-
"commander": "^12.1.0",
|
|
49
|
-
"fs-extra": "^11.3.3",
|
|
50
|
-
"gpt-tokenizer": "^3.4.0",
|
|
51
|
-
"jsonc-parser": "^3.3.1",
|
|
52
|
-
"vscode-languageserver-protocol": "^3.17.5",
|
|
53
|
-
"zod": "^3.23.8"
|
|
54
|
-
},
|
|
55
|
-
"devDependencies": {
|
|
56
|
-
"@eslint/js": "^9.39.2",
|
|
57
|
-
"@types/fs-extra": "^11.0.4",
|
|
58
|
-
"@types/node": "^22.10.2",
|
|
59
|
-
"@typescript-eslint/eslint-plugin": "^8.18.2",
|
|
60
|
-
"@typescript-eslint/parser": "^8.18.2",
|
|
61
|
-
"@vitest/coverage-v8": "^4.0.18",
|
|
62
|
-
"@vitest/ui": "^4.0.17",
|
|
63
|
-
"esbuild": "^0.25.0",
|
|
64
|
-
"eslint": "^9.17.0",
|
|
65
|
-
"prettier": "^3.4.2",
|
|
66
|
-
"typescript": "^5.7.2",
|
|
67
|
-
"typescript-eslint": "^8.53.0",
|
|
68
|
-
"vitest": "^4.0.17"
|
|
69
|
-
},
|
|
70
|
-
"engines": {
|
|
71
|
-
"node": ">=20.0.0"
|
|
72
|
-
},
|
|
73
|
-
"repository": {
|
|
74
|
-
"type": "git",
|
|
75
|
-
"url": "git+https://github.com/mikev10/olympus.git"
|
|
76
|
-
},
|
|
77
|
-
"homepage": "https://github.com/mikev10/olympus#readme",
|
|
78
|
-
"bugs": {
|
|
79
|
-
"url": "https://github.com/mikev10/olympus/issues"
|
|
80
|
-
},
|
|
81
|
-
"author": {
|
|
82
|
-
"name": "Michael Vidal",
|
|
83
|
-
"url": "https://github.com/mikev10"
|
|
84
|
-
},
|
|
85
|
-
"license": "MIT",
|
|
86
|
-
"keywords": [
|
|
87
|
-
"claude",
|
|
88
|
-
"claude-code",
|
|
89
|
-
"ai",
|
|
90
|
-
"agent",
|
|
91
|
-
"multi-agent",
|
|
92
|
-
"orchestration",
|
|
93
|
-
"olympus",
|
|
94
|
-
"anthropic",
|
|
95
|
-
"llm"
|
|
96
|
-
],
|
|
97
|
-
"publishConfig": {
|
|
98
|
-
"access": "public"
|
|
99
|
-
}
|
|
100
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "olympus-ai",
|
|
3
|
+
"version": "4.2.0",
|
|
4
|
+
"description": "Olympus: Multi-agent orchestration for Claude Code. Summon the gods of code.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./dist/index.js",
|
|
11
|
+
"types": "./dist/index.d.ts"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"bin": {
|
|
15
|
+
"olympus-ai": "dist/cli/index.js"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist",
|
|
19
|
+
"resources",
|
|
20
|
+
"scripts",
|
|
21
|
+
".claude-plugin",
|
|
22
|
+
"README.md",
|
|
23
|
+
"LICENSE",
|
|
24
|
+
"COPYRIGHT",
|
|
25
|
+
"NOTICE"
|
|
26
|
+
],
|
|
27
|
+
"scripts": {
|
|
28
|
+
"build": "node node_modules/typescript/bin/tsc",
|
|
29
|
+
"build:hooks": "node scripts/esbuild.hooks.mjs",
|
|
30
|
+
"build:all": "npm run build && npm run build:hooks",
|
|
31
|
+
"dev": "node node_modules/typescript/bin/tsc --watch",
|
|
32
|
+
"start": "node dist/index.js",
|
|
33
|
+
"test": "vitest",
|
|
34
|
+
"test:ui": "vitest --ui",
|
|
35
|
+
"test:run": "vitest run",
|
|
36
|
+
"test:coverage": "vitest run --coverage",
|
|
37
|
+
"lint": "eslint src",
|
|
38
|
+
"format": "prettier --write src/**/*.ts",
|
|
39
|
+
"prepare": "npm run build:all",
|
|
40
|
+
"prepublishOnly": "npm run build:all",
|
|
41
|
+
"postinstall": "node dist/cli/index.js postinstall || true",
|
|
42
|
+
"preuninstall": "node dist/cli/index.js uninstall --verbose || true"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@anthropic-ai/claude-agent-sdk": "^0.1.0",
|
|
46
|
+
"@ast-grep/napi": "^0.31.0",
|
|
47
|
+
"chalk": "^5.3.0",
|
|
48
|
+
"commander": "^12.1.0",
|
|
49
|
+
"fs-extra": "^11.3.3",
|
|
50
|
+
"gpt-tokenizer": "^3.4.0",
|
|
51
|
+
"jsonc-parser": "^3.3.1",
|
|
52
|
+
"vscode-languageserver-protocol": "^3.17.5",
|
|
53
|
+
"zod": "^3.23.8"
|
|
54
|
+
},
|
|
55
|
+
"devDependencies": {
|
|
56
|
+
"@eslint/js": "^9.39.2",
|
|
57
|
+
"@types/fs-extra": "^11.0.4",
|
|
58
|
+
"@types/node": "^22.10.2",
|
|
59
|
+
"@typescript-eslint/eslint-plugin": "^8.18.2",
|
|
60
|
+
"@typescript-eslint/parser": "^8.18.2",
|
|
61
|
+
"@vitest/coverage-v8": "^4.0.18",
|
|
62
|
+
"@vitest/ui": "^4.0.17",
|
|
63
|
+
"esbuild": "^0.25.0",
|
|
64
|
+
"eslint": "^9.17.0",
|
|
65
|
+
"prettier": "^3.4.2",
|
|
66
|
+
"typescript": "^5.7.2",
|
|
67
|
+
"typescript-eslint": "^8.53.0",
|
|
68
|
+
"vitest": "^4.0.17"
|
|
69
|
+
},
|
|
70
|
+
"engines": {
|
|
71
|
+
"node": ">=20.0.0"
|
|
72
|
+
},
|
|
73
|
+
"repository": {
|
|
74
|
+
"type": "git",
|
|
75
|
+
"url": "git+https://github.com/mikev10/olympus.git"
|
|
76
|
+
},
|
|
77
|
+
"homepage": "https://github.com/mikev10/olympus#readme",
|
|
78
|
+
"bugs": {
|
|
79
|
+
"url": "https://github.com/mikev10/olympus/issues"
|
|
80
|
+
},
|
|
81
|
+
"author": {
|
|
82
|
+
"name": "Michael Vidal",
|
|
83
|
+
"url": "https://github.com/mikev10"
|
|
84
|
+
},
|
|
85
|
+
"license": "MIT",
|
|
86
|
+
"keywords": [
|
|
87
|
+
"claude",
|
|
88
|
+
"claude-code",
|
|
89
|
+
"ai",
|
|
90
|
+
"agent",
|
|
91
|
+
"multi-agent",
|
|
92
|
+
"orchestration",
|
|
93
|
+
"olympus",
|
|
94
|
+
"anthropic",
|
|
95
|
+
"llm"
|
|
96
|
+
],
|
|
97
|
+
"publishConfig": {
|
|
98
|
+
"access": "public"
|
|
99
|
+
}
|
|
100
|
+
}
|