skill-family-harness-node 0.16.0 → 0.17.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # Changelog
2
2
 
3
+ <!-- release-skill:changelog:start version=0.17.0 locale=en baseline=sha256:5c685956ff1920dccdd91198687dbc1414bfef474a0d297bbcb7704014c549bd -->
4
+ ## [0.17.0] - 2026-09-01
5
+
6
+ Harness 0.17.0 is a lockstep version update with no new mechanism, native source change, or public API.
7
+
8
+ ### Changed
9
+
10
+ - Moves the package version to 0.17.0 together with Contracts and Engineering Kit while preserving the existing Harness capability and native prebuild surfaces.
11
+
12
+ ### Upgrade Notes
13
+
14
+ Pin all three Foundation packages to exactly 0.17.0. Engineering-baseline validation and structural comparison belong to Contracts and Engineering Kit; no Harness migration is required.
15
+ <!-- release-skill:changelog:end version=0.17.0 locale=en -->
16
+
17
+
3
18
  <!-- release-skill:changelog:start version=0.16.0 locale=en baseline=sha256:27fd0f5623d5c93b3076af93231101956233f179dd0cab3d1c74dae891668ea8 -->
4
19
  ## [0.16.0] - 2026-08-31
5
20
 
@@ -1,5 +1,20 @@
1
1
  # 变更日志
2
2
 
3
+ <!-- release-skill:changelog:start version=0.17.0 locale=zh-CN baseline=sha256:fc1c5f48463b2d62363952f566011600a8a84b11456519507c8dc03bf58756d5 -->
4
+ ## [0.17.0] - 2026-09-01
5
+
6
+ Harness 0.17.0 随 Foundation 锁步升版,不新增机制,不修改原生源码或公共 API。
7
+
8
+ ### 变更
9
+
10
+ - 包版本与 Contracts、Engineering Kit 一同升至 0.17.0,既有 Harness 能力和原生预构建表面保持不变。
11
+
12
+ ### 升级说明
13
+
14
+ 三个 Foundation 包须一起精确锁定到 0.17.0。工程基线校验与结构比较分别归 Contracts 和 Engineering Kit 负责,无需迁移 Harness API。
15
+ <!-- release-skill:changelog:end version=0.17.0 locale=zh-CN -->
16
+
17
+
3
18
  <!-- release-skill:changelog:start version=0.16.0 locale=zh-CN baseline=sha256:31d28348db231171b1ea5754c514d7fe3cc336c1063026af8763d92553d225de -->
4
19
  ## [0.16.0] - 2026-08-31
5
20
 
package/README.md CHANGED
@@ -4,23 +4,22 @@
4
4
 
5
5
  # skill-family-harness-node
6
6
 
7
- <!-- release-skill:release-version: 0.16.0 -->
7
+ <!-- release-skill:release-version: 0.17.0 -->
8
8
 
9
9
  The **single default Node implementation** of the Contracts mechanism protocol. This is a thin runtime: it only implements the mechanism protocol, introduces no business semantics, and does not provide a second-language implementation.
10
10
 
11
11
  <!-- release-skill:managed:start id=latest-release -->
12
- **0.16.0** (2026-08-31)
12
+ **0.17.0** (2026-09-01)
13
13
 
14
- Harness 0.16.0 clarifies the existing rawSink boundary and keeps output redaction outside Foundation.
14
+ Harness 0.17.0 is a lockstep version update with no new mechanism, native source change, or public API.
15
15
 
16
16
  **Changed**
17
17
 
18
- - Documents rawSink as a protected 0600 raw stdout/stderr sink in a fresh canonical temporary root, not a redaction API.
19
- - Explicitly rejects rawStreamSink, transform sinks, generic sanitizers, second runners, and new stdout callbacks for a single-consumer redaction request.
18
+ - Moves the package version to 0.17.0 together with Contracts and Engineering Kit while preserving the existing Harness capability and native prebuild surfaces.
20
19
 
21
20
  **Upgrade Notes**
22
21
 
23
- Consumers that require zero plaintext on the filesystem must own the threat model and implementation; this release adds no redaction or zero-plaintext guarantee.
22
+ Pin all three Foundation packages to exactly 0.17.0. Engineering-baseline validation and structural comparison belong to Contracts and Engineering Kit; no Harness migration is required.
24
23
  <!-- release-skill:managed:end id=latest-release -->
25
24
 
26
25
  ## Problem It Solves
@@ -33,7 +32,7 @@ The Harness consumes `skill-family-contracts` (a workspace dependency), reusing
33
32
 
34
33
  ## Installation and Minimal Example
35
34
 
36
- Version 0.16.0 is a local candidate. Build all three tarballs into one temporary directory and install those exact files for a candidate check:
35
+ Version 0.17.0 is a local candidate. Build all three tarballs into one temporary directory and install those exact files for a candidate check:
37
36
 
38
37
  ```sh
39
38
  pack_dir="$(mktemp -d)"
@@ -41,13 +40,13 @@ pack_dir="$(mktemp -d)"
41
40
  (cd packages/skill-family-harness-node && pnpm pack --pack-destination "$pack_dir")
42
41
  (cd packages/skill-family-engineering-kit && pnpm pack --pack-destination "$pack_dir")
43
42
  mkdir "$pack_dir/consumer" && (cd "$pack_dir/consumer" && npm init -y)
44
- (cd "$pack_dir/consumer" && npm install "$pack_dir/skill-family-contracts-0.16.0.tgz" "$pack_dir/skill-family-harness-node-0.16.0.tgz" "$pack_dir/skill-family-engineering-kit-0.16.0.tgz")
43
+ (cd "$pack_dir/consumer" && npm install "$pack_dir/skill-family-contracts-0.17.0.tgz" "$pack_dir/skill-family-harness-node-0.17.0.tgz" "$pack_dir/skill-family-engineering-kit-0.17.0.tgz")
45
44
  ```
46
45
 
47
46
  After publication, use the registry coordinate:
48
47
 
49
48
  ```sh
50
- npm install skill-family-harness-node@0.16.0
49
+ npm install skill-family-harness-node@0.17.0
51
50
  npm info skill-family-harness-node --help
52
51
  ```
53
52
 
@@ -249,4 +248,4 @@ When the actual threat includes malicious concurrency, return a minimal upstream
249
248
 
250
249
  The separate candidate `observeExecutableIdentity({ boundRoots, lookup, interpreterPolicy? })` provides a read-only point-in-time observation of only the caller-explicit roots and lookup paths, for an immediate re-observation before launch. When an `/usr/bin/env` shebang resolves an interpreter through explicit `pathEntries`, the observation preserves the interpreter candidate's complete symlink chain rather than collapsing it to the final file. It is not part of `host-adapter` and does not prove wrapper control flow, ambient `PATH`, fd-exec/kernel image, signature trust, cross-call caching, host support/lifecycle, or domain acceptance; the caller owns those semantics. The candidate entry alone does not qualify a host.
251
250
 
252
- Version 0.16.0 is a local source candidate and is not published. Consume the three locally verified tarballs; a version marker, unit test or successful install is not complete contract integration, migration completion, or real-host qualification.
251
+ Version 0.17.0 is a local source candidate and is not published. Consume the three locally verified tarballs; a version marker, unit test or successful install is not complete contract integration, migration completion, or real-host qualification.
package/README.zh-CN.md CHANGED
@@ -5,23 +5,22 @@
5
5
 
6
6
  # skill-family-harness-node
7
7
 
8
- <!-- release-skill:release-version: 0.16.0 -->
8
+ <!-- release-skill:release-version: 0.17.0 -->
9
9
 
10
10
  Contracts 机制协议的**唯一默认 Node 实现**。这是一个薄运行时(thin runtime):只实现机制协议,不引入业务语义,不做第二语言实现。
11
11
 
12
12
  <!-- release-skill:managed:start id=latest-release -->
13
- **0.16.0** (2026-08-31)
13
+ **0.17.0** (2026-09-01)
14
14
 
15
- Harness 0.16.0 澄清现有 rawSink 边界,将输出脱敏留在 Foundation 之外。
15
+ Harness 0.17.0 Foundation 锁步升版,不新增机制,不修改原生源码或公共 API。
16
16
 
17
17
  **变更**
18
18
 
19
- - 明确 rawSink 只适用于在 fresh canonical 临时根中以 0600 保存 stdout/stderr 原始文件的场景,不是脱敏接口。
20
- - 明确拒绝为单一消费者脱敏需求新增 rawStreamSink、transform sink、通用 sanitizer、第二个 runner 或新的 stdout 回调。
19
+ - 包版本与 Contracts、Engineering Kit 一同升至 0.17.0,既有 Harness 能力和原生预构建表面保持不变。
21
20
 
22
21
  **升级说明**
23
22
 
24
- 需要硬性保证文件系统中不出现明文的消费者,应自行定义威胁模型并实现;本版本不增加脱敏或零明文保证。
23
+ 三个 Foundation 包须一起精确锁定到 0.17.0。工程基线校验与结构比较分别归 Contracts 和 Engineering Kit 负责,无需迁移 Harness API。
25
24
  <!-- release-skill:managed:end id=latest-release -->
26
25
 
27
26
  ## 解决的问题
@@ -34,7 +33,7 @@ Harness 消费 `skill-family-contracts`(工作区依赖),复用其方言
34
33
 
35
34
  ## 安装和最小示例
36
35
 
37
- 0.16.0 是本地候选版本。候选验证先把三个包分别打入同一个临时目录,再安装这三个精确 tarball:
36
+ 0.17.0 是本地候选版本。候选验证先把三个包分别打入同一个临时目录,再安装这三个精确 tarball:
38
37
 
39
38
  ```sh
40
39
  pack_dir="$(mktemp -d)"
@@ -42,13 +41,13 @@ pack_dir="$(mktemp -d)"
42
41
  (cd packages/skill-family-harness-node && pnpm pack --pack-destination "$pack_dir")
43
42
  (cd packages/skill-family-engineering-kit && pnpm pack --pack-destination "$pack_dir")
44
43
  mkdir "$pack_dir/consumer" && (cd "$pack_dir/consumer" && npm init -y)
45
- (cd "$pack_dir/consumer" && npm install "$pack_dir/skill-family-contracts-0.16.0.tgz" "$pack_dir/skill-family-harness-node-0.16.0.tgz" "$pack_dir/skill-family-engineering-kit-0.16.0.tgz")
44
+ (cd "$pack_dir/consumer" && npm install "$pack_dir/skill-family-contracts-0.17.0.tgz" "$pack_dir/skill-family-harness-node-0.17.0.tgz" "$pack_dir/skill-family-engineering-kit-0.17.0.tgz")
46
45
  ```
47
46
 
48
47
  发布后再使用 registry 坐标:
49
48
 
50
49
  ```sh
51
- npm install skill-family-harness-node@0.16.0
50
+ npm install skill-family-harness-node@0.17.0
52
51
  npm info skill-family-harness-node --help
53
52
  ```
54
53
 
@@ -249,4 +248,4 @@ v2 机制会重算每个 path-backed output 和 evidence Resource 的真实字
249
248
 
250
249
  另一个独立候选 `observeExecutableIdentity({ boundRoots, lookup, interpreterPolicy? })` 只对调用方显式提供的根和查找路径做逐次只读观察,供正式启动前紧邻重观察。`/usr/bin/env` shebang 通过显式 `pathEntries` 找到解释器时,结果保留解释器候选的完整 symlink chain,不折叠成最终文件。它不属于 `host-adapter`,也不证明 wrapper 控制流、ambient `PATH`、fd-exec/内核映像、签名信任、跨调用缓存、宿主支持/生命周期或领域接受;这些语义仍由调用方负责。候选入口存在不等于宿主已获资格。
251
250
 
252
- 0.16.0 为本地源码候选,尚未发布。消费本地已验证的三包 tarball;版本标记、单元测试或安装成功都不等于契约接入完成、迁移完成或真实宿主资格。
251
+ 0.17.0 为本地源码候选,尚未发布。消费本地已验证的三包 tarball;版本标记、单元测试或安装成功都不等于契约接入完成、迁移完成或真实宿主资格。
package/package.json CHANGED
@@ -10,7 +10,7 @@
10
10
  "dependencies": {
11
11
  "@pnpm/lockfile.fs": "1001.1.35",
12
12
  "ipaddr.js": "2.5.0",
13
- "skill-family-contracts": "0.16.0",
13
+ "skill-family-contracts": "0.17.0",
14
14
  "yaml": "2.9.0"
15
15
  },
16
16
  "description": "Thin Node.js mechanism runtime for Skill Family engineering contracts.",
@@ -49,7 +49,7 @@
49
49
  "url": "https://github.com/ifoohoo/skill-family-harness-node.git"
50
50
  },
51
51
  "type": "module",
52
- "version": "0.16.0",
52
+ "version": "0.17.0",
53
53
  "scripts": {
54
54
  "check": "node --test",
55
55
  "test": "node --test"
@@ -0,0 +1,15 @@
1
+ version: 0.17.0
2
+ date: 2026-09-01
3
+ locales:
4
+ en:
5
+ summary: Harness 0.17.0 is a lockstep version update with no new mechanism, native source change, or public API.
6
+ changes:
7
+ changed:
8
+ - Moves the package version to 0.17.0 together with Contracts and Engineering Kit while preserving the existing Harness capability and native prebuild surfaces.
9
+ upgradeNotes: Pin all three Foundation packages to exactly 0.17.0. Engineering-baseline validation and structural comparison belong to Contracts and Engineering Kit; no Harness migration is required.
10
+ zh-CN:
11
+ summary: Harness 0.17.0 随 Foundation 锁步升版,不新增机制,不修改原生源码或公共 API。
12
+ changes:
13
+ changed:
14
+ - 包版本与 Contracts、Engineering Kit 一同升至 0.17.0,既有 Harness 能力和原生预构建表面保持不变。
15
+ upgradeNotes: 三个 Foundation 包须一起精确锁定到 0.17.0。工程基线校验与结构比较分别归 Contracts 和 Engineering Kit 负责,无需迁移 Harness API。
package/src/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
1
  /** Exact Foundation release coordinate shared by the public Harness exports. */
2
- export const FOUNDATION_PACKAGE_VERSION = "0.16.0";
2
+ export const FOUNDATION_PACKAGE_VERSION = "0.17.0";