@vincemakes/kiso-core 0.20.2 → 0.20.3

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.
@@ -91,9 +91,11 @@ export interface KisoExtension {
91
91
  readonly append: string;
92
92
  };
93
93
  /**
94
- * 0.1.26 (MCP lazy connection): an optional LIVE flag — the CLI's banner renders
95
- * "name (connecting…)" while it is true. Soft surface: absent = no
96
- * marker (the default).
94
+ * An optional readiness datum: true while the extension's tool table is
95
+ * still settling (its live source registerLive may still grow).
96
+ * The kernel does not consult it; surfaces may render it (the CLI
97
+ * banner does). Soft surface: absent = settled (the default). Under
98
+ * review in ADR-0043 Amendment 11's ledger.
97
99
  */
98
100
  readonly connecting?: boolean;
99
101
  /**
@@ -12,11 +12,12 @@
12
12
  * model cannot call a tool that is not in its registry — no prompt can
13
13
  * achieve that guarantee.
14
14
  *
15
- * 0.1.26 (MCP lazy connection): `registerLive()` adds a LIVE tool source — a
16
- * function returning the extension's current tools array. The array grows
17
- * when the extension's background connections settle (the MCP bridge
18
- * registers its servers' tools post-connect); the registry consults the
19
- * live sources on every lookup. The registered map wins a name collision
15
+ * `registerLive()` adds a LIVE tool source — a function returning an
16
+ * extension's CURRENT tools array. Any extension whose tool table settles
17
+ * after load is such a source (the runtime registers every extension's
18
+ * table this way agent.ts; a bridge that connects in the background was
19
+ * the first to need it, 0.1.26); the registry consults the live sources
20
+ * on every lookup. The registered map wins a name collision
20
21
  * (the agent's built-ins are authoritative); the collision check that
21
22
  * would otherwise fire at registration time cannot run against a live,
22
23
  * still-growing source.
@@ -12,11 +12,12 @@
12
12
  * model cannot call a tool that is not in its registry — no prompt can
13
13
  * achieve that guarantee.
14
14
  *
15
- * 0.1.26 (MCP lazy connection): `registerLive()` adds a LIVE tool source — a
16
- * function returning the extension's current tools array. The array grows
17
- * when the extension's background connections settle (the MCP bridge
18
- * registers its servers' tools post-connect); the registry consults the
19
- * live sources on every lookup. The registered map wins a name collision
15
+ * `registerLive()` adds a LIVE tool source — a function returning an
16
+ * extension's CURRENT tools array. Any extension whose tool table settles
17
+ * after load is such a source (the runtime registers every extension's
18
+ * table this way agent.ts; a bridge that connects in the background was
19
+ * the first to need it, 0.1.26); the registry consults the live sources
20
+ * on every lookup. The registered map wins a name collision
20
21
  * (the agent's built-ins are authoritative); the collision check that
21
22
  * would otherwise fire at registration time cannot run against a live,
22
23
  * still-growing source.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vincemakes/kiso-core",
3
- "version": "0.20.2",
3
+ "version": "0.20.3",
4
4
  "description": "kiso (foundation) core — protocol, event log, loop, hooks, modes, permissions, compaction, delivery truth. The 2,000-line kernel at the bottom of the kiso framework.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -33,7 +33,7 @@
33
33
  "openai"
34
34
  ],
35
35
  "devDependencies": {
36
- "@vincemakes/kiso-evals": "0.20.2",
36
+ "@vincemakes/kiso-evals": "0.20.3",
37
37
  "@types/node": "^26.1.2",
38
38
  "typescript": "^5.7.2",
39
39
  "vitest": "^3.0.0"