@vincemakes/kiso-code 0.15.4 → 0.15.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.
@@ -33,6 +33,11 @@ import { type StoreRecord } from "@vincemakes/kiso-runtime/internal";
33
33
  export type SessionBadge = "uncertain" | "ask" | "interrupted" | "completed" | "failed";
34
34
  export interface SessionCard {
35
35
  readonly id: string;
36
+ /** REL-0152-D6b: what the conversation was ABOUT. An id is unique and
37
+ * says nothing; a picker of five ids is five rows the human cannot
38
+ * tell apart. From the runtime's one definition — never a second
39
+ * copy of the rule (the listing and the picker disagreed once). */
40
+ readonly title: string;
36
41
  readonly badge: SessionBadge;
37
42
  /** The human's unit: one user_input is one turn. (SessionMeta.runs
38
43
  * counts runIds, which a resume increments without the human having
@@ -28,7 +28,7 @@
28
28
  * terminal layer (sessionNote — the KC3 §1 split); this file owns the
29
29
  * FACTS.
30
30
  */
31
- import { executionLedger, openRunId } from "@vincemakes/kiso-runtime/internal";
31
+ import { executionLedger, openRunId, sessionTitle } from "@vincemakes/kiso-runtime/internal";
32
32
  /**
33
33
  * The projection. `asks` arrives as DATA because its accessor lives on
34
34
  * the session object (pendingApprovals) rather than on the record list —
@@ -74,7 +74,7 @@ export function projectSessionCard(input) {
74
74
  : outcome === "completed"
75
75
  ? "completed"
76
76
  : "failed";
77
- return { id: input.id, badge, turns, updatedAt: input.updatedAt, uncertain, asks: input.asks, outcome };
77
+ return { id: input.id, title: sessionTitle(input.records), badge, turns, updatedAt: input.updatedAt, uncertain, asks: input.asks, outcome };
78
78
  }
79
79
  /**
80
80
  * The listing's cards, newest first — the order both the picker and
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vincemakes/kiso-code",
3
- "version": "0.15.4",
3
+ "version": "0.15.5",
4
4
  "description": "kiso CLI \u2014 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.15.4",
22
- "@vincemakes/kiso-core": "0.15.4",
23
- "@vincemakes/kiso-evals": "0.15.4",
24
- "@vincemakes/kiso-mcp-ext": "0.15.4",
25
- "@vincemakes/kiso-provider-anthropic": "0.15.4",
26
- "@vincemakes/kiso-provider-openai": "0.15.4",
27
- "@vincemakes/kiso-runtime": "0.15.4",
28
- "@vincemakes/kiso-skills-ext": "0.15.4",
29
- "@vincemakes/kiso-subagent-ext": "0.15.4",
30
- "@vincemakes/kiso-task-ext": "0.15.4",
31
- "@vincemakes/kiso-tools-node": "0.15.4",
32
- "@vincemakes/kiso-tui": "0.15.4",
33
- "@vincemakes/kiso-tui-cells": "0.15.4"
21
+ "@vincemakes/kiso-ask-ext": "0.15.5",
22
+ "@vincemakes/kiso-core": "0.15.5",
23
+ "@vincemakes/kiso-evals": "0.15.5",
24
+ "@vincemakes/kiso-mcp-ext": "0.15.5",
25
+ "@vincemakes/kiso-provider-anthropic": "0.15.5",
26
+ "@vincemakes/kiso-provider-openai": "0.15.5",
27
+ "@vincemakes/kiso-runtime": "0.15.5",
28
+ "@vincemakes/kiso-skills-ext": "0.15.5",
29
+ "@vincemakes/kiso-subagent-ext": "0.15.5",
30
+ "@vincemakes/kiso-task-ext": "0.15.5",
31
+ "@vincemakes/kiso-tools-node": "0.15.5",
32
+ "@vincemakes/kiso-tui": "0.15.5",
33
+ "@vincemakes/kiso-tui-cells": "0.15.5"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@types/node": "^26.1.2",