skill-family-harness-node 0.19.3 → 0.20.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,21 @@
1
1
  # Changelog
2
2
 
3
+ <!-- release-skill:changelog:start version=0.20.0 locale=en baseline=sha256:07e569fb3b5eb03df9a79953aec17b84d25b433b6b031da4cae9e757d60e3f4e -->
4
+ ## [0.20.0] - 2026-09-10
5
+
6
+ Harness 0.20.0 aligns with Contracts 1.18.0 and Foundation 0.20.0 without adding a new runtime mechanism.
7
+
8
+ ### Changed
9
+
10
+ - Aligns package identity and published projections with the lockstep Foundation 0.20.0 release.
11
+ - Reuses the existing process supervision, binding, snapshot, and private-output mechanisms for the Cursor driver implemented by Engineering Kit.
12
+
13
+ ### Upgrade Notes
14
+
15
+ Pin all three Foundation packages to exactly 0.20.0. Harness adds no Cursor-specific runtime layer or automatic trust behavior.
16
+ <!-- release-skill:changelog:end version=0.20.0 locale=en -->
17
+
18
+
3
19
  <!-- release-skill:changelog:start version=0.19.3 locale=en baseline=sha256:097787640991b8387edbe6a292c2c3249b6cfe51502288f4b186daaa8e42163c -->
4
20
  ## [0.19.3] - 2026-09-08
5
21
 
@@ -1,5 +1,21 @@
1
1
  # 变更日志
2
2
 
3
+ <!-- release-skill:changelog:start version=0.20.0 locale=zh-CN baseline=sha256:b02138525f60fd7aed125a9f0712090cf3d918e109b7e86361b86e6d044330cf -->
4
+ ## [0.20.0] - 2026-09-10
5
+
6
+ Harness 0.20.0 与 Contracts 1.18.0 和 Foundation 0.20.0 对齐,不增加新的运行时机制。
7
+
8
+ ### 变更
9
+
10
+ - 包身份和公开投影与 Foundation 0.20.0 锁步版本对齐。
11
+ - Engineering Kit 的 Cursor 驱动继续复用既有进程监督、绑定、快照和私有输出机制。
12
+
13
+ ### 升级说明
14
+
15
+ 三个 Foundation 包须一起精确锁定到 0.20.0。Harness 不增加 Cursor 专属运行层,也不增加自动信任行为。
16
+ <!-- release-skill:changelog:end version=0.20.0 locale=zh-CN -->
17
+
18
+
3
19
  <!-- release-skill:changelog:start version=0.19.3 locale=zh-CN baseline=sha256:bd93b40eb86b9acf3deb13b5f8f905f6c26ae4aa36da17a2045c3d51dac2f7c3 -->
4
20
  ## [0.19.3] - 2026-09-08
5
21
 
package/README.md CHANGED
@@ -4,22 +4,23 @@
4
4
 
5
5
  # skill-family-harness-node
6
6
 
7
- <!-- release-skill:release-version: 0.19.3 -->
7
+ <!-- release-skill:release-version: 0.20.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.19.3** (2026-09-08)
12
+ **0.20.0** (2026-09-10)
13
13
 
14
- Harness 0.19.3 aligns its package and release documentation with the Foundation Adoption Review Qoder distribution patch. Existing mechanisms and runtime behavior are unchanged.
14
+ Harness 0.20.0 aligns with Contracts 1.18.0 and Foundation 0.20.0 without adding a new runtime mechanism.
15
15
 
16
16
  **Changed**
17
17
 
18
- - Aligns the package version, release documentation, and verified public package projection with Foundation 0.19.3 without changing Harness implementation or driver behavior.
18
+ - Aligns package identity and published projections with the lockstep Foundation 0.20.0 release.
19
+ - Reuses the existing process supervision, binding, snapshot, and private-output mechanisms for the Cursor driver implemented by Engineering Kit.
19
20
 
20
21
  **Upgrade Notes**
21
22
 
22
- Pin all three Foundation packages to exactly 0.19.3. This patch adds no Harness capability and does not change host descriptors, drivers, since values, or maturity.
23
+ Pin all three Foundation packages to exactly 0.20.0. Harness adds no Cursor-specific runtime layer or automatic trust behavior.
23
24
  <!-- release-skill:managed:end id=latest-release -->
24
25
 
25
26
  ## Problem It Solves
@@ -32,7 +33,7 @@ The Harness consumes `skill-family-contracts` (a workspace dependency), reusing
32
33
 
33
34
  ## Installation and Minimal Example
34
35
 
35
- Version 0.19.3 is the local source candidate. Build all three tarballs into one temporary directory and install those exact files for a candidate check:
36
+ Version 0.20.0 is the local source candidate. Build all three tarballs into one temporary directory and install those exact files for a candidate check:
36
37
 
37
38
  ```sh
38
39
  pack_dir="$(mktemp -d)"
@@ -40,13 +41,13 @@ pack_dir="$(mktemp -d)"
40
41
  (cd packages/skill-family-harness-node && pnpm pack --pack-destination "$pack_dir")
41
42
  (cd packages/skill-family-engineering-kit && pnpm pack --pack-destination "$pack_dir")
42
43
  mkdir "$pack_dir/consumer" && (cd "$pack_dir/consumer" && npm init -y)
43
- (cd "$pack_dir/consumer" && npm install "$pack_dir/skill-family-contracts-0.19.3.tgz" "$pack_dir/skill-family-harness-node-0.19.3.tgz" "$pack_dir/skill-family-engineering-kit-0.19.3.tgz")
44
+ (cd "$pack_dir/consumer" && npm install "$pack_dir/skill-family-contracts-0.20.0.tgz" "$pack_dir/skill-family-harness-node-0.20.0.tgz" "$pack_dir/skill-family-engineering-kit-0.20.0.tgz")
44
45
  ```
45
46
 
46
47
  After publication, use the registry coordinate:
47
48
 
48
49
  ```sh
49
- npm install skill-family-harness-node@0.19.3
50
+ npm install skill-family-harness-node@0.20.0
50
51
  npm info skill-family-harness-node --help
51
52
  ```
52
53
 
@@ -255,4 +256,4 @@ When the actual threat includes malicious concurrency, return a minimal upstream
255
256
 
256
257
  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.
257
258
 
258
- Version 0.19.3 is the local source candidate. Remote availability must be established by the corresponding release-skill post-release evidence. Consume the three locally verified tarballs for candidate checks; a version marker, unit test, or successful install is not complete contract integration, migration completion, or real-host qualification.
259
+ Version 0.20.0 is the local source candidate. Remote availability must be established by the corresponding release-skill post-release evidence. Consume the three locally verified tarballs for candidate checks; 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,22 +5,23 @@
5
5
 
6
6
  # skill-family-harness-node
7
7
 
8
- <!-- release-skill:release-version: 0.19.3 -->
8
+ <!-- release-skill:release-version: 0.20.0 -->
9
9
 
10
10
  Contracts 机制协议的**唯一默认 Node 实现**。这是一个薄运行时(thin runtime):只实现机制协议,不引入业务语义,不做第二语言实现。
11
11
 
12
12
  <!-- release-skill:managed:start id=latest-release -->
13
- **0.19.3** (2026-09-08)
13
+ **0.20.0** (2026-09-10)
14
14
 
15
- Harness 0.19.3 将包版本和发布文档与 Foundation Adoption Review Qoder 分发补丁对齐。既有机制和运行时行为保持不变。
15
+ Harness 0.20.0 Contracts 1.18.0 Foundation 0.20.0 对齐,不增加新的运行时机制。
16
16
 
17
17
  **变更**
18
18
 
19
- - 包版本、发布文档和经验证的公开 package.json 投影与 Foundation 0.19.3 数值对齐;Harness 实现和 driver 行为不变。
19
+ - 包身份和公开投影与 Foundation 0.20.0 锁步版本对齐。
20
+ - Engineering Kit 的 Cursor 驱动继续复用既有进程监督、绑定、快照和私有输出机制。
20
21
 
21
22
  **升级说明**
22
23
 
23
- 三个 Foundation 包须一起精确锁定到 0.19.3。本补丁不增加 Harness 能力,不改变宿主 descriptor、driver、since 字段或成熟度。
24
+ 三个 Foundation 包须一起精确锁定到 0.20.0。Harness 不增加 Cursor 专属运行层,也不增加自动信任行为。
24
25
  <!-- release-skill:managed:end id=latest-release -->
25
26
 
26
27
  ## 解决的问题
@@ -33,7 +34,7 @@ Harness 消费 `skill-family-contracts`(工作区依赖),复用其方言
33
34
 
34
35
  ## 安装和最小示例
35
36
 
36
- 0.19.3 是本地源码候选。候选验证先把三个包分别打入同一个临时目录,再安装这三个精确 tarball:
37
+ 0.20.0 是本地源码候选。候选验证先把三个包分别打入同一个临时目录,再安装这三个精确 tarball:
37
38
 
38
39
  ```sh
39
40
  pack_dir="$(mktemp -d)"
@@ -41,13 +42,13 @@ pack_dir="$(mktemp -d)"
41
42
  (cd packages/skill-family-harness-node && pnpm pack --pack-destination "$pack_dir")
42
43
  (cd packages/skill-family-engineering-kit && pnpm pack --pack-destination "$pack_dir")
43
44
  mkdir "$pack_dir/consumer" && (cd "$pack_dir/consumer" && npm init -y)
44
- (cd "$pack_dir/consumer" && npm install "$pack_dir/skill-family-contracts-0.19.3.tgz" "$pack_dir/skill-family-harness-node-0.19.3.tgz" "$pack_dir/skill-family-engineering-kit-0.19.3.tgz")
45
+ (cd "$pack_dir/consumer" && npm install "$pack_dir/skill-family-contracts-0.20.0.tgz" "$pack_dir/skill-family-harness-node-0.20.0.tgz" "$pack_dir/skill-family-engineering-kit-0.20.0.tgz")
45
46
  ```
46
47
 
47
48
  发布后再使用 registry 坐标:
48
49
 
49
50
  ```sh
50
- npm install skill-family-harness-node@0.19.3
51
+ npm install skill-family-harness-node@0.20.0
51
52
  npm info skill-family-harness-node --help
52
53
  ```
53
54
 
@@ -255,4 +256,4 @@ v2 机制会重算每个 path-backed output 和 evidence Resource 的真实字
255
256
 
256
257
  另一个独立候选 `observeExecutableIdentity({ boundRoots, lookup, interpreterPolicy? })` 只对调用方显式提供的根和查找路径做逐次只读观察,供正式启动前紧邻重观察。`/usr/bin/env` shebang 通过显式 `pathEntries` 找到解释器时,结果保留解释器候选的完整 symlink chain,不折叠成最终文件。它不属于 `host-adapter`,也不证明 wrapper 控制流、ambient `PATH`、fd-exec/内核映像、签名信任、跨调用缓存、宿主支持/生命周期或领域接受;这些语义仍由调用方负责。候选入口存在不等于宿主已获资格。
257
258
 
258
- 0.19.3 是本地源码候选,远端可用性须由对应的 release-skill 发布后证据证明。候选检查使用本地已验证的三包 tarball;版本标记、单元测试或安装成功都不等于契约接入完成、迁移完成或真实宿主资格。
259
+ 0.20.0 是本地源码候选,远端可用性须由对应的 release-skill 发布后证据证明。候选检查使用本地已验证的三包 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.19.3",
13
+ "skill-family-contracts": "0.20.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.19.3",
52
+ "version": "0.20.0",
53
53
  "scripts": {
54
54
  "check": "node --test",
55
55
  "test": "node --test"
@@ -0,0 +1,17 @@
1
+ version: 0.20.0
2
+ date: 2026-09-10
3
+ locales:
4
+ en:
5
+ summary: Harness 0.20.0 aligns with Contracts 1.18.0 and Foundation 0.20.0 without adding a new runtime mechanism.
6
+ changes:
7
+ changed:
8
+ - Aligns package identity and published projections with the lockstep Foundation 0.20.0 release.
9
+ - Reuses the existing process supervision, binding, snapshot, and private-output mechanisms for the Cursor driver implemented by Engineering Kit.
10
+ upgradeNotes: Pin all three Foundation packages to exactly 0.20.0. Harness adds no Cursor-specific runtime layer or automatic trust behavior.
11
+ zh-CN:
12
+ summary: Harness 0.20.0 与 Contracts 1.18.0 和 Foundation 0.20.0 对齐,不增加新的运行时机制。
13
+ changes:
14
+ changed:
15
+ - 包身份和公开投影与 Foundation 0.20.0 锁步版本对齐。
16
+ - Engineering Kit 的 Cursor 驱动继续复用既有进程监督、绑定、快照和私有输出机制。
17
+ upgradeNotes: 三个 Foundation 包须一起精确锁定到 0.20.0。Harness 不增加 Cursor 专属运行层,也不增加自动信任行为。
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.19.3";
2
+ export const FOUNDATION_PACKAGE_VERSION = "0.20.0";