@vincemakes/kiso-code 0.16.4 → 0.16.6

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.
Files changed (2) hide show
  1. package/dist/resume-tail.js +2 -2
  2. package/package.json +14 -14
@@ -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 = `\u254c\u254c\u254c ${label} `;
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}${"\u254c".repeat(Math.max(1, W - head.length))}`.slice(0, Math.max(1, W)));
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.4",
3
+ "version": "0.16.6",
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.4",
22
- "@vincemakes/kiso-core": "0.16.4",
23
- "@vincemakes/kiso-evals": "0.16.4",
24
- "@vincemakes/kiso-mcp-ext": "0.16.4",
25
- "@vincemakes/kiso-provider-anthropic": "0.16.4",
26
- "@vincemakes/kiso-provider-openai": "0.16.4",
27
- "@vincemakes/kiso-runtime": "0.16.4",
28
- "@vincemakes/kiso-skills-ext": "0.16.4",
29
- "@vincemakes/kiso-subagent-ext": "0.16.4",
30
- "@vincemakes/kiso-task-ext": "0.16.4",
31
- "@vincemakes/kiso-tools-node": "0.16.4",
32
- "@vincemakes/kiso-tui": "0.16.4",
33
- "@vincemakes/kiso-tui-cells": "0.16.4"
21
+ "@vincemakes/kiso-ask-ext": "0.16.6",
22
+ "@vincemakes/kiso-core": "0.16.6",
23
+ "@vincemakes/kiso-evals": "0.16.6",
24
+ "@vincemakes/kiso-mcp-ext": "0.16.6",
25
+ "@vincemakes/kiso-provider-anthropic": "0.16.6",
26
+ "@vincemakes/kiso-provider-openai": "0.16.6",
27
+ "@vincemakes/kiso-runtime": "0.16.6",
28
+ "@vincemakes/kiso-skills-ext": "0.16.6",
29
+ "@vincemakes/kiso-subagent-ext": "0.16.6",
30
+ "@vincemakes/kiso-task-ext": "0.16.6",
31
+ "@vincemakes/kiso-tools-node": "0.16.6",
32
+ "@vincemakes/kiso-tui": "0.16.6",
33
+ "@vincemakes/kiso-tui-cells": "0.16.6"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@types/node": "^26.1.2",