codez-cli 0.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/dist/cli.js +686943 -0
- package/dist/codez.js +14 -0
- package/dist/vendor/audio-capture/arm64-darwin/audio-capture.node +0 -0
- package/dist/vendor/audio-capture/arm64-linux/audio-capture.node +0 -0
- package/dist/vendor/audio-capture/arm64-win32/audio-capture.node +0 -0
- package/dist/vendor/audio-capture/x64-darwin/audio-capture.node +0 -0
- package/dist/vendor/audio-capture/x64-linux/audio-capture.node +0 -0
- package/dist/vendor/audio-capture/x64-win32/audio-capture.node +0 -0
- package/dist/vendor/ripgrep/COPYING +3 -0
- package/dist/vendor/ripgrep/arm64-darwin/rg +0 -0
- package/dist/vendor/ripgrep/arm64-linux/rg +0 -0
- package/dist/vendor/ripgrep/arm64-win32/rg.exe +0 -0
- package/dist/vendor/ripgrep/x64-darwin/rg +0 -0
- package/dist/vendor/ripgrep/x64-linux/rg +0 -0
- package/dist/vendor/ripgrep/x64-win32/rg.exe +0 -0
- package/package.json +138 -0
package/dist/codez.js
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
// Auto-set OpenAI mode defaults
|
|
4
|
+
if (!process.env.CLAUDE_CODE_USE_OPENAI) {
|
|
5
|
+
process.env.CLAUDE_CODE_USE_OPENAI = '1'
|
|
6
|
+
}
|
|
7
|
+
if (!process.env.ANTHROPIC_API_KEY) {
|
|
8
|
+
process.env.ANTHROPIC_API_KEY = 'skip'
|
|
9
|
+
}
|
|
10
|
+
if (!process.env.OPENAI_MODEL) {
|
|
11
|
+
process.env.OPENAI_MODEL = 'gpt-5.4'
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
import('./cli.js')
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "codez-cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "AI coding CLI powered by OpenAI GPT-5.4 — the ultimate code companion",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"codez": "dist/codez.js"
|
|
8
|
+
},
|
|
9
|
+
"keywords": [
|
|
10
|
+
"codez",
|
|
11
|
+
"openai",
|
|
12
|
+
"gpt-5.4",
|
|
13
|
+
"cli",
|
|
14
|
+
"ai",
|
|
15
|
+
"coding-assistant",
|
|
16
|
+
"code-generation"
|
|
17
|
+
],
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/nicepkg/codez-cli.git"
|
|
22
|
+
},
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">=18.0.0"
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "bun run build.ts",
|
|
28
|
+
"dev": "bun src/main.tsx",
|
|
29
|
+
"typecheck": "tsc --noEmit"
|
|
30
|
+
},
|
|
31
|
+
"files": [
|
|
32
|
+
"dist/cli.js",
|
|
33
|
+
"dist/codez.js",
|
|
34
|
+
"dist/vendor/**/*",
|
|
35
|
+
"README.md"
|
|
36
|
+
],
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@alcalzone/ansi-tokenize": "^0.3.0",
|
|
39
|
+
"@anthropic-ai/mcpb": "^2.1.2",
|
|
40
|
+
"@anthropic-ai/sandbox-runtime": "^0.0.44",
|
|
41
|
+
"@commander-js/extra-typings": "^12.0.0",
|
|
42
|
+
"@growthbook/growthbook": "^1.6.5",
|
|
43
|
+
"@modelcontextprotocol/sdk": "^1.0.2",
|
|
44
|
+
"@opentelemetry/api": "^1.9.0",
|
|
45
|
+
"@opentelemetry/api-logs": "^0.50.0",
|
|
46
|
+
"@opentelemetry/exporter-logs-otlp-grpc": "^0.50.0",
|
|
47
|
+
"@opentelemetry/exporter-logs-otlp-http": "^0.50.0",
|
|
48
|
+
"@opentelemetry/exporter-logs-otlp-proto": "^0.50.0",
|
|
49
|
+
"@opentelemetry/exporter-metrics-otlp-grpc": "^0.50.0",
|
|
50
|
+
"@opentelemetry/exporter-metrics-otlp-http": "^0.50.0",
|
|
51
|
+
"@opentelemetry/exporter-metrics-otlp-proto": "^0.50.0",
|
|
52
|
+
"@opentelemetry/exporter-prometheus": "^0.50.0",
|
|
53
|
+
"@opentelemetry/exporter-trace-otlp-grpc": "^0.50.0",
|
|
54
|
+
"@opentelemetry/exporter-trace-otlp-http": "^0.50.0",
|
|
55
|
+
"@opentelemetry/exporter-trace-otlp-proto": "^0.50.0",
|
|
56
|
+
"@opentelemetry/resources": "^1.24.0",
|
|
57
|
+
"@opentelemetry/sdk-logs": "^0.50.0",
|
|
58
|
+
"@opentelemetry/sdk-metrics": "^1.24.0",
|
|
59
|
+
"@opentelemetry/sdk-trace-base": "^1.24.0",
|
|
60
|
+
"@opentelemetry/semantic-conventions": "^1.24.0",
|
|
61
|
+
"@xmldom/xmldom": "^0.9.9",
|
|
62
|
+
"ajv": "^8.12.0",
|
|
63
|
+
"asciichart": "^1.5.25",
|
|
64
|
+
"auto-bind": "^5.0.1",
|
|
65
|
+
"axios": "^1.7.0",
|
|
66
|
+
"bidi-js": "^1.0.3",
|
|
67
|
+
"bufferutil": "^4.1.0",
|
|
68
|
+
"cacache": "^20.0.4",
|
|
69
|
+
"chalk": "^5.3.0",
|
|
70
|
+
"chokidar": "^4.0.0",
|
|
71
|
+
"cli-boxes": "^4.0.1",
|
|
72
|
+
"cli-highlight": "^2.1.11",
|
|
73
|
+
"clipanion": "^4.0.0-rc.3",
|
|
74
|
+
"code-excerpt": "^4.0.0",
|
|
75
|
+
"commander": "^12.0.0",
|
|
76
|
+
"diff": "^8.0.4",
|
|
77
|
+
"encoding": "^0.1.13",
|
|
78
|
+
"env-paths": "^4.0.0",
|
|
79
|
+
"execa": "^9.0.0",
|
|
80
|
+
"fuse.js": "^7.1.0",
|
|
81
|
+
"highlight.js": "^11.11.1",
|
|
82
|
+
"indent-string": "^5.0.0",
|
|
83
|
+
"jsonc-parser": "^3.3.1",
|
|
84
|
+
"lodash-es": "^4.17.21",
|
|
85
|
+
"lru-cache": "^10.0.0",
|
|
86
|
+
"marked": "^17.0.5",
|
|
87
|
+
"open": "^10.0.0",
|
|
88
|
+
"p-map": "^7.0.4",
|
|
89
|
+
"pdf-parse": "^1.1.1",
|
|
90
|
+
"picomatch": "^4.0.4",
|
|
91
|
+
"plist": "^3.1.0",
|
|
92
|
+
"proper-lockfile": "^4.1.2",
|
|
93
|
+
"qrcode": "^1.5.4",
|
|
94
|
+
"react": "19",
|
|
95
|
+
"react-compiler-runtime": "19.1.0-rc.3",
|
|
96
|
+
"react-reconciler": "0.33.0",
|
|
97
|
+
"retry": "^0.13.1",
|
|
98
|
+
"semver": "^7.6.0",
|
|
99
|
+
"sharp": "^0.34.2",
|
|
100
|
+
"stack-utils": "^2.0.6",
|
|
101
|
+
"supports-color": "^10.2.2",
|
|
102
|
+
"supports-hyperlinks": "^4.4.0",
|
|
103
|
+
"terminal-kit": "^3.1.0",
|
|
104
|
+
"tree-kill": "^1.2.2",
|
|
105
|
+
"turndown": "^7.2.2",
|
|
106
|
+
"undici": "^7.24.6",
|
|
107
|
+
"usehooks-ts": "^3.0.0",
|
|
108
|
+
"utf-8-validate": "^6.0.6",
|
|
109
|
+
"uuid": "^10.0.0",
|
|
110
|
+
"vscode-jsonrpc": "^8.2.1",
|
|
111
|
+
"ws": "^8.17.0",
|
|
112
|
+
"xmlbuilder": "^15.1.1",
|
|
113
|
+
"xss": "^1.0.14",
|
|
114
|
+
"yaml": "^2.3.0",
|
|
115
|
+
"yoga-layout-prebuilt": "^1.10.0",
|
|
116
|
+
"zod": "^3.22.0"
|
|
117
|
+
},
|
|
118
|
+
"devDependencies": {
|
|
119
|
+
"@types/node": "^22.0.0",
|
|
120
|
+
"@types/react": "^18.3.0",
|
|
121
|
+
"@types/react-reconciler": "^0.28.0",
|
|
122
|
+
"@types/lodash-es": "^4.17.12",
|
|
123
|
+
"@types/ws": "^8.5.10",
|
|
124
|
+
"typescript": "^5.6.0",
|
|
125
|
+
"bun-types": "^1.2.0"
|
|
126
|
+
},
|
|
127
|
+
"optionalDependencies": {
|
|
128
|
+
"@img/sharp-darwin-arm64": "^0.34.2",
|
|
129
|
+
"@img/sharp-darwin-x64": "^0.34.2",
|
|
130
|
+
"@img/sharp-linux-arm": "^0.34.2",
|
|
131
|
+
"@img/sharp-linux-arm64": "^0.34.2",
|
|
132
|
+
"@img/sharp-linux-x64": "^0.34.2",
|
|
133
|
+
"@img/sharp-linuxmusl-arm64": "^0.34.2",
|
|
134
|
+
"@img/sharp-linuxmusl-x64": "^0.34.2",
|
|
135
|
+
"@img/sharp-win32-arm64": "^0.34.2",
|
|
136
|
+
"@img/sharp-win32-x64": "^0.34.2"
|
|
137
|
+
}
|
|
138
|
+
}
|