skill-family-harness-node 0.7.0 → 0.8.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.8.0 locale=en baseline=sha256:85322b5fb8d4e3a2177fbe9e37427235256d530bf604d0b5cdb95cf2ad11cc50 -->
4
+ ## [0.8.0] - 2026-08-21
5
+
6
+ Lockstep version bump with Foundation 0.8.0; the Harness mechanism surface is unchanged.
7
+
8
+ ### Changed
9
+
10
+ - Contracts 1.7.0 adds the Project Profile contract, but no Harness capability or exported mechanism changes.
11
+
12
+ ### Upgrade Notes
13
+
14
+ Consumers keep their Harness mechanism pins. Project Profile verification belongs to Engineering Kit/Profile SPI, not to a new Harness mechanism.
15
+ <!-- release-skill:changelog:end version=0.8.0 locale=en -->
16
+
17
+
3
18
  <!-- release-skill:changelog:start version=0.7.0 locale=en baseline=sha256:062a81c93d213982e9d6beda1e574959ba98b18170f0c703efb0dd71573a3e77 -->
4
19
  ## [0.7.0] - 2026-08-21
5
20
 
@@ -1,5 +1,20 @@
1
1
  # 变更日志
2
2
 
3
+ <!-- release-skill:changelog:start version=0.8.0 locale=zh-CN baseline=sha256:83f13f0b9f624ee26865c5d1bb0295ecd8cbaa64c581f066b53012eadf1dc040 -->
4
+ ## [0.8.0] - 2026-08-21
5
+
6
+ 随 Foundation 0.8.0 线锁步升版;Harness 机制表面不变。
7
+
8
+ ### 变更
9
+
10
+ - Contracts 1.7.0 新增 Project Profile 合同,但 Harness 能力和导出机制均不变。
11
+
12
+ ### 升级说明
13
+
14
+ 消费者保持 Harness 机制锁定;Project Profile 校验归 Engineering Kit/Profile SPI 负责,不新增 Harness 机制。
15
+ <!-- release-skill:changelog:end version=0.8.0 locale=zh-CN -->
16
+
17
+
3
18
  <!-- release-skill:changelog:start version=0.7.0 locale=zh-CN baseline=sha256:b3c207e2dd4134b75e5219842ee64a43c6da964763a86f7e360f0d0b60667516 -->
4
19
  ## [0.7.0] - 2026-08-21
5
20
 
package/README.md CHANGED
@@ -4,22 +4,22 @@
4
4
 
5
5
  # skill-family-harness-node
6
6
 
7
- <!-- release-skill:release-version: 0.7.0 -->
7
+ <!-- release-skill:release-version: 0.8.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.7.0** (2026-08-21)
12
+ **0.8.0** (2026-08-21)
13
13
 
14
- Lockstep version bump with the Foundation 0.7.0 line; the thin mechanism runtime is unchanged.
14
+ Lockstep version bump with Foundation 0.8.0; the Harness mechanism surface is unchanged.
15
15
 
16
16
  **Changed**
17
17
 
18
- - No capability change - HARNESS_CAPABILITIES stays at 21 items and every exported mechanism (atomic contained writes, path containment, strict authority read, resource closure, digests, bounded subprocess supervision, URL credential redaction) keeps its 0.6.0 contract; the package version moves in lockstep with the Foundation line because the three leaf packages share one public version coordinate.
18
+ - Contracts 1.7.0 adds the Project Profile contract, but no Harness capability or exported mechanism changes.
19
19
 
20
20
  **Upgrade Notes**
21
21
 
22
- Version 0.7.0 carries no harness surface change. Consumers keep their existing pins; the harness computeResourceClosure resource closure remains distinct from the Kit plan closure introduced by engineering-kit 0.7.0 and the two are not interchangeable.
22
+ Consumers keep their Harness mechanism pins. Project Profile verification belongs to Engineering Kit/Profile SPI, not to a new Harness mechanism.
23
23
  <!-- release-skill:managed:end id=latest-release -->
24
24
 
25
25
  ## Problem It Solves
@@ -33,14 +33,14 @@ The Harness consumes `skill-family-contracts` (a workspace dependency), reusing
33
33
  ## Installation and Minimal Example
34
34
 
35
35
  ```sh
36
- npm install skill-family-harness-node@0.7.0
36
+ npm install skill-family-harness-node@0.8.0
37
37
  npm info skill-family-harness-node --help
38
38
  ```
39
39
 
40
40
  The minimal example shows validating a contract document inside Node:
41
41
 
42
42
  ```js
43
- // Run from an empty directory: npm install skill-family-harness-node@0.7.0
43
+ // Run from an empty directory: npm install skill-family-harness-node@0.8.0
44
44
  import { validateContractDocument } from "skill-family-harness-node";
45
45
 
46
46
  const document = {
package/README.zh-CN.md CHANGED
@@ -5,22 +5,22 @@
5
5
 
6
6
  # skill-family-harness-node
7
7
 
8
- <!-- release-skill:release-version: 0.7.0 -->
8
+ <!-- release-skill:release-version: 0.8.0 -->
9
9
 
10
10
  Contracts 机制协议的**唯一默认 Node 实现**。这是一个薄运行时(thin runtime):只实现机制协议,不引入业务语义,不做第二语言实现。
11
11
 
12
12
  <!-- release-skill:managed:start id=latest-release -->
13
- **0.7.0** (2026-08-21)
13
+ **0.8.0** (2026-08-21)
14
14
 
15
- 随 Foundation 0.7.0 线锁步升版;薄机制运行时不变。
15
+ 随 Foundation 0.8.0 线锁步升版;Harness 机制表面不变。
16
16
 
17
17
  **变更**
18
18
 
19
- - 能力无变更——HARNESS_CAPABILITIES 保持 21 项,全部导出机制(原子受收容写、路径收容、严格权威读取、资源闭包、摘要、有界子进程监督、URL 凭证脱敏)保持 0.6.0 合同;包版本随 Foundation 线锁步,因为三个叶子包共用同一公开版本坐标。
19
+ - Contracts 1.7.0 新增 Project Profile 合同,但 Harness 能力和导出机制均不变。
20
20
 
21
21
  **升级说明**
22
22
 
23
- 0.7.0 不携带任何 harness 表面变更。消费者保持既有锁定;harness computeResourceClosure 的资源闭包与 engineering-kit 0.7.0 引入的 Kit 计划闭包仍然形状不同、用途不同,二者不能互换。
23
+ 消费者保持 Harness 机制锁定;Project Profile 校验归 Engineering Kit/Profile SPI 负责,不新增 Harness 机制。
24
24
  <!-- release-skill:managed:end id=latest-release -->
25
25
 
26
26
  ## 解决的问题
@@ -34,14 +34,14 @@ Harness 消费 `skill-family-contracts`(工作区依赖),复用其方言
34
34
  ## 安装和最小示例
35
35
 
36
36
  ```sh
37
- npm install skill-family-harness-node@0.7.0
37
+ npm install skill-family-harness-node@0.8.0
38
38
  npm info skill-family-harness-node --help
39
39
  ```
40
40
 
41
41
  最小示例演示在 Node 内校验一份契约文档:
42
42
 
43
43
  ```js
44
- // 从空目录运行:npm install skill-family-harness-node@0.7.0
44
+ // 从空目录运行:npm install skill-family-harness-node@0.8.0
45
45
  import { validateContractDocument } from "skill-family-harness-node";
46
46
 
47
47
  const document = {
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.7.0",
13
+ "skill-family-contracts": "0.8.0",
14
14
  "yaml": "2.9.0"
15
15
  },
16
16
  "description": "Thin Node.js mechanism runtime for Skill Family engineering contracts.",
@@ -45,7 +45,7 @@
45
45
  "url": "https://github.com/ifoohoo/skill-family-harness-node.git"
46
46
  },
47
47
  "type": "module",
48
- "version": "0.7.0",
48
+ "version": "0.8.0",
49
49
  "scripts": {
50
50
  "check": "node --test",
51
51
  "test": "node --test"
@@ -0,0 +1,15 @@
1
+ version: 0.8.0
2
+ date: 2026-08-21
3
+ locales:
4
+ en:
5
+ summary: Lockstep version bump with Foundation 0.8.0; the Harness mechanism surface is unchanged.
6
+ changes:
7
+ changed:
8
+ - Contracts 1.7.0 adds the Project Profile contract, but no Harness capability or exported mechanism changes.
9
+ upgradeNotes: Consumers keep their Harness mechanism pins. Project Profile verification belongs to Engineering Kit/Profile SPI, not to a new Harness mechanism.
10
+ zh-CN:
11
+ summary: 随 Foundation 0.8.0 线锁步升版;Harness 机制表面不变。
12
+ changes:
13
+ changed:
14
+ - Contracts 1.7.0 新增 Project Profile 合同,但 Harness 能力和导出机制均不变。
15
+ upgradeNotes: 消费者保持 Harness 机制锁定;Project Profile 校验归 Engineering Kit/Profile SPI 负责,不新增 Harness 机制。