dsh-rule-engine 0.5.16 → 0.6.0

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.
@@ -58,7 +58,8 @@ step("单元(test/run-all.mjs)", process.execPath, [join(root, "test", "run-
58
58
  // ── ③ 组合冒烟 ──
59
59
  step("组合冒烟(loader-smoke,真实接线+外部世界断言)", process.execPath, [join(root, "test", "loader-smoke.e2e.mjs")]);
60
60
 
61
- // ── ⑤ 工具箱覆盖(0.5.9 门禁) ──
61
+ // ── ⑤ 工具箱覆盖(0.5.9 门禁;0.6.0 B2′:素材经 CHECK_TOOL_CATALOG/--catalog 提供,缺素材=FAIL 含获取方式——
62
+ // 本机运行请设 CHECK_TOOL_CATALOG=D:\...\docs\docs-site-text\...;发布物内不硬编码任何本机路径) ──
62
63
  step("工具箱覆盖(官方 tool-catalog vs 分类表,缺失即红)", process.execPath, [join(root, "scripts", "check-tool-coverage.mjs")]);
63
64
 
64
65
  // ── ⑥ 变更工具守卫链覆盖(0.5.11 规则 24④ 跨工具一致性门禁) ──
@@ -123,6 +124,12 @@ if (judgeReal > 0) {
123
124
  // 无 AGENTS.md 冷启动 / 空白规则静默 / 任意编号规则声明式绑定 / 格式契约冒烟 / 个人标识扫描
124
125
  step("发布适用性门禁(无 AGENTS.md 冷启动 / 空白规则 / 任意编号 / 个人标识扫描)", process.execPath, [join(root, "scripts", "publish-aptitude-check.mjs")]);
125
126
 
127
+ // ── ⑨ 发布门禁 B1(阶段 B,2026-09-04:README 版本四性一致性)──
128
+ step("发布门禁 B1(README 版本四性一致性:package.json/徽章/正文/历史表/固定源)", process.execPath, [join(root, "scripts", "readme-version-check.mjs")]);
129
+
130
+ // ── ⑩ 发布门禁 B2(阶段 B,2026-09-04:lib/ 本机痕迹扫描,词表唯一源)──
131
+ step("发布门禁 B2(lib/ 本机痕迹扫描——词表唯一源,命中即红)", process.execPath, [join(root, "scripts", "local-residue-scan.mjs")]);
132
+
126
133
  console.log(lines.join("\n"));
127
134
  const failed = lines.filter((l) => l.startsWith("❌"));
128
135
  if (failed.length) {