@vincemakes/kiso-code 0.21.0 → 0.21.1
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/chat.js +2 -2
- package/package.json +14 -14
package/dist/chat.js
CHANGED
|
@@ -633,10 +633,10 @@ submitTurn) {
|
|
|
633
633
|
break;
|
|
634
634
|
}
|
|
635
635
|
case "uncertain_pending":
|
|
636
|
-
// ruling #12 (ADR-0038): the
|
|
636
|
+
// ruling #12 (ADR-0038): the notice line is pure INFORMATION now — the
|
|
637
637
|
// approval chain guards retries, and the human question belongs
|
|
638
638
|
// only to the crash window's recovery flow (resolveUncertains).
|
|
639
|
-
body.notice(
|
|
639
|
+
body.notice(`${escapeTerminal(ev.name)} FAILED — the side effect may have applied. ${escapeTerminal(ev.error)}`);
|
|
640
640
|
break;
|
|
641
641
|
case "permission_requested": {
|
|
642
642
|
// v2d: the ToolCell shows the ❯ badge; the question takes over
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vincemakes/kiso-code",
|
|
3
|
-
"version": "0.21.
|
|
3
|
+
"version": "0.21.1",
|
|
4
4
|
"description": "kiso CLI — the durable coding agent that survives kill -9: kiso chat / kiso resume / kiso sessions.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -18,19 +18,19 @@
|
|
|
18
18
|
"test": "vitest run"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@vincemakes/kiso-ask-ext": "0.21.
|
|
22
|
-
"@vincemakes/kiso-core": "0.21.
|
|
23
|
-
"@vincemakes/kiso-evals": "0.21.
|
|
24
|
-
"@vincemakes/kiso-mcp-ext": "0.21.
|
|
25
|
-
"@vincemakes/kiso-provider-anthropic": "0.21.
|
|
26
|
-
"@vincemakes/kiso-provider-openai": "0.21.
|
|
27
|
-
"@vincemakes/kiso-runtime": "0.21.
|
|
28
|
-
"@vincemakes/kiso-skills-ext": "0.21.
|
|
29
|
-
"@vincemakes/kiso-subagent-ext": "0.21.
|
|
30
|
-
"@vincemakes/kiso-task-ext": "0.21.
|
|
31
|
-
"@vincemakes/kiso-tools-node": "0.21.
|
|
32
|
-
"@vincemakes/kiso-tui": "0.21.
|
|
33
|
-
"@vincemakes/kiso-tui-cells": "0.21.
|
|
21
|
+
"@vincemakes/kiso-ask-ext": "0.21.1",
|
|
22
|
+
"@vincemakes/kiso-core": "0.21.1",
|
|
23
|
+
"@vincemakes/kiso-evals": "0.21.1",
|
|
24
|
+
"@vincemakes/kiso-mcp-ext": "0.21.1",
|
|
25
|
+
"@vincemakes/kiso-provider-anthropic": "0.21.1",
|
|
26
|
+
"@vincemakes/kiso-provider-openai": "0.21.1",
|
|
27
|
+
"@vincemakes/kiso-runtime": "0.21.1",
|
|
28
|
+
"@vincemakes/kiso-skills-ext": "0.21.1",
|
|
29
|
+
"@vincemakes/kiso-subagent-ext": "0.21.1",
|
|
30
|
+
"@vincemakes/kiso-task-ext": "0.21.1",
|
|
31
|
+
"@vincemakes/kiso-tools-node": "0.21.1",
|
|
32
|
+
"@vincemakes/kiso-tui": "0.21.1",
|
|
33
|
+
"@vincemakes/kiso-tui-cells": "0.21.1"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@types/node": "^26.1.2",
|