@puku/puku-cli 1.8.31 → 1.8.33
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/bin/puku-cli +5 -5
- package/dist/cli.mjs +2166 -2185
- package/dist/vendor/ripgrep/arm64-darwin/rg +0 -0
- package/dist/vendor/ripgrep/arm64-linux/rg +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 +8 -31
- package/bin/import-specifier.mjs +0 -7
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@puku/puku-cli",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.33",
|
|
4
4
|
"description": "Puku CLI — AI coding assistant powered by Puku AI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -8,42 +8,18 @@
|
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
10
|
"bin/puku-cli",
|
|
11
|
-
"bin/import-specifier.mjs",
|
|
12
11
|
"dist/cli.mjs",
|
|
12
|
+
"dist/vendor/",
|
|
13
13
|
"README.md"
|
|
14
14
|
],
|
|
15
15
|
"scripts": {
|
|
16
|
+
"start": "node bin/puku-cli",
|
|
16
17
|
"build": "bun run scripts/build.ts",
|
|
17
|
-
"
|
|
18
|
-
"dev:profile": "bun run scripts/provider-launch.ts",
|
|
19
|
-
"dev:profile:fast": "bun run scripts/provider-launch.ts auto --fast --bare",
|
|
20
|
-
"dev:codex": "bun run scripts/provider-launch.ts codex",
|
|
21
|
-
"dev:openai": "bun run scripts/provider-launch.ts openai",
|
|
22
|
-
"dev:gemini": "bun run scripts/provider-launch.ts gemini",
|
|
23
|
-
"dev:ollama": "bun run scripts/provider-launch.ts ollama",
|
|
24
|
-
"dev:ollama:fast": "bun run scripts/provider-launch.ts ollama --fast --bare",
|
|
25
|
-
"dev:atomic-chat": "bun run scripts/provider-launch.ts atomic-chat",
|
|
26
|
-
"profile:init": "bun run scripts/provider-bootstrap.ts",
|
|
27
|
-
"profile:recommend": "bun run scripts/provider-recommend.ts",
|
|
28
|
-
"profile:auto": "bun run scripts/provider-recommend.ts --apply",
|
|
29
|
-
"profile:codex": "bun run profile:init -- --provider codex --model codexplan",
|
|
30
|
-
"profile:fast": "bun run profile:init -- --provider ollama --model llama3.2:3b",
|
|
31
|
-
"profile:code": "bun run profile:init -- --provider ollama --model qwen2.5-coder:7b",
|
|
32
|
-
"dev:fast": "bun run profile:fast && bun run dev:ollama:fast",
|
|
33
|
-
"dev:code": "bun run profile:code && bun run dev:profile",
|
|
34
|
-
"start": "node dist/cli.mjs",
|
|
35
|
-
"test:provider-recommendation": "bun test src/utils/providerRecommendation.test.ts src/utils/providerProfile.test.ts",
|
|
36
|
-
"typecheck": "tsc --noEmit",
|
|
37
|
-
"smoke": "bun run build && node dist/cli.mjs --version",
|
|
18
|
+
"smoke": "bun run build && node bin/puku-cli --version",
|
|
38
19
|
"verify:privacy": "bun run scripts/verify-no-phone-home.ts",
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"doctor:runtime:json": "bun run scripts/system-check.ts --json",
|
|
43
|
-
"doctor:report": "bun run scripts/system-check.ts --out reports/doctor-runtime.json",
|
|
44
|
-
"hardening:check": "bun run smoke && bun run doctor:runtime && bun run verify:privacy",
|
|
45
|
-
"hardening:strict": "bun run typecheck && bun run hardening:check",
|
|
46
|
-
"prepack": "npm run build"
|
|
20
|
+
"verify:manifest": "bun run scripts/verify-package-manifest.ts",
|
|
21
|
+
"hardening:check": "bun run smoke && bun run verify:privacy && bun run verify:manifest",
|
|
22
|
+
"prepack": "bun run build"
|
|
47
23
|
},
|
|
48
24
|
"dependencies": {
|
|
49
25
|
"@alcalzone/ansi-tokenize": "0.3.0",
|
|
@@ -56,6 +32,7 @@
|
|
|
56
32
|
"@growthbook/growthbook": "1.6.5",
|
|
57
33
|
"@mendable/firecrawl-js": "4.18.1",
|
|
58
34
|
"@modelcontextprotocol/sdk": "1.29.0",
|
|
35
|
+
"@openauthjs/openauth": "^0.4.3",
|
|
59
36
|
"@opentelemetry/api": "1.9.1",
|
|
60
37
|
"@opentelemetry/api-logs": "0.214.0",
|
|
61
38
|
"@opentelemetry/core": "2.6.1",
|