@vincemakes/kiso-code 0.16.4 → 0.16.5
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/resume-tail.js +2 -2
- package/package.json +14 -14
package/dist/resume-tail.js
CHANGED
|
@@ -55,12 +55,12 @@ export function resumeTail(events, W = 80) {
|
|
|
55
55
|
// other band on screen labels itself. It used to be `─ … ─`, a second
|
|
56
56
|
// divider weight that existed nowhere else in the product.
|
|
57
57
|
const label = skipped > 0 ? `resuming · ${turns.length} turns, showing the last ${shown.length}` : `resuming · ${turns.length} turn${turns.length === 1 ? "" : "s"}`;
|
|
58
|
-
const head = `\
|
|
58
|
+
const head = `\u2500\u2500\u2500 ${label} `;
|
|
59
59
|
// the cut floor is the WIDTH, never a constant: `Math.max(4, W)` let a
|
|
60
60
|
// four-cell rule out at W=1..3, i.e. a chrome row wider than the
|
|
61
61
|
// terminal. Every glyph here is one cell (the label is ascii plus
|
|
62
62
|
// `·`), so a code-unit slice is a cell slice.
|
|
63
|
-
lines.push(`${head}${"\
|
|
63
|
+
lines.push(`${head}${"\u2500".repeat(Math.max(1, W - head.length))}`.slice(0, Math.max(1, W)));
|
|
64
64
|
for (const t of shown) {
|
|
65
65
|
// the human's turn keeps the quote gutter — the one glyph in the
|
|
66
66
|
// product that means "these are somebody's exact words". The `\u203a`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vincemakes/kiso-code",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.5",
|
|
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.16.
|
|
22
|
-
"@vincemakes/kiso-core": "0.16.
|
|
23
|
-
"@vincemakes/kiso-evals": "0.16.
|
|
24
|
-
"@vincemakes/kiso-mcp-ext": "0.16.
|
|
25
|
-
"@vincemakes/kiso-provider-anthropic": "0.16.
|
|
26
|
-
"@vincemakes/kiso-provider-openai": "0.16.
|
|
27
|
-
"@vincemakes/kiso-runtime": "0.16.
|
|
28
|
-
"@vincemakes/kiso-skills-ext": "0.16.
|
|
29
|
-
"@vincemakes/kiso-subagent-ext": "0.16.
|
|
30
|
-
"@vincemakes/kiso-task-ext": "0.16.
|
|
31
|
-
"@vincemakes/kiso-tools-node": "0.16.
|
|
32
|
-
"@vincemakes/kiso-tui": "0.16.
|
|
33
|
-
"@vincemakes/kiso-tui-cells": "0.16.
|
|
21
|
+
"@vincemakes/kiso-ask-ext": "0.16.5",
|
|
22
|
+
"@vincemakes/kiso-core": "0.16.5",
|
|
23
|
+
"@vincemakes/kiso-evals": "0.16.5",
|
|
24
|
+
"@vincemakes/kiso-mcp-ext": "0.16.5",
|
|
25
|
+
"@vincemakes/kiso-provider-anthropic": "0.16.5",
|
|
26
|
+
"@vincemakes/kiso-provider-openai": "0.16.5",
|
|
27
|
+
"@vincemakes/kiso-runtime": "0.16.5",
|
|
28
|
+
"@vincemakes/kiso-skills-ext": "0.16.5",
|
|
29
|
+
"@vincemakes/kiso-subagent-ext": "0.16.5",
|
|
30
|
+
"@vincemakes/kiso-task-ext": "0.16.5",
|
|
31
|
+
"@vincemakes/kiso-tools-node": "0.16.5",
|
|
32
|
+
"@vincemakes/kiso-tui": "0.16.5",
|
|
33
|
+
"@vincemakes/kiso-tui-cells": "0.16.5"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@types/node": "^26.1.2",
|