@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.
Files changed (2) hide show
  1. package/CHANGELOG.md +14 -13
  2. package/package.json +14 -10
package/CHANGELOG.md CHANGED
@@ -1,18 +1,19 @@
1
1
  # Changelog
2
2
 
3
- ## 0.10.2-alpha.0 (2026-09-01)
4
-
5
- ### Bug Fixes
6
-
7
- * 适配 DSH 0.1.2-alpha.3:6 个 `@deepseek-ai/*` optionalDependencies 的 range 从
8
- `^0.1.1-rc.2` 升到 `^0.1.2-alpha.3`(npm semver 的 prerelease 规则下旧 range
9
- 无法匹配 `0.1.2-alpha.3`,新版宿主下官方模块会解析到旧版本或缺失);根
10
- `@deepseek-ai/cordis` 升到 `^4.0.2`、`@deepseek-ai/schemastery` 升到 `^3.18.2`
11
- * 已对照 0.1.2-alpha.3 全量 diff 官方包:systemPrompt / tools / skills /
12
- agentPresets 契约与 `SECTION_ORDERS`(harness:identity -1000 / harness:source
13
- -900 / app:web-surface -800 / tool:bash 1000)、minimal preset 工具对挂载
14
- 形状均无变化,运行时逻辑无需调整;已在实际 0.1.2-alpha.3 web profile
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-alpha.0",
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-alpha.3",
37
- "@deepseek-ai/dsh-terminal": "^0.1.2-alpha.3",
38
- "@deepseek-ai/dsh-terminal-bash": "^0.1.2-alpha.3",
39
- "@deepseek-ai/dsh-tool-bash-persistent": "^0.1.2-alpha.3",
40
- "@deepseek-ai/dsh-fs-local": "^0.1.2-alpha.3",
41
- "@deepseek-ai/dsh-tool-str-replace-editor": "^0.1.2-alpha.3"
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
- "engines": {
52
- "node": ">=22.19.0"
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",