dsh-plugin-upgrade 2.0.0 → 2.0.1
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 +15 -0
- package/docs/EVIDENCE.md +69 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,21 @@ All notable changes to this project are documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [2.0.1] - 2026-09-20
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- **The package description named the retired corridor card instead of this one.** `package.json`
|
|
13
|
+
described 2.0.0 as "the merged version-locked `0.1.3-alpha.1` -> `0.1.5-rc.1` corridor card …
|
|
14
|
+
over one 20-seam catalog" and never mentioned the second corridor. 2.0.0 is the opposite of
|
|
15
|
+
version-locked: the scanner reads the caller peer band and routes between two closed corridors
|
|
16
|
+
(`0.1.3-alpha.1` -> `0.1.5-rc.1` as legs A+B, and `0.1.5-rc.2` -> `0.1.6-alpha.2` as leg C).
|
|
17
|
+
The text was corrected in the repository on 2026-09-20 (`b543400`); npm metadata is immutable
|
|
18
|
+
per version, so 2.0.1 is the release that carries the corrected description to the registry,
|
|
19
|
+
and with it to every catalog that copies an author's own words.
|
|
20
|
+
- No functional change: `lib/route.mjs`, `lib/scan.mjs`, `lib/scan-0.1.6.mjs`, the cards, the
|
|
21
|
+
skill body and the CLI are byte-identical to 2.0.0.
|
|
22
|
+
|
|
8
23
|
## [2.0.0] - 2026-09-19
|
|
9
24
|
|
|
10
25
|
### Changed
|
package/docs/EVIDENCE.md
CHANGED
|
@@ -352,3 +352,72 @@ wave: the fixture pair pins the same error-severity seams the card names
|
|
|
352
352
|
(`S3`, `S8`, `S9`, `S4`, `S5`, `S6`, `M1` in the bad fixture; zero error hits in the good one).
|
|
353
353
|
Nothing in leg A's provenance was discarded by the merge, and nothing in it was re-derived
|
|
354
354
|
here — where the two legs disagree, the leg that measured the seam wins.
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
---
|
|
358
|
+
|
|
359
|
+
## Section 11 - leg C (0.1.5-rc.2 -> 0.1.6-alpha.2)
|
|
360
|
+
|
|
361
|
+
> Verbatim from the dsh-plugin-upgrade-016 repository's docs/EVIDENCE.md, moved here when that corridor was folded into this package as the second index row (2026-09-19). Its sub-headings keep their own numbering.
|
|
362
|
+
|
|
363
|
+
# EVIDENCE · dsh-plugin-upgrade-016
|
|
364
|
+
|
|
365
|
+
> 走廊方法论要求:卡片与扫描器里的每一条事实都能回溯到一条命令 + 输出。
|
|
366
|
+
> 本文件记录 leg C(`0.1.5-rc.2 → 0.1.6-alpha.2`)五条接缝的出处。
|
|
367
|
+
> 标注纪律:`已实测` = 本建包会话在 `D:\deepseek-harness`(tag `dsh-v0.1.6-alpha.2`,HEAD `ddefc45`)上重跑过;`转引已核实` = 方案文件 R3/A02/A01 已在研究期回源码核实,本会话不重复跑;`未验证` = 未跑。
|
|
368
|
+
|
|
369
|
+
## E1 · `agent/created` 串行派发(error)— 已实测
|
|
370
|
+
|
|
371
|
+
```console
|
|
372
|
+
$ git -C D:\deepseek-harness grep -n "agent/created" ddefc45 -- "packages/core/agent/src/*.ts"
|
|
373
|
+
ddefc45:packages/core/agent/src/index.ts:109: * child plugins) exists before `session/created`, `agent/created`,
|
|
374
|
+
ddefc45:packages/core/agent/src/index.ts:176: * `agent/created` listeners before releasing queued work. The sequence is
|
|
375
|
+
ddefc45:packages/core/agent/src/index.ts:417: * serial `agent/created` listener fails. Emits `agent/disposed`
|
|
376
|
+
ddefc45:packages/core/agent/src/index.ts:547: await this.ctx.serial(entry.carrier, 'agent/created', {
|
|
377
|
+
```
|
|
378
|
+
|
|
379
|
+
断言:`:547` 的 `ctx.serial(..., 'agent/created', ...)` 证明监听器在创建链上**串行 await** —— 一个抛错的监听器直接中断创建。A1 语义转引 `[A02]`/`[A05]`(已核实)。
|
|
380
|
+
|
|
381
|
+
## E2 · 异步 apply 竞态(error)— 转引已核实
|
|
382
|
+
|
|
383
|
+
宿主 fiber 在卸载窗口内对迟到的 `ctx.effect` 抛 `INACTIVE_EFFECT`(抛点 `fiber.ts` 已由方案 `[A02]` 回源码核实);`register()` 返回值丢弃 = 旧闭包继续生效(反例 doublecheck `src/guard/index.ts:664`,正例 `:685-688`)。本卡检测面 = 「`export async function apply` 首个 `await` 之后出现 `ctx.effect|ctx.on|ctx.provide|ctx.plugin|*.register`」。本会话未真机复现卸载时序(`未验证`,扫描器是静态检测)。
|
|
384
|
+
|
|
385
|
+
## E3 · `settings.plugin.item` 与 `SessionListState.current`(error)— 已实测
|
|
386
|
+
|
|
387
|
+
```console
|
|
388
|
+
$ git -C D:\deepseek-harness grep -n "settings\.plugin\.item" ddefc45 -- "*.ts"
|
|
389
|
+
ddefc45:packages/client/ui-settings-models/src/client/slot-contract.ts:11: * the namespace follows `settings.plugin.item`, and the key domain stays the
|
|
390
|
+
$ git -C D:\deepseek-harness grep -n "'plugins\.item'" ddefc45 -- "*.ts"
|
|
391
|
+
ddefc45:packages/client/ui-plugin-manager/src/client/slot-contract.ts:32: 'plugins.item': { kind: 'list'; scope: 'root'; owner: PluginConfigViewProps }
|
|
392
|
+
ddefc45:packages/client/ui-plugin-manager/src/client/index.ts:89: 'plugins.item': { kind: 'list', scope: 'root' },
|
|
393
|
+
```
|
|
394
|
+
|
|
395
|
+
断言:`settings.plugin.item` 只剩一条**注释**(旧名说明),槽契约里已无该 key;新契约 = `plugins.item`(list/root)。`SessionListState.current` 的删除与 7 仓命中由 `[R3]` §② 穷尽差集核实(主控已回源码复核全部命中仓;`未验证` 本会话未重跑该差集)。
|
|
396
|
+
|
|
397
|
+
## E4 · `sessions.open/openSubagent/clear`(error)— 已实测
|
|
398
|
+
|
|
399
|
+
```console
|
|
400
|
+
$ git -C D:\deepseek-harness grep -n "openSubagent" ddefc45 -- "*.ts"
|
|
401
|
+
(no matches)
|
|
402
|
+
$ git -C D:\deepseek-harness grep -n "retain" ddefc45 -- "packages/api/session-controller/src/client/sessions/manager.ts"
|
|
403
|
+
ddefc45:packages/api/session-controller/src/client/sessions/manager.ts:149: throw new Error(`sessions.retain: unknown session ${id}`)
|
|
404
|
+
```
|
|
405
|
+
|
|
406
|
+
断言:`openSubagent` 在 alpha.2 源码零命中;替代面 `retain` 存在。`open`/`clear` 的删除与三个消费方的形态(session-pin 响亮 TypeError、background-agents 吞错、claude-move 特性探测)由 `[R3]` §② 核实。
|
|
407
|
+
|
|
408
|
+
## E5 · 模型字面量 `deepseek-v4-flash*`/`deepseek-v4-vision-exp`(error)— 已实测
|
|
409
|
+
|
|
410
|
+
```console
|
|
411
|
+
$ git -C D:\deepseek-harness grep -rn "deepseek-v4-flash" ddefc45 -- "packages"
|
|
412
|
+
(no matches)
|
|
413
|
+
$ git -C D:\deepseek-harness grep -rn "deepseek-v4-pro" ddefc45 -- "packages" | head -3
|
|
414
|
+
ddefc45:packages/client/ui-model-selection/src/client/index.ts:52: 'deepseek-official/deepseek-v4-pro': 'option.deepseekV4Pro.description',
|
|
415
|
+
```
|
|
416
|
+
|
|
417
|
+
断言:被删 id 在 alpha.2 源码零命中,`deepseek-v4-pro` 仍在册。目录 4→2 与「未编目 id 透传 text-only」(上游 `llm-deepseek/README.md:48` 原文)由 `[A03]`/`[主控 M2]` 核实;非测试区 3 仓引用 + autotier README×5 与 8 个测试文件硬编码由 `[R4]` 新发现核实。
|
|
418
|
+
|
|
419
|
+
## 家族面事实(W0 钉死,本卡前置)
|
|
420
|
+
|
|
421
|
+
- 事件词表 58(+`workspace/changes`)、槽表 70 键、默认模型目录 2 条:`[A01]` §3 核实。
|
|
422
|
+
- peer canonical 三段式:`dsh-plugin-kit/data/peer-range.json`(W0 0-K 合入,tripwire exit 0 已实测)。
|
|
423
|
+
- 未验证项(诚实):0.1.6 走廊卡在真实 45 仓上的全量扫描回归(等 W1 修复落地后跑);本包真宿主冒烟(首次 publish 前执行)。
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-plugin-upgrade",
|
|
3
|
-
"version": "2.0.
|
|
4
|
-
"description": "Plugin-author upgrade skill for DeepSeek Harness:
|
|
3
|
+
"version": "2.0.1",
|
|
4
|
+
"description": "Plugin-author upgrade skill for DeepSeek Harness: one package, one corridor index - the scanner detects the caller peer band and routes to the matching closed corridor card (0.1.3-alpha.1 -> 0.1.5-rc.1 as legs A+B, and 0.1.5-rc.2 -> 0.1.6-alpha.2 as leg C), with a zero-dependency seam scanner shipped as a bundle skill and an npx CLI.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/PerryLink/dsh-plugin-upgrade.git"
|