@vincemakes/kiso-code 0.1.25 → 0.1.26
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/index.js +5 -2
- package/package.json +8 -8
package/dist/index.js
CHANGED
|
@@ -178,10 +178,13 @@ function bannerExtensionText() {
|
|
|
178
178
|
if (total === 0)
|
|
179
179
|
return "";
|
|
180
180
|
const parts = [];
|
|
181
|
+
// 0.1.26 (MCP 懒连接): an extension with a live `connecting` flag shows
|
|
182
|
+
// its in-flight state in the banner — "mcp (connecting…)".
|
|
183
|
+
const label = (e) => e.connecting === true ? `${e.name} (connecting…)` : e.name;
|
|
181
184
|
if (userExtensions.length > 0)
|
|
182
|
-
parts.push(userExtensions.map(
|
|
185
|
+
parts.push(userExtensions.map(label).join(", "));
|
|
183
186
|
if (projectExtensions.length > 0)
|
|
184
|
-
parts.push(`project: ${projectExtensions.map(
|
|
187
|
+
parts.push(`project: ${projectExtensions.map(label).join(", ")}`);
|
|
185
188
|
return ` · [${total} extension${total === 1 ? "" : "s"}: ${parts.join(" · ")}]`;
|
|
186
189
|
}
|
|
187
190
|
/** E1: the startup banner line(s) — TTY: logo + merged extensions; off-TTY:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vincemakes/kiso-code",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.26",
|
|
4
4
|
"description": "kiso CLI \u2014 the coding-agent reference product: kiso chat / kiso resume / kiso sessions.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -18,13 +18,13 @@
|
|
|
18
18
|
"test": "vitest run"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@vincemakes/kiso-core": "0.1.
|
|
22
|
-
"@vincemakes/kiso-evals": "0.1.
|
|
23
|
-
"@vincemakes/kiso-provider-anthropic": "0.1.
|
|
24
|
-
"@vincemakes/kiso-provider-openai": "0.1.
|
|
25
|
-
"@vincemakes/kiso-runtime": "0.1.
|
|
26
|
-
"@vincemakes/kiso-tools-node": "0.1.
|
|
27
|
-
"@vincemakes/kiso-tui": "0.1.
|
|
21
|
+
"@vincemakes/kiso-core": "0.1.26",
|
|
22
|
+
"@vincemakes/kiso-evals": "0.1.26",
|
|
23
|
+
"@vincemakes/kiso-provider-anthropic": "0.1.26",
|
|
24
|
+
"@vincemakes/kiso-provider-openai": "0.1.26",
|
|
25
|
+
"@vincemakes/kiso-runtime": "0.1.26",
|
|
26
|
+
"@vincemakes/kiso-tools-node": "0.1.26",
|
|
27
|
+
"@vincemakes/kiso-tui": "0.1.26"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@types/node": "^26.1.2",
|