@vincemakes/kiso-code 0.18.0 → 0.19.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/index.js +9 -0
- package/package.json +14 -14
package/dist/index.js
CHANGED
|
@@ -289,6 +289,15 @@ function makeLineInput() {
|
|
|
289
289
|
dock.bindApproval(() => editor.panelState()); // W21: the panel's bound state
|
|
290
290
|
dock.bindSheet(() => editor.sheetOpen()); // TUI2-R1 (D): the ? keys sheet
|
|
291
291
|
dock.bindPick(() => editor.pickState()); // TUI2-R2 ②: the resume picker's band
|
|
292
|
+
// R5: the transcript viewer. The editor reports whether it is up and
|
|
293
|
+
// forwards the commands; the STATE lives in the compositor, because
|
|
294
|
+
// the entries the viewer lists are the compositor's own cells.
|
|
295
|
+
editor.bindViewer(() => dock.viewerOpen(), (cmd) => {
|
|
296
|
+
if (cmd === "open" || cmd === "close")
|
|
297
|
+
dock.viewerToggleMode();
|
|
298
|
+
else
|
|
299
|
+
dock.viewerKey(cmd);
|
|
300
|
+
});
|
|
292
301
|
return editorInput(editor);
|
|
293
302
|
}
|
|
294
303
|
return readlineInput(createInterface({ input: process.stdin, output: process.stdout }));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vincemakes/kiso-code",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.19.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.
|
|
22
|
-
"@vincemakes/kiso-core": "0.
|
|
23
|
-
"@vincemakes/kiso-evals": "0.
|
|
24
|
-
"@vincemakes/kiso-mcp-ext": "0.
|
|
25
|
-
"@vincemakes/kiso-provider-anthropic": "0.
|
|
26
|
-
"@vincemakes/kiso-provider-openai": "0.
|
|
27
|
-
"@vincemakes/kiso-runtime": "0.
|
|
28
|
-
"@vincemakes/kiso-skills-ext": "0.
|
|
29
|
-
"@vincemakes/kiso-subagent-ext": "0.
|
|
30
|
-
"@vincemakes/kiso-task-ext": "0.
|
|
31
|
-
"@vincemakes/kiso-tools-node": "0.
|
|
32
|
-
"@vincemakes/kiso-tui": "0.
|
|
33
|
-
"@vincemakes/kiso-tui-cells": "0.
|
|
21
|
+
"@vincemakes/kiso-ask-ext": "0.19.1",
|
|
22
|
+
"@vincemakes/kiso-core": "0.19.1",
|
|
23
|
+
"@vincemakes/kiso-evals": "0.19.1",
|
|
24
|
+
"@vincemakes/kiso-mcp-ext": "0.19.1",
|
|
25
|
+
"@vincemakes/kiso-provider-anthropic": "0.19.1",
|
|
26
|
+
"@vincemakes/kiso-provider-openai": "0.19.1",
|
|
27
|
+
"@vincemakes/kiso-runtime": "0.19.1",
|
|
28
|
+
"@vincemakes/kiso-skills-ext": "0.19.1",
|
|
29
|
+
"@vincemakes/kiso-subagent-ext": "0.19.1",
|
|
30
|
+
"@vincemakes/kiso-task-ext": "0.19.1",
|
|
31
|
+
"@vincemakes/kiso-tools-node": "0.19.1",
|
|
32
|
+
"@vincemakes/kiso-tui": "0.19.1",
|
|
33
|
+
"@vincemakes/kiso-tui-cells": "0.19.1"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@types/node": "^26.1.2",
|