@chaoset/adaptive-perf 0.10.2-alpha.0 → 0.10.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 +14 -13
- package/package.json +14 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,18 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.10.2
|
|
4
|
-
|
|
5
|
-
###
|
|
6
|
-
|
|
7
|
-
*
|
|
8
|
-
`^0.1.1-rc.2` 升到 `^0.1.2-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
-
|
|
14
|
-
|
|
15
|
-
|
|
3
|
+
## 0.10.2 (2026-09-03)
|
|
4
|
+
|
|
5
|
+
### Changes
|
|
6
|
+
|
|
7
|
+
* alpha 线合并 + 稳定线跟进 DSH 0.1.2-rc.1:6 个 `@deepseek-ai/dsh-*`
|
|
8
|
+
optionalDependencies 由 `^0.1.1-rc.2` 升到 `^0.1.2-rc.1`(合入 alpha 线
|
|
9
|
+
0.10.2-alpha.0 / 0.10.2-alpha.1 的适配内容,功能与 0.10.1 一致)
|
|
10
|
+
* 已对照 0.1.2-rc.1 全量 diff 官方包(36 个:逐包与 0.1.2-alpha.5 字节对比,
|
|
11
|
+
除版本号外零差异——rc.1 是纯转正 bump):依赖的 dsh-terminal /
|
|
12
|
+
dsh-terminal-bash / dsh-tool-bash-persistent / dsh-fs-local /
|
|
13
|
+
dsh-tool-str-replace-editor 与契约相关的 dsh-agent / dsh-tools 均与
|
|
14
|
+
alpha.5 适配时一致,systemPrompt / tools / agentPresets 契约与 minimal
|
|
15
|
+
preset 工具对挂载形状无变化;全仓 build + typecheck + 162 项测试在 rc.1
|
|
16
|
+
依赖闭包上通过
|
|
16
17
|
|
|
17
18
|
## 0.10.1 (2026-08-29)
|
|
18
19
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chaoset/adaptive-perf",
|
|
3
|
-
"version": "0.10.2
|
|
3
|
+
"version": "0.10.2",
|
|
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-
|
|
37
|
-
"@deepseek-ai/dsh-terminal": "^0.1.2-
|
|
38
|
-
"@deepseek-ai/dsh-terminal-bash": "^0.1.2-
|
|
39
|
-
"@deepseek-ai/dsh-tool-bash-persistent": "^0.1.2-
|
|
40
|
-
"@deepseek-ai/dsh-fs-local": "^0.1.2-
|
|
41
|
-
"@deepseek-ai/dsh-tool-str-replace-editor": "^0.1.2-
|
|
39
|
+
"@deepseek-ai/dsh-typert-protocol": "^0.1.2-rc.1",
|
|
40
|
+
"@deepseek-ai/dsh-terminal": "^0.1.2-rc.1",
|
|
41
|
+
"@deepseek-ai/dsh-terminal-bash": "^0.1.2-rc.1",
|
|
42
|
+
"@deepseek-ai/dsh-tool-bash-persistent": "^0.1.2-rc.1",
|
|
43
|
+
"@deepseek-ai/dsh-fs-local": "^0.1.2-rc.1",
|
|
44
|
+
"@deepseek-ai/dsh-tool-str-replace-editor": "^0.1.2-rc.1"
|
|
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",
|