@chaoset/adaptive-perf 0.10.2-alpha.0 → 0.10.2-alpha.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/package.json +14 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.10.2-alpha.1 (2026-09-02)
|
|
4
|
+
|
|
5
|
+
### Changes
|
|
6
|
+
|
|
7
|
+
* 适配 DSH 0.1.2-alpha.5:6 个 `@deepseek-ai/dsh-*` optionalDependencies 的下限从
|
|
8
|
+
`^0.1.2-alpha.3` 升到 `^0.1.2-alpha.5`(semver 同元组 prerelease 规则下旧 range
|
|
9
|
+
本就匹配 alpha.4/alpha.5,升下限是声明实测基线);仓库侧 minimumReleaseAgeExclude
|
|
10
|
+
清单由 adapt-dsh 按 lockfile 闭包重建(27 → 35 项,覆盖闭包新增的 dsh 子包)
|
|
11
|
+
* 已对照 0.1.2-alpha.5 全量 diff 官方包(38 个):依赖的 dsh-terminal /
|
|
12
|
+
dsh-terminal-bash / dsh-tool-bash-persistent / dsh-fs-local 仅移除内联的 invariant
|
|
13
|
+
助手,dsh-tool-str-replace-editor 无变化;契约相关的 dsh-agent / dsh-tools 仅内部
|
|
14
|
+
调整(`session.ownEvents()` 换用、注释措辞),systemPrompt / tools / agentPresets
|
|
15
|
+
契约与 minimal preset 工具对挂载形状无变化;全仓 build + typecheck + 152 项测试
|
|
16
|
+
在 alpha.5 依赖闭包上通过
|
|
17
|
+
|
|
3
18
|
## 0.10.2-alpha.0 (2026-09-01)
|
|
4
19
|
|
|
5
20
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chaoset/adaptive-perf",
|
|
3
|
-
"version": "0.10.2-alpha.
|
|
3
|
+
"version": "0.10.2-alpha.1",
|
|
4
4
|
"description": "DSH host plugin: bring standard / PTC presets to minimal-mode-level performance — real Minimal tool pair, permanent injected-context suppression with on-demand discovery, runtime-context suppression, and adaptive tool-catalog trimming with demand-driven escalation",
|
|
5
|
+
"engines": {
|
|
6
|
+
"node": ">=22.19.0"
|
|
7
|
+
},
|
|
5
8
|
"type": "module",
|
|
6
9
|
"license": "MIT",
|
|
7
10
|
"files": [
|
|
@@ -33,24 +36,25 @@
|
|
|
33
36
|
}
|
|
34
37
|
},
|
|
35
38
|
"optionalDependencies": {
|
|
36
|
-
"@deepseek-ai/dsh-typert-protocol": "^0.1.2-alpha.
|
|
37
|
-
"@deepseek-ai/dsh-terminal": "^0.1.2-alpha.
|
|
38
|
-
"@deepseek-ai/dsh-terminal-bash": "^0.1.2-alpha.
|
|
39
|
-
"@deepseek-ai/dsh-tool-bash-persistent": "^0.1.2-alpha.
|
|
40
|
-
"@deepseek-ai/dsh-fs-local": "^0.1.2-alpha.
|
|
41
|
-
"@deepseek-ai/dsh-tool-str-replace-editor": "^0.1.2-alpha.
|
|
39
|
+
"@deepseek-ai/dsh-typert-protocol": "^0.1.2-alpha.5",
|
|
40
|
+
"@deepseek-ai/dsh-terminal": "^0.1.2-alpha.5",
|
|
41
|
+
"@deepseek-ai/dsh-terminal-bash": "^0.1.2-alpha.5",
|
|
42
|
+
"@deepseek-ai/dsh-tool-bash-persistent": "^0.1.2-alpha.5",
|
|
43
|
+
"@deepseek-ai/dsh-fs-local": "^0.1.2-alpha.5",
|
|
44
|
+
"@deepseek-ai/dsh-tool-str-replace-editor": "^0.1.2-alpha.5"
|
|
42
45
|
},
|
|
43
46
|
"repository": {
|
|
44
47
|
"type": "git",
|
|
45
|
-
"url": "https://github.com/winliyou/dsh-plugins.git",
|
|
48
|
+
"url": "git+https://github.com/winliyou/dsh-plugins.git",
|
|
46
49
|
"directory": "packages/adaptive-perf"
|
|
47
50
|
},
|
|
48
51
|
"publishConfig": {
|
|
49
52
|
"access": "public"
|
|
50
53
|
},
|
|
51
|
-
"
|
|
52
|
-
"
|
|
54
|
+
"bugs": {
|
|
55
|
+
"url": "https://github.com/winliyou/dsh-plugins/issues"
|
|
53
56
|
},
|
|
57
|
+
"homepage": "https://github.com/winliyou/dsh-plugins/tree/main/packages/adaptive-perf#readme",
|
|
54
58
|
"scripts": {
|
|
55
59
|
"build": "node ../../scripts/build.mjs",
|
|
56
60
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|