@sema-agent/client-core 0.59.1 → 0.59.2
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/CHANGELOG.md +4 -0
- package/README.md +1 -1
- package/dist/sqlEngineCapability.js +7 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -49,6 +49,10 @@
|
|
|
49
49
|
> 挡住 ⇒ 本批把它机械化——④a0 对 `pending` 行**要求段头已是日期形**(`(未发布)` 直接红),阶段一
|
|
50
50
|
> commit 漏转在发布前就红,不再靠人记。
|
|
51
51
|
|
|
52
|
+
## 0.59.2(2026-09-06)
|
|
53
|
+
|
|
54
|
+
- `sqlEngineDoctorDetail` 两句措辞订正(仅文案,四态与读数零变):`none` 不再断言「local file stores」这个因由 —— server 7.61.0 起 `sql:null` 同时覆盖「没配 SQL 后端」与「池初始化被拒」(wire 不可分),改为两种可能都点名并指向引擎日志(cli 1.0.102 异源复审 [medium]);`unobserved` 去掉「run /doctor inside the REPL」这句端命令(包不点名端命令;cli B-038 定位:REPL /doctor 是 skill 不渲此行)。三端消费该函数的 doctor 类面文案随包变,无需改码。
|
|
55
|
+
|
|
52
56
|
## 0.59.1(2026-09-06)
|
|
53
57
|
|
|
54
58
|
> 补丁批(主会话亲做):B-005 修根,零新公面、零型面变更。
|
package/README.md
CHANGED
|
@@ -35,7 +35,7 @@ Renamed from **`@sema-agent/wire-cc-adapter`** (0.1.x, deprecated — see *Migra
|
|
|
35
35
|
|
|
36
36
|
## Scope
|
|
37
37
|
|
|
38
|
-
**Version:** 0.59.
|
|
38
|
+
**Version:** 0.59.2
|
|
39
39
|
|
|
40
40
|
- **Today** — the adapter seam, the whole `adapt()` pipeline (all 14 A-layer arms plus the
|
|
41
41
|
B/D/E tool-card layers), the notification/caps/model families, the adapter kernel (stream driver
|
|
@@ -147,12 +147,16 @@ function cleanSqlDetailScalar(v) {
|
|
|
147
147
|
export function sqlEngineDoctorDetail(reading) {
|
|
148
148
|
switch (reading.kind) {
|
|
149
149
|
case 'unobserved':
|
|
150
|
-
|
|
151
|
-
|
|
150
|
+
// 0.59.2(cli B-038):不点名任何端的命令 —— 「去哪里看」是端的事,包只说事实。
|
|
151
|
+
return ('not observed — the engine reports it on /v1/capabilities; this process has not received ' +
|
|
152
|
+
'a capabilities response from the engine yet');
|
|
152
153
|
case 'not_reported':
|
|
153
154
|
return 'not reported by this engine — the capability position needs a newer engine';
|
|
154
155
|
case 'none':
|
|
155
|
-
|
|
156
|
+
// 0.59.2(cli 1.0.102 异源复审 [medium]):server 7.61.0 起 `sql:null` 同时覆盖「没配 SQL 后端」与
|
|
157
|
+
// 「池初始化被拒」,wire 上不可分 ⇒ 这句话**不推断因由**,两种可能都点名并指向引擎日志。
|
|
158
|
+
return ('none — the engine reports no SQL engine posture: either this deployment has no SQL backend, ' +
|
|
159
|
+
'or its initialization was refused (the engine log says which)');
|
|
156
160
|
case 'present': {
|
|
157
161
|
const e = cleanSqlDetailScalar(reading.view.engine);
|
|
158
162
|
const i = cleanSqlDetailScalar(reading.view.isolation);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sema-agent/client-core",
|
|
3
|
-
"version": "0.59.
|
|
3
|
+
"version": "0.59.2",
|
|
4
4
|
"description": "Client-side session runtime shared by every sema human client (TUI / web / desktop): sema wire frames (AgentEvent) -> CC session vocabulary (SDKMessage) with dual-plane output (transcript/chrome), deterministic transcript ids, lane discipline as a type, and the notification/dedup ledgers. Every CC-skin shape is collected here so the wire itself stays neutral. Renamed from @sema-agent/wire-cc-adapter (0.1.x).",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|