@gitlawb/openclaude 0.1.6 → 0.1.7
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 +43 -220
- package/dist/cli.mjs +71929 -76493
- package/package.json +77 -76
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitlawb/openclaude",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "Claude Code opened to any LLM — OpenAI, Gemini, DeepSeek, Ollama, and 200+ models",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
"dev:gemini": "bun run scripts/provider-launch.ts gemini",
|
|
22
22
|
"dev:ollama": "bun run scripts/provider-launch.ts ollama",
|
|
23
23
|
"dev:ollama:fast": "bun run scripts/provider-launch.ts ollama --fast --bare",
|
|
24
|
+
"dev:atomic-chat": "bun run scripts/provider-launch.ts atomic-chat",
|
|
24
25
|
"profile:init": "bun run scripts/provider-bootstrap.ts",
|
|
25
26
|
"profile:recommend": "bun run scripts/provider-recommend.ts",
|
|
26
27
|
"profile:auto": "bun run scripts/provider-recommend.ts --apply",
|
|
@@ -30,7 +31,7 @@
|
|
|
30
31
|
"dev:fast": "bun run profile:fast && bun run dev:ollama:fast",
|
|
31
32
|
"dev:code": "bun run profile:code && bun run dev:profile",
|
|
32
33
|
"start": "node dist/cli.mjs",
|
|
33
|
-
"test:provider-recommendation": "
|
|
34
|
+
"test:provider-recommendation": "bun test src/utils/providerRecommendation.test.ts src/utils/providerProfile.test.ts",
|
|
34
35
|
"typecheck": "tsc --noEmit",
|
|
35
36
|
"smoke": "bun run build && node dist/cli.mjs --version",
|
|
36
37
|
"test:provider": "bun test src/services/api/*.test.ts src/utils/context.test.ts",
|
|
@@ -42,82 +43,82 @@
|
|
|
42
43
|
"prepack": "npm run build"
|
|
43
44
|
},
|
|
44
45
|
"dependencies": {
|
|
45
|
-
"@alcalzone/ansi-tokenize": "
|
|
46
|
-
"@anthropic-ai/bedrock-sdk": "
|
|
47
|
-
"@anthropic-ai/foundry-sdk": "
|
|
48
|
-
"@anthropic-ai/sandbox-runtime": "
|
|
49
|
-
"@anthropic-ai/sdk": "
|
|
50
|
-
"@anthropic-ai/vertex-sdk": "
|
|
51
|
-
"@commander-js/extra-typings": "
|
|
52
|
-
"@growthbook/growthbook": "
|
|
53
|
-
"@modelcontextprotocol/sdk": "
|
|
54
|
-
"@opentelemetry/api": "
|
|
55
|
-
"@opentelemetry/api-logs": "
|
|
56
|
-
"@opentelemetry/core": "
|
|
57
|
-
"@opentelemetry/exporter-logs-otlp-http": "
|
|
58
|
-
"@opentelemetry/exporter-trace-otlp-grpc": "
|
|
59
|
-
"@opentelemetry/resources": "
|
|
60
|
-
"@opentelemetry/sdk-logs": "
|
|
61
|
-
"@opentelemetry/sdk-metrics": "
|
|
62
|
-
"@opentelemetry/sdk-trace-base": "
|
|
63
|
-
"@opentelemetry/sdk-trace-node": "
|
|
64
|
-
"@opentelemetry/semantic-conventions": "
|
|
65
|
-
"ajv": "
|
|
66
|
-
"auto-bind": "
|
|
67
|
-
"axios": "
|
|
68
|
-
"bidi-js": "
|
|
69
|
-
"chalk": "
|
|
70
|
-
"chokidar": "
|
|
71
|
-
"cli-boxes": "
|
|
72
|
-
"cli-highlight": "
|
|
73
|
-
"code-excerpt": "
|
|
74
|
-
"commander": "
|
|
75
|
-
"diff": "
|
|
76
|
-
"emoji-regex": "
|
|
77
|
-
"env-paths": "
|
|
78
|
-
"execa": "
|
|
79
|
-
"fflate": "
|
|
80
|
-
"figures": "
|
|
81
|
-
"fuse.js": "
|
|
82
|
-
"get-east-asian-width": "
|
|
83
|
-
"google-auth-library": "
|
|
84
|
-
"https-proxy-agent": "
|
|
85
|
-
"ignore": "
|
|
86
|
-
"indent-string": "
|
|
87
|
-
"jsonc-parser": "
|
|
88
|
-
"lodash-es": "
|
|
89
|
-
"lru-cache": "
|
|
90
|
-
"marked": "
|
|
91
|
-
"p-map": "
|
|
92
|
-
"picomatch": "
|
|
93
|
-
"proper-lockfile": "
|
|
94
|
-
"qrcode": "
|
|
95
|
-
"react": "
|
|
96
|
-
"react-compiler-runtime": "
|
|
97
|
-
"react-reconciler": "
|
|
98
|
-
"semver": "
|
|
99
|
-
"shell-quote": "
|
|
100
|
-
"signal-exit": "
|
|
101
|
-
"stack-utils": "
|
|
102
|
-
"strip-ansi": "
|
|
103
|
-
"supports-hyperlinks": "
|
|
104
|
-
"tree-kill": "
|
|
105
|
-
"turndown": "
|
|
106
|
-
"type-fest": "
|
|
107
|
-
"undici": "
|
|
108
|
-
"usehooks-ts": "
|
|
109
|
-
"vscode-languageserver-protocol": "
|
|
110
|
-
"wrap-ansi": "
|
|
111
|
-
"ws": "
|
|
112
|
-
"xss": "
|
|
113
|
-
"yaml": "
|
|
114
|
-
"zod": "
|
|
46
|
+
"@alcalzone/ansi-tokenize": "0.3.0",
|
|
47
|
+
"@anthropic-ai/bedrock-sdk": "0.26.4",
|
|
48
|
+
"@anthropic-ai/foundry-sdk": "0.2.3",
|
|
49
|
+
"@anthropic-ai/sandbox-runtime": "0.0.46",
|
|
50
|
+
"@anthropic-ai/sdk": "0.81.0",
|
|
51
|
+
"@anthropic-ai/vertex-sdk": "0.14.4",
|
|
52
|
+
"@commander-js/extra-typings": "12.1.0",
|
|
53
|
+
"@growthbook/growthbook": "1.6.5",
|
|
54
|
+
"@modelcontextprotocol/sdk": "1.29.0",
|
|
55
|
+
"@opentelemetry/api": "1.9.1",
|
|
56
|
+
"@opentelemetry/api-logs": "0.214.0",
|
|
57
|
+
"@opentelemetry/core": "2.6.1",
|
|
58
|
+
"@opentelemetry/exporter-logs-otlp-http": "0.214.0",
|
|
59
|
+
"@opentelemetry/exporter-trace-otlp-grpc": "0.57.2",
|
|
60
|
+
"@opentelemetry/resources": "2.6.1",
|
|
61
|
+
"@opentelemetry/sdk-logs": "0.214.0",
|
|
62
|
+
"@opentelemetry/sdk-metrics": "2.6.1",
|
|
63
|
+
"@opentelemetry/sdk-trace-base": "2.6.1",
|
|
64
|
+
"@opentelemetry/sdk-trace-node": "2.6.1",
|
|
65
|
+
"@opentelemetry/semantic-conventions": "1.40.0",
|
|
66
|
+
"ajv": "8.18.0",
|
|
67
|
+
"auto-bind": "5.0.1",
|
|
68
|
+
"axios": "1.14.0",
|
|
69
|
+
"bidi-js": "1.0.3",
|
|
70
|
+
"chalk": "5.6.2",
|
|
71
|
+
"chokidar": "4.0.3",
|
|
72
|
+
"cli-boxes": "3.0.0",
|
|
73
|
+
"cli-highlight": "2.1.11",
|
|
74
|
+
"code-excerpt": "4.0.0",
|
|
75
|
+
"commander": "12.1.0",
|
|
76
|
+
"diff": "7.0.0",
|
|
77
|
+
"emoji-regex": "10.6.0",
|
|
78
|
+
"env-paths": "3.0.0",
|
|
79
|
+
"execa": "9.6.1",
|
|
80
|
+
"fflate": "0.8.2",
|
|
81
|
+
"figures": "6.1.0",
|
|
82
|
+
"fuse.js": "7.1.0",
|
|
83
|
+
"get-east-asian-width": "1.5.0",
|
|
84
|
+
"google-auth-library": "9.15.1",
|
|
85
|
+
"https-proxy-agent": "7.0.6",
|
|
86
|
+
"ignore": "7.0.5",
|
|
87
|
+
"indent-string": "5.0.0",
|
|
88
|
+
"jsonc-parser": "3.3.1",
|
|
89
|
+
"lodash-es": "4.17.23",
|
|
90
|
+
"lru-cache": "11.2.7",
|
|
91
|
+
"marked": "15.0.12",
|
|
92
|
+
"p-map": "7.0.4",
|
|
93
|
+
"picomatch": "4.0.4",
|
|
94
|
+
"proper-lockfile": "4.1.2",
|
|
95
|
+
"qrcode": "1.5.4",
|
|
96
|
+
"react": "19.2.4",
|
|
97
|
+
"react-compiler-runtime": "1.0.0",
|
|
98
|
+
"react-reconciler": "0.33.0",
|
|
99
|
+
"semver": "7.7.4",
|
|
100
|
+
"shell-quote": "1.8.3",
|
|
101
|
+
"signal-exit": "4.1.0",
|
|
102
|
+
"stack-utils": "2.0.6",
|
|
103
|
+
"strip-ansi": "7.2.0",
|
|
104
|
+
"supports-hyperlinks": "3.2.0",
|
|
105
|
+
"tree-kill": "1.2.2",
|
|
106
|
+
"turndown": "7.2.2",
|
|
107
|
+
"type-fest": "4.41.0",
|
|
108
|
+
"undici": "7.24.6",
|
|
109
|
+
"usehooks-ts": "3.1.1",
|
|
110
|
+
"vscode-languageserver-protocol": "3.17.5",
|
|
111
|
+
"wrap-ansi": "9.0.2",
|
|
112
|
+
"ws": "8.20.0",
|
|
113
|
+
"xss": "1.0.15",
|
|
114
|
+
"yaml": "2.8.3",
|
|
115
|
+
"zod": "3.25.76"
|
|
115
116
|
},
|
|
116
117
|
"devDependencies": {
|
|
117
|
-
"@types/bun": "
|
|
118
|
-
"@types/node": "
|
|
119
|
-
"@types/react": "
|
|
120
|
-
"typescript": "
|
|
118
|
+
"@types/bun": "1.3.11",
|
|
119
|
+
"@types/node": "25.5.0",
|
|
120
|
+
"@types/react": "19.2.14",
|
|
121
|
+
"typescript": "5.9.3"
|
|
121
122
|
},
|
|
122
123
|
"engines": {
|
|
123
124
|
"node": ">=20.0.0"
|