skill-family-harness-node 0.6.0 → 0.7.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 +15 -0
- package/CHANGELOG.zh-CN.md +15 -0
- package/CODE_OF_CONDUCT.md +131 -0
- package/CONTRIBUTING.md +25 -0
- package/README.md +7 -16
- package/README.zh-CN.md +7 -16
- package/SECURITY.md +33 -0
- package/package.json +2 -2
- package/release-notes/0.7.0.yaml +15 -0
- package/src/token-estimate-cli.mjs +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
<!-- release-skill:changelog:start version=0.7.0 locale=en baseline=sha256:062a81c93d213982e9d6beda1e574959ba98b18170f0c703efb0dd71573a3e77 -->
|
|
4
|
+
## [0.7.0] - 2026-08-21
|
|
5
|
+
|
|
6
|
+
Lockstep version bump with the Foundation 0.7.0 line; the thin mechanism runtime is unchanged.
|
|
7
|
+
|
|
8
|
+
### Changed
|
|
9
|
+
|
|
10
|
+
- 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.
|
|
11
|
+
|
|
12
|
+
### Upgrade Notes
|
|
13
|
+
|
|
14
|
+
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.
|
|
15
|
+
<!-- release-skill:changelog:end version=0.7.0 locale=en -->
|
|
16
|
+
|
|
17
|
+
|
|
3
18
|
<!-- release-skill:changelog:start version=0.6.0 locale=en baseline=sha256:c67e713aebe53382c651655a2be9e78ace8da6a1b7852c1e6acadcb383ff2422 -->
|
|
4
19
|
## [0.6.0] - 2026-08-21
|
|
5
20
|
|
package/CHANGELOG.zh-CN.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# 变更日志
|
|
2
2
|
|
|
3
|
+
<!-- release-skill:changelog:start version=0.7.0 locale=zh-CN baseline=sha256:b3c207e2dd4134b75e5219842ee64a43c6da964763a86f7e360f0d0b60667516 -->
|
|
4
|
+
## [0.7.0] - 2026-08-21
|
|
5
|
+
|
|
6
|
+
随 Foundation 0.7.0 线锁步升版;薄机制运行时不变。
|
|
7
|
+
|
|
8
|
+
### 变更
|
|
9
|
+
|
|
10
|
+
- 能力无变更——HARNESS_CAPABILITIES 保持 21 项,全部导出机制(原子受收容写、路径收容、严格权威读取、资源闭包、摘要、有界子进程监督、URL 凭证脱敏)保持 0.6.0 合同;包版本随 Foundation 线锁步,因为三个叶子包共用同一公开版本坐标。
|
|
11
|
+
|
|
12
|
+
### 升级说明
|
|
13
|
+
|
|
14
|
+
0.7.0 不携带任何 harness 表面变更。消费者保持既有锁定;harness computeResourceClosure 的资源闭包与 engineering-kit 0.7.0 引入的 Kit 计划闭包仍然形状不同、用途不同,二者不能互换。
|
|
15
|
+
<!-- release-skill:changelog:end version=0.7.0 locale=zh-CN -->
|
|
16
|
+
|
|
17
|
+
|
|
3
18
|
<!-- release-skill:changelog:start version=0.6.0 locale=zh-CN baseline=sha256:6a4a94f692909faf2090445638988b27841a8bca67a85fd7812864d656299175 -->
|
|
4
19
|
## [0.6.0] - 2026-08-21
|
|
5
20
|
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
# 贡献者公约(Contributor Covenant Code of Conduct)
|
|
2
|
+
|
|
3
|
+
本行为准则采用 Contributor Covenant 2.1 标准文本,来源明确:
|
|
4
|
+
`https://www.contributor-covenant.org/version/2/1/code_of_conduct/`。
|
|
5
|
+
译文与解读以英文原文为准;执行联系方式见文末。
|
|
6
|
+
|
|
7
|
+
## Our Pledge
|
|
8
|
+
|
|
9
|
+
We as members, contributors, and leaders pledge to make participation in our
|
|
10
|
+
community a harassment-free experience for everyone, regardless of age, body
|
|
11
|
+
size, visible or invisible disability, ethnicity, sex characteristics, gender
|
|
12
|
+
identity and expression, level of experience, education, socio-economic status,
|
|
13
|
+
nationality, personal appearance, race, religion, or sexual identity
|
|
14
|
+
and orientation.
|
|
15
|
+
|
|
16
|
+
We pledge to act and interact in ways that contribute to an open, welcoming,
|
|
17
|
+
diverse, inclusive, and healthy community.
|
|
18
|
+
|
|
19
|
+
## Our Standards
|
|
20
|
+
|
|
21
|
+
Examples of behavior that contributes to a positive environment for our
|
|
22
|
+
community include:
|
|
23
|
+
|
|
24
|
+
* Demonstrating empathy and kindness toward other people
|
|
25
|
+
* Being respectful of differing opinions, viewpoints, and experiences
|
|
26
|
+
* Giving and gracefully accepting constructive feedback
|
|
27
|
+
* Accepting responsibility and apologizing to those affected by our mistakes,
|
|
28
|
+
and learning from the experience
|
|
29
|
+
* Focusing on what is best not just for us as individuals, but for the
|
|
30
|
+
overall community
|
|
31
|
+
|
|
32
|
+
Examples of unacceptable behavior include:
|
|
33
|
+
|
|
34
|
+
* The use of sexualized language or imagery, and sexual attention or
|
|
35
|
+
advances of any kind
|
|
36
|
+
* Trolling, insulting or derogatory comments, and personal or political attacks
|
|
37
|
+
* Public or private harassment
|
|
38
|
+
* Publishing others' private information, such as a physical or email
|
|
39
|
+
address, without their explicit permission
|
|
40
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
|
41
|
+
professional setting
|
|
42
|
+
|
|
43
|
+
## Enforcement Responsibilities
|
|
44
|
+
|
|
45
|
+
Community leaders are responsible for clarifying and enforcing our standards of
|
|
46
|
+
acceptable behavior and will take appropriate and fair corrective action in
|
|
47
|
+
response to any behavior that they deem inappropriate, threatening, offensive,
|
|
48
|
+
or harmful.
|
|
49
|
+
|
|
50
|
+
Community leaders have the right and responsibility to remove, edit, or reject
|
|
51
|
+
comments, commits, code, wiki edits, issues, and other contributions that are
|
|
52
|
+
not aligned to this Code of Conduct, and will communicate reasons for moderation
|
|
53
|
+
decisions when appropriate.
|
|
54
|
+
|
|
55
|
+
## Scope
|
|
56
|
+
|
|
57
|
+
This Code of Conduct applies within all community spaces, and also applies when
|
|
58
|
+
an individual is officially representing the community in public spaces.
|
|
59
|
+
Examples of representing our community include using an official e-mail address,
|
|
60
|
+
posting via an official social media account, or acting as an appointed
|
|
61
|
+
representative at an online or offline event.
|
|
62
|
+
|
|
63
|
+
## Enforcement
|
|
64
|
+
|
|
65
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
66
|
+
reported to the community leaders responsible for enforcement through the
|
|
67
|
+
source repository's private channels (see SECURITY.md for private reporting).
|
|
68
|
+
All complaints will be reviewed and investigated promptly and fairly.
|
|
69
|
+
|
|
70
|
+
All community leaders are obligated to respect the privacy and security of the
|
|
71
|
+
reporter of any incident.
|
|
72
|
+
|
|
73
|
+
## Enforcement Guidelines
|
|
74
|
+
|
|
75
|
+
Community leaders will follow these Community Impact Guidelines in determining
|
|
76
|
+
the consequences for any action they deem in violation of this Code of Conduct:
|
|
77
|
+
|
|
78
|
+
### 1. Correction
|
|
79
|
+
|
|
80
|
+
**Community Impact**: Use of inappropriate language or other behavior deemed
|
|
81
|
+
unprofessional or unwelcome in the community.
|
|
82
|
+
|
|
83
|
+
**Consequence**: A private, written warning from community leaders, providing
|
|
84
|
+
clarity around the nature of the violation and an explanation of why the
|
|
85
|
+
behavior was inappropriate. A public apology may be requested.
|
|
86
|
+
|
|
87
|
+
### 2. Warning
|
|
88
|
+
|
|
89
|
+
**Community Impact**: A violation through a single incident or series
|
|
90
|
+
of actions.
|
|
91
|
+
|
|
92
|
+
**Consequence**: A warning with consequences for continued behavior. No
|
|
93
|
+
interaction with the people involved, including unsolicited interaction with
|
|
94
|
+
those enforcing the Code of Conduct, for a specified period of time. This
|
|
95
|
+
includes avoiding interactions in community spaces as well as external channels
|
|
96
|
+
like social media. Violating these terms may lead to a temporary or
|
|
97
|
+
permanent ban.
|
|
98
|
+
|
|
99
|
+
### 3. Temporary Ban
|
|
100
|
+
|
|
101
|
+
**Community Impact**: A serious violation of community standards, including
|
|
102
|
+
sustained inappropriate behavior.
|
|
103
|
+
|
|
104
|
+
**Consequence**: A temporary ban from any sort of interaction or public
|
|
105
|
+
communication with the community for a specified period of time. No public or
|
|
106
|
+
private interaction with the people involved, including unsolicited interaction
|
|
107
|
+
with those enforcing the Code of Conduct, is allowed during this period.
|
|
108
|
+
Violating these terms may lead to a permanent ban.
|
|
109
|
+
|
|
110
|
+
### 4. Permanent Ban
|
|
111
|
+
|
|
112
|
+
**Community Impact**: Demonstrating a pattern of violation of community
|
|
113
|
+
standards, including sustained inappropriate behavior, harassment of an
|
|
114
|
+
individual, or aggression toward or disparagement of classes of individuals.
|
|
115
|
+
|
|
116
|
+
**Consequence**: A permanent ban from any sort of public interaction within
|
|
117
|
+
the community.
|
|
118
|
+
|
|
119
|
+
## Attribution
|
|
120
|
+
|
|
121
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
|
122
|
+
version 2.1, available at
|
|
123
|
+
`https://www.contributor-covenant.org/version/2/1/code_of_conduct/`.
|
|
124
|
+
|
|
125
|
+
Community Impact Guidelines were inspired by Mozilla's code of conduct
|
|
126
|
+
enforcement ladder.
|
|
127
|
+
|
|
128
|
+
For answers to common questions about this code of conduct, see the FAQ at
|
|
129
|
+
`https://www.contributor-covenant.org/faq`.
|
|
130
|
+
|
|
131
|
+
[homepage]: https://www.contributor-covenant.org
|
package/CONTRIBUTING.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# 贡献指南(skill-family-harness-node)
|
|
2
|
+
|
|
3
|
+
本仓是 `skill-family-harness-node` 的公开发布镜像,只承载版本化发布物。开发在私有工作区进行,不在本仓公开。
|
|
4
|
+
|
|
5
|
+
## 问题报告
|
|
6
|
+
|
|
7
|
+
Bug 报告请在本仓 GitHub Issues 提交:https://github.com/ifoohoo/skill-family-harness-node/issues
|
|
8
|
+
|
|
9
|
+
提交时请尽量提供:受影响版本、最小复现步骤、预期与实际行为。
|
|
10
|
+
|
|
11
|
+
## 代码贡献
|
|
12
|
+
|
|
13
|
+
未经事先讨论的 Pull Request 不予接受。请先通过 Issue 讨论变更的动机与范围,获得维护者确认后再提交 PR。
|
|
14
|
+
|
|
15
|
+
## 行为准则
|
|
16
|
+
|
|
17
|
+
互动请遵守本仓 CODE_OF_CONDUCT.md。
|
|
18
|
+
|
|
19
|
+
## 安全报告
|
|
20
|
+
|
|
21
|
+
漏洞报告渠道见本仓 SECURITY.md。请走 Private vulnerability reporting,不要以公开 Issue 提交漏洞。
|
|
22
|
+
|
|
23
|
+
## 许可证
|
|
24
|
+
|
|
25
|
+
贡献内容默认按 Apache-2.0 授权,与本包许可证一致。
|
package/README.md
CHANGED
|
@@ -4,31 +4,22 @@
|
|
|
4
4
|
|
|
5
5
|
# skill-family-harness-node
|
|
6
6
|
|
|
7
|
-
<!-- release-skill:release-version: 0.
|
|
7
|
+
<!-- release-skill:release-version: 0.7.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.
|
|
12
|
+
**0.7.0** (2026-08-21)
|
|
13
13
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
**Added**
|
|
17
|
-
|
|
18
|
-
- Adds superviseProcess with validateTimeoutPolicy, WATCHDOG_REASONS, TERMINATION_REASONS, PROCESS_STATUSES and ENVELOPE_GUARANTEES (FND-ADR-012) - one bounded spawn, liveness by explicit events, consumer-supplied timeout policy, SIGTERM then grace then SIGKILL against the process group, and a single closed-enum termination envelope; the mechanism never restarts the supervised process and never holds timeout values.
|
|
19
|
-
- Adds readFileStrict (FG-1), the read-side twin of the strict write path - containment first, symlink refusal with O_NOFOLLOW, regular-file identity re-assertion on the opened handle (dev/ino), and a sha256 digest receipt of the exact bytes read; an optional expectedSha256 content guard fails closed before any delivery.
|
|
20
|
-
- Adds the createParents option to publishFileExclusive (FG-1) - the missing portion of the parent chain is prepared as real directories inside the containment layer and every intermediate entry is re-verified as a real directory; symlink components are still refused and no entry is ever replaced.
|
|
21
|
-
- Adds redactUrlCredentials with REDACTED_URL_PLACEHOLDER (FG-2) - strips the userinfo component from any URL before the value reaches disk or logs; unparseable input degrades to an opaque placeholder and never leaks to the output.
|
|
22
|
-
- Re-exports the contracts-owned token estimate consumption contract (consumeTokenEstimate, consumeTokenEstimateStrict and companions) next to estimateTokens, and carries the authoritative token estimator estimateTokens with the skill-family-token-estimate CLI (audit remediation C1).
|
|
14
|
+
Lockstep version bump with the Foundation 0.7.0 line; the thin mechanism runtime is unchanged.
|
|
23
15
|
|
|
24
16
|
**Changed**
|
|
25
17
|
|
|
26
|
-
-
|
|
27
|
-
- Keeps business semantics, retry/restart policy, budget thresholds, and the decision of which values are URLs under consumer ownership; the harness owns mechanism only.
|
|
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.
|
|
28
19
|
|
|
29
20
|
**Upgrade Notes**
|
|
30
21
|
|
|
31
|
-
Version 0.
|
|
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.
|
|
32
23
|
<!-- release-skill:managed:end id=latest-release -->
|
|
33
24
|
|
|
34
25
|
## Problem It Solves
|
|
@@ -42,14 +33,14 @@ The Harness consumes `skill-family-contracts` (a workspace dependency), reusing
|
|
|
42
33
|
## Installation and Minimal Example
|
|
43
34
|
|
|
44
35
|
```sh
|
|
45
|
-
npm install skill-family-harness-node@0.
|
|
36
|
+
npm install skill-family-harness-node@0.7.0
|
|
46
37
|
npm info skill-family-harness-node --help
|
|
47
38
|
```
|
|
48
39
|
|
|
49
40
|
The minimal example shows validating a contract document inside Node:
|
|
50
41
|
|
|
51
42
|
```js
|
|
52
|
-
// Run from an empty directory: npm install skill-family-harness-node@0.
|
|
43
|
+
// Run from an empty directory: npm install skill-family-harness-node@0.7.0
|
|
53
44
|
import { validateContractDocument } from "skill-family-harness-node";
|
|
54
45
|
|
|
55
46
|
const document = {
|
package/README.zh-CN.md
CHANGED
|
@@ -5,31 +5,22 @@
|
|
|
5
5
|
|
|
6
6
|
# skill-family-harness-node
|
|
7
7
|
|
|
8
|
-
<!-- release-skill:release-version: 0.
|
|
8
|
+
<!-- release-skill:release-version: 0.7.0 -->
|
|
9
9
|
|
|
10
10
|
Contracts 机制协议的**唯一默认 Node 实现**。这是一个薄运行时(thin runtime):只实现机制协议,不引入业务语义,不做第二语言实现。
|
|
11
11
|
|
|
12
12
|
<!-- release-skill:managed:start id=latest-release -->
|
|
13
|
-
**0.
|
|
13
|
+
**0.7.0** (2026-08-21)
|
|
14
14
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
**新增**
|
|
18
|
-
|
|
19
|
-
- 新增 superviseProcess 与 validateTimeoutPolicy、WATCHDOG_REASONS、TERMINATION_REASONS、PROCESS_STATUSES、ENVELOPE_GUARANTEES(FND-ADR-012):单次有界 spawn、显式事件判活、消费者提供的超时策略、对进程组 SIGTERM→宽限→SIGKILL、单一闭集枚举终止信封;机制从不重启被监督进程,也从不持有超时数值。
|
|
20
|
-
- 新增 readFileStrict(FG-1):严格写入路径的读取孪生体——先收容、拒绝符号链接(O_NOFOLLOW)、在已打开句柄上复核常规文件身份(dev/ino),并返回所读精确字节的 sha256 摘要回执;可选 expectedSha256 内容守卫在任何交付前失败关闭。
|
|
21
|
-
- publishFileExclusive 新增 createParents 选项(FG-1):父目录链缺失部分在收容层内准备为真实目录,每个中间条目都复核为真实目录;符号链接组件仍被拒绝,任何条目都不被替换。
|
|
22
|
-
- 新增 redactUrlCredentials 与 REDACTED_URL_PLACEHOLDER(FG-2):任何 URL 的 userinfo 部分在数值到达磁盘或日志前剥离;不可解析输入退化为不透明占位符,绝不泄漏到输出。
|
|
23
|
-
- 在 estimateTokens 旁转导出 contracts 拥有的 token 估算消费合同(consumeTokenEstimate、consumeTokenEstimateStrict 及伴生常量),并承载权威词元估算器 estimateTokens 与 skill-family-token-estimate CLI(审计整改 C1)。
|
|
15
|
+
随 Foundation 0.7.0 线锁步升版;薄机制运行时不变。
|
|
24
16
|
|
|
25
17
|
**变更**
|
|
26
18
|
|
|
27
|
-
- HARNESS_CAPABILITIES
|
|
28
|
-
- 业务语义、重试/重启策略、预算阈值与「哪些值是 URL」的判定继续归消费者所有;harness 只拥有机制。
|
|
19
|
+
- 能力无变更——HARNESS_CAPABILITIES 保持 21 项,全部导出机制(原子受收容写、路径收容、严格权威读取、资源闭包、摘要、有界子进程监督、URL 凭证脱敏)保持 0.6.0 合同;包版本随 Foundation 线锁步,因为三个叶子包共用同一公开版本坐标。
|
|
29
20
|
|
|
30
21
|
**升级说明**
|
|
31
22
|
|
|
32
|
-
0.
|
|
23
|
+
0.7.0 不携带任何 harness 表面变更。消费者保持既有锁定;harness computeResourceClosure 的资源闭包与 engineering-kit 0.7.0 引入的 Kit 计划闭包仍然形状不同、用途不同,二者不能互换。
|
|
33
24
|
<!-- release-skill:managed:end id=latest-release -->
|
|
34
25
|
|
|
35
26
|
## 解决的问题
|
|
@@ -43,14 +34,14 @@ Harness 消费 `skill-family-contracts`(工作区依赖),复用其方言
|
|
|
43
34
|
## 安装和最小示例
|
|
44
35
|
|
|
45
36
|
```sh
|
|
46
|
-
npm install skill-family-harness-node@0.
|
|
37
|
+
npm install skill-family-harness-node@0.7.0
|
|
47
38
|
npm info skill-family-harness-node --help
|
|
48
39
|
```
|
|
49
40
|
|
|
50
41
|
最小示例演示在 Node 内校验一份契约文档:
|
|
51
42
|
|
|
52
43
|
```js
|
|
53
|
-
// 从空目录运行:npm install skill-family-harness-node@0.
|
|
44
|
+
// 从空目录运行:npm install skill-family-harness-node@0.7.0
|
|
54
45
|
import { validateContractDocument } from "skill-family-harness-node";
|
|
55
46
|
|
|
56
47
|
const document = {
|
package/SECURITY.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# 安全策略(Security Policy)
|
|
2
|
+
|
|
3
|
+
## 支持的版本
|
|
4
|
+
|
|
5
|
+
| 版本 | 安全支持状态 |
|
|
6
|
+
| --- | --- |
|
|
7
|
+
| 0.1.x | 当前维护线:接受安全报告 |
|
|
8
|
+
| 0.0.0 | 未发布的内部骨架版本,不在公开支持范围 |
|
|
9
|
+
|
|
10
|
+
安全修复只承诺在最新的 0.1.x 线上提供;更早版本不回移修复。
|
|
11
|
+
|
|
12
|
+
## 报告漏洞
|
|
13
|
+
|
|
14
|
+
请勿通过公开 issue 直接披露未修复的安全漏洞。private workspace 仓永久
|
|
15
|
+
private,不是公开报告渠道;请通过任一 public 发布镜像仓(例如
|
|
16
|
+
`https://github.com/ifoohoo/skill-family-engineering-kit`)在 GitHub 上使用
|
|
17
|
+
**Private vulnerability reporting**(仓库 Security 页签的
|
|
18
|
+
"Report a vulnerability")私下报告。
|
|
19
|
+
|
|
20
|
+
报告时请尽量提供:
|
|
21
|
+
|
|
22
|
+
- 受影响的包与版本(`skill-family-contracts`、`skill-family-harness-node`、
|
|
23
|
+
`skill-family-engineering-kit`);
|
|
24
|
+
- 可复现的最小步骤或概念验证;
|
|
25
|
+
- 影响范围与利用前提。
|
|
26
|
+
|
|
27
|
+
## 处置承诺
|
|
28
|
+
|
|
29
|
+
- 收到报告后先确认受理,再按影响面排期修复;
|
|
30
|
+
- 修复发布前不公开披露细节;
|
|
31
|
+
- 修复随下一个补丁版本发布,并在该版本的变更记录中说明。
|
|
32
|
+
|
|
33
|
+
本文件只描述漏洞报告渠道与支持版本;实时发布状态不属于本文件范围。
|
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.
|
|
13
|
+
"skill-family-contracts": "0.7.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.
|
|
48
|
+
"version": "0.7.0",
|
|
49
49
|
"scripts": {
|
|
50
50
|
"check": "node --test",
|
|
51
51
|
"test": "node --test"
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
version: 0.7.0
|
|
2
|
+
date: 2026-08-21
|
|
3
|
+
locales:
|
|
4
|
+
en:
|
|
5
|
+
summary: Lockstep version bump with the Foundation 0.7.0 line; the thin mechanism runtime is unchanged.
|
|
6
|
+
changes:
|
|
7
|
+
changed:
|
|
8
|
+
- 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.
|
|
9
|
+
upgradeNotes: 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.
|
|
10
|
+
zh-CN:
|
|
11
|
+
summary: 随 Foundation 0.7.0 线锁步升版;薄机制运行时不变。
|
|
12
|
+
changes:
|
|
13
|
+
changed:
|
|
14
|
+
- 能力无变更——HARNESS_CAPABILITIES 保持 21 项,全部导出机制(原子受收容写、路径收容、严格权威读取、资源闭包、摘要、有界子进程监督、URL 凭证脱敏)保持 0.6.0 合同;包版本随 Foundation 线锁步,因为三个叶子包共用同一公开版本坐标。
|
|
15
|
+
upgradeNotes: 0.7.0 不携带任何 harness 表面变更。消费者保持既有锁定;harness computeResourceClosure 的资源闭包与 engineering-kit 0.7.0 引入的 Kit 计划闭包仍然形状不同、用途不同,二者不能互换。
|
|
File without changes
|