jinzd-ai-cli 0.1.99 → 0.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/dist/.icon-ico/icon.ico +0 -0
- package/dist/{chunk-IV3LYGTI.js → chunk-46RYX62R.js} +1 -1
- package/dist/{chunk-NSDG4SSQ.js → chunk-PBJ4L7SK.js} +1 -1
- package/dist/electron-server.js +1 -1
- package/dist/index.js +4 -4
- package/dist/{run-tests-3B3RXSVK.js → run-tests-6AZTCLL7.js} +1 -1
- package/dist/{server-QD5KCAGD.js → server-PCSHZ5AI.js} +2 -2
- package/package.json +30 -10
|
Binary file
|
package/dist/electron-server.js
CHANGED
package/dist/index.js
CHANGED
|
@@ -35,7 +35,7 @@ import {
|
|
|
35
35
|
theme,
|
|
36
36
|
truncateOutput,
|
|
37
37
|
undoStack
|
|
38
|
-
} from "./chunk-
|
|
38
|
+
} from "./chunk-PBJ4L7SK.js";
|
|
39
39
|
import {
|
|
40
40
|
AGENTIC_BEHAVIOR_GUIDELINE,
|
|
41
41
|
AUTHOR,
|
|
@@ -55,7 +55,7 @@ import {
|
|
|
55
55
|
REPO_URL,
|
|
56
56
|
SKILLS_DIR_NAME,
|
|
57
57
|
VERSION
|
|
58
|
-
} from "./chunk-
|
|
58
|
+
} from "./chunk-46RYX62R.js";
|
|
59
59
|
|
|
60
60
|
// src/index.ts
|
|
61
61
|
import { program } from "commander";
|
|
@@ -1904,7 +1904,7 @@ ${hint}` : "")
|
|
|
1904
1904
|
description: "Run project tests and show structured report",
|
|
1905
1905
|
usage: "/test [command|filter]",
|
|
1906
1906
|
async execute(args, _ctx) {
|
|
1907
|
-
const { executeTests } = await import("./run-tests-
|
|
1907
|
+
const { executeTests } = await import("./run-tests-6AZTCLL7.js");
|
|
1908
1908
|
const argStr = args.join(" ").trim();
|
|
1909
1909
|
let testArgs = {};
|
|
1910
1910
|
if (argStr) {
|
|
@@ -5292,7 +5292,7 @@ program.command("web").description("Start Web UI server with browser-based chat
|
|
|
5292
5292
|
console.error("Error: Invalid port number. Must be between 1 and 65535.");
|
|
5293
5293
|
process.exit(1);
|
|
5294
5294
|
}
|
|
5295
|
-
const { startWebServer } = await import("./server-
|
|
5295
|
+
const { startWebServer } = await import("./server-PCSHZ5AI.js");
|
|
5296
5296
|
await startWebServer({ port, host: options.host });
|
|
5297
5297
|
});
|
|
5298
5298
|
program.command("sessions").description("List recent conversation sessions").action(async () => {
|
|
@@ -23,7 +23,7 @@ import {
|
|
|
23
23
|
setupProxy,
|
|
24
24
|
spawnAgentContext,
|
|
25
25
|
truncateOutput
|
|
26
|
-
} from "./chunk-
|
|
26
|
+
} from "./chunk-PBJ4L7SK.js";
|
|
27
27
|
import {
|
|
28
28
|
AGENTIC_BEHAVIOR_GUIDELINE,
|
|
29
29
|
CONTEXT_FILE_CANDIDATES,
|
|
@@ -35,7 +35,7 @@ import {
|
|
|
35
35
|
PLAN_MODE_SYSTEM_ADDON,
|
|
36
36
|
SKILLS_DIR_NAME,
|
|
37
37
|
VERSION
|
|
38
|
-
} from "./chunk-
|
|
38
|
+
} from "./chunk-46RYX62R.js";
|
|
39
39
|
|
|
40
40
|
// src/web/server.ts
|
|
41
41
|
import express from "express";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jinzd-ai-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Cross-platform REPL-style AI CLI with multi-provider support",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -105,31 +105,51 @@
|
|
|
105
105
|
"typescript": "^5.7.3",
|
|
106
106
|
"vitest": "^2.1.8"
|
|
107
107
|
},
|
|
108
|
+
"author": "jinzd",
|
|
108
109
|
"build": {
|
|
109
110
|
"appId": "com.jinzd.ai-cli",
|
|
110
111
|
"productName": "ai-cli",
|
|
111
|
-
"electronMain": "electron/main.cjs",
|
|
112
112
|
"artifactName": "ai-cli-${os}-${arch}.${ext}",
|
|
113
|
+
"extraMetadata": {
|
|
114
|
+
"main": "electron/main.cjs"
|
|
115
|
+
},
|
|
113
116
|
"files": [
|
|
114
117
|
"dist/**/*",
|
|
115
|
-
"
|
|
116
|
-
"electron/**/*.cjs",
|
|
117
|
-
"!dist-cjs/index.cjs"
|
|
118
|
+
"electron/**/*.cjs"
|
|
118
119
|
],
|
|
119
120
|
"extraResources": [
|
|
120
|
-
{
|
|
121
|
+
{
|
|
122
|
+
"from": "dist/web/client",
|
|
123
|
+
"to": "web-client"
|
|
124
|
+
}
|
|
125
|
+
],
|
|
126
|
+
"asar": true,
|
|
127
|
+
"asarUnpack": [
|
|
128
|
+
"dist/electron-server.js",
|
|
129
|
+
"dist/chunk-*.js"
|
|
121
130
|
],
|
|
131
|
+
"forceCodeSigning": false,
|
|
122
132
|
"win": {
|
|
123
|
-
"target": [
|
|
124
|
-
|
|
133
|
+
"target": [
|
|
134
|
+
"nsis",
|
|
135
|
+
"portable"
|
|
136
|
+
],
|
|
137
|
+
"icon": "src/web/client/icon-512.png",
|
|
138
|
+
"signAndEditExecutable": false
|
|
125
139
|
},
|
|
126
140
|
"mac": {
|
|
127
|
-
"target": [
|
|
141
|
+
"target": [
|
|
142
|
+
"dmg",
|
|
143
|
+
"zip"
|
|
144
|
+
],
|
|
128
145
|
"category": "public.app-category.developer-tools",
|
|
129
146
|
"icon": "src/web/client/icon-512.png"
|
|
130
147
|
},
|
|
131
148
|
"linux": {
|
|
132
|
-
"target": [
|
|
149
|
+
"target": [
|
|
150
|
+
"AppImage",
|
|
151
|
+
"deb"
|
|
152
|
+
],
|
|
133
153
|
"icon": "src/web/client/icon-512.png",
|
|
134
154
|
"category": "Development"
|
|
135
155
|
},
|