release-skill 0.2.2 → 0.2.3
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/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/.codebuddy-plugin/plugin.json +4 -2
- package/.codex-plugin/plugin.json +2 -2
- package/.kimi-plugin/plugin.json +1 -1
- package/CHANGELOG.md +19 -0
- package/INSTALL.md +7 -7
- package/INSTALL.zh-CN.md +7 -7
- package/README.md +11 -13
- package/README.zh-CN.md +10 -12
- package/adapters/claude/.claude-plugin/marketplace.json +1 -1
- package/adapters/claude/.claude-plugin/plugin.json +1 -1
- package/adapters/claude/bin/release-skill.bundle.mjs +556 -21
- package/adapters/codex/.codex-plugin/plugin.json +2 -2
- package/adapters/codex/bin/release-skill.bundle.mjs +556 -21
- package/adapters/kimi/.kimi-plugin/plugin.json +1 -1
- package/adapters/kimi/bin/release-skill.bundle.mjs +556 -21
- package/adapters/workbuddy/.codebuddy-plugin/plugin.json +1 -1
- package/adapters/workbuddy/bin/release-skill.bundle.mjs +556 -21
- package/bin/release-skill.bundle.mjs +556 -21
- package/package.json +1 -1
- package/src/adapters/plugin-marketplace.mjs +272 -30
- package/src/commands/prepare.mjs +69 -0
- package/src/commands/verify.mjs +11 -5
- package/src/core/baseline.mjs +13 -0
- package/src/core/plan.mjs +178 -0
- package/src/platforms/codebuddy.mjs +40 -0
- package/src/platforms/registry.mjs +158 -0
- package/src/producers/build-adapters.mjs +9 -2
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "release-skill",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "Safe preparation and frozen GitHub/npm production publishing with full happy end verification",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "广州市风荷科技有限公司"
|
|
7
7
|
},
|
|
8
8
|
"license": "MIT",
|
|
9
|
-
"skills":
|
|
9
|
+
"skills": [
|
|
10
|
+
"./adapters/workbuddy/skills/"
|
|
11
|
+
]
|
|
10
12
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "release-skill",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "Safe preparation and frozen GitHub/npm production publishing with full happy end verification",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "广州市风荷科技有限公司"
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
],
|
|
20
20
|
"defaultPrompt": [
|
|
21
21
|
"Assess this project for release readiness.",
|
|
22
|
-
"Prepare a release plan for version 0.2.
|
|
22
|
+
"Prepare a release plan for version 0.2.3.",
|
|
23
23
|
"Help me understand the release workflow."
|
|
24
24
|
]
|
|
25
25
|
}
|
package/.kimi-plugin/plugin.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
<!-- release-skill:changelog:start version=0.2.3 locale=en baseline=sha256:1bc1839f9d2de5481a9edc7748722c02c5c9369d2034f8c6495f6dd00a392339 -->
|
|
4
|
+
## [0.2.3] - 2026-07-26
|
|
5
|
+
|
|
6
|
+
v0.2.3 is a fix-forward release that addresses platform verification, public artifact, and documentation issues discovered in v0.2.2. The release converges platform fact sources, fixes consumer gate mapping errors, and strengthens attestation validation.
|
|
7
|
+
|
|
8
|
+
### Changed
|
|
9
|
+
|
|
10
|
+
- **Version synchronized to 0.2.3**: all plugin manifests (9 files), package.json, INSTALL.md, INSTALL.zh-CN.md, README.md, and README.zh-CN.md updated.
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- **CodeBuddy marketplace-install distribution mapping**: `verify.mjs` now correctly maps `codebuddy-marketplace-install` to `codebuddy-plugin` distribution (was incorrectly falling back to `kimi-plugin`). The `fixedEnv` for codebuddy now uses only `HOME` without `KIMI_CODE_HOME`.
|
|
15
|
+
- **Unknown consumer fallback removed**: `plugin-marketplace.mjs` now throws an explicit error for unregistered consumer platforms instead of silently falling back to Kimi configuration. Error message includes the unknown consumer id and list of registered platforms.
|
|
16
|
+
- **CodeBuddy attestation baseline exclusion**: `.release-skill/codebuddy-attestations/` is now properly excluded from workspace baseline digest calculation, preventing self-drift when codebuddy attestation files are written during the release lifecycle.
|
|
17
|
+
- **CodeBuddy manifest skills field accepts array**: `normalizeCodeBuddySkillsRel()` now accepts both string and single-element array forms for the `skills` field, matching the real CodeBuddy validator's expected shape. The root `.codebuddy-plugin/plugin.json` now uses array form.
|
|
18
|
+
- **CLI channel attestation path validation**: `validateCodeBuddyAttestation()` now validates that CLI channel `installPath` ends with the well-known `.codebuddy/plugins/marketplaces/<marketplace>/plugins/<plugin>` segment tail, closing a path-escape gap.
|
|
19
|
+
<!-- release-skill:changelog:end version=0.2.3 locale=en -->
|
|
20
|
+
|
|
21
|
+
|
|
3
22
|
<!-- release-skill:changelog:start version=0.2.2 locale=en baseline=sha256:3208d6a99e84307e77201bb42f88030caac232a3bcbf0942e5747e1934c5c658 -->
|
|
4
23
|
## [0.2.2] - 2026-07-26
|
|
5
24
|
|
package/INSTALL.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[简体中文](INSTALL.zh-CN.md)
|
|
4
4
|
|
|
5
|
-
<!-- release-skill:release-version: 0.2.
|
|
5
|
+
<!-- release-skill:release-version: 0.2.3 -->
|
|
6
6
|
## Prerequisites
|
|
7
7
|
|
|
8
8
|
- Node.js 22.0.0 or later
|
|
@@ -147,7 +147,7 @@ as a version-pinned **manual** install plus trusted observation/attestation:
|
|
|
147
147
|
default branch), confirm the trust prompt, then reload:
|
|
148
148
|
|
|
149
149
|
```
|
|
150
|
-
/plugins install https://github.com/ifoohoo/release-skill/releases/tag/release-skill-v0.2.
|
|
150
|
+
/plugins install https://github.com/ifoohoo/release-skill/releases/tag/release-skill-v0.2.3
|
|
151
151
|
/plugins reload
|
|
152
152
|
```
|
|
153
153
|
|
|
@@ -162,10 +162,10 @@ as a version-pinned **manual** install plus trusted observation/attestation:
|
|
|
162
162
|
{
|
|
163
163
|
"consumer": "kimi",
|
|
164
164
|
"plugin": "release-skill",
|
|
165
|
-
"version": "0.2.
|
|
165
|
+
"version": "0.2.3",
|
|
166
166
|
"entrySkill": "release-help",
|
|
167
167
|
"repo": "ifoohoo/release-skill",
|
|
168
|
-
"ref": "release-skill-v0.2.
|
|
168
|
+
"ref": "release-skill-v0.2.3",
|
|
169
169
|
"installPath": "<kimiCodeHome>/plugins/managed/release-skill",
|
|
170
170
|
"planDigest": "<64-hex frozen plan digest>",
|
|
171
171
|
"payloadDigest": "<64-hex frozen snapshot payload digest>",
|
|
@@ -244,7 +244,7 @@ attestation (the same capability gap and closed loop as Kimi Code):
|
|
|
244
244
|
4. **Ref limitation warning:** a codebuddy install tracks the marketplace default
|
|
245
245
|
branch and CANNOT be pinned to the frozen ref. Before writing the attestation
|
|
246
246
|
you MUST confirm the installed plugin manifest version equals the frozen
|
|
247
|
-
version `0.2.
|
|
247
|
+
version `0.2.3`; otherwise do NOT issue an attestation.
|
|
248
248
|
5. Write the attestation JSON to
|
|
249
249
|
`<root>/.release-skill/codebuddy-attestations/<planDigest>/<plugin>/release-skill-codebuddy-attestation.json`.
|
|
250
250
|
`planDigest` MUST be the frozen **plan** digest; `payloadDigest` MUST be the
|
|
@@ -258,10 +258,10 @@ attestation (the same capability gap and closed loop as Kimi Code):
|
|
|
258
258
|
{
|
|
259
259
|
"consumer": "codebuddy",
|
|
260
260
|
"plugin": "release-skill",
|
|
261
|
-
"version": "0.2.
|
|
261
|
+
"version": "0.2.3",
|
|
262
262
|
"entrySkill": "release-help",
|
|
263
263
|
"repo": "ifoohoo/release-skill",
|
|
264
|
-
"ref": "release-skill-v0.2.
|
|
264
|
+
"ref": "release-skill-v0.2.3",
|
|
265
265
|
"marketplace": "artifact-skill-set",
|
|
266
266
|
"installChannel": "desktop",
|
|
267
267
|
"installPath": "~/.workbuddy/plugins/marketplaces/artifact-skill-set/plugins/release-skill",
|
package/INSTALL.zh-CN.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[English](INSTALL.md)
|
|
4
4
|
|
|
5
|
-
<!-- release-skill:release-version: 0.2.
|
|
5
|
+
<!-- release-skill:release-version: 0.2.3 -->
|
|
6
6
|
## 前置条件
|
|
7
7
|
|
|
8
8
|
- Node.js 22.0.0 或更高版本
|
|
@@ -133,7 +133,7 @@ release-skill 把 Kimi 安装建模为“版本钉死的手动安装 + 可信观
|
|
|
133
133
|
它会安装最新 release 或默认分支),确认信任提示后重新加载:
|
|
134
134
|
|
|
135
135
|
```
|
|
136
|
-
/plugins install https://github.com/ifoohoo/release-skill/releases/tag/release-skill-v0.2.
|
|
136
|
+
/plugins install https://github.com/ifoohoo/release-skill/releases/tag/release-skill-v0.2.3
|
|
137
137
|
/plugins reload
|
|
138
138
|
```
|
|
139
139
|
|
|
@@ -147,10 +147,10 @@ release-skill 把 Kimi 安装建模为“版本钉死的手动安装 + 可信观
|
|
|
147
147
|
{
|
|
148
148
|
"consumer": "kimi",
|
|
149
149
|
"plugin": "release-skill",
|
|
150
|
-
"version": "0.2.
|
|
150
|
+
"version": "0.2.3",
|
|
151
151
|
"entrySkill": "release-help",
|
|
152
152
|
"repo": "ifoohoo/release-skill",
|
|
153
|
-
"ref": "release-skill-v0.2.
|
|
153
|
+
"ref": "release-skill-v0.2.3",
|
|
154
154
|
"installPath": "<kimiCodeHome>/plugins/managed/release-skill",
|
|
155
155
|
"planDigest": "<64 位十六进制冻结计划摘要>",
|
|
156
156
|
"payloadDigest": "<64 位十六进制冻结快照载荷摘要>",
|
|
@@ -218,7 +218,7 @@ codebuddy CLI 可以添加市场并安装插件,但 **`plugin marketplace add`
|
|
|
218
218
|
插件落点为
|
|
219
219
|
`<codebuddyHome>/.codebuddy/plugins/marketplaces/artifact-skill-set/plugins/release-skill/`。
|
|
220
220
|
4. **ref 限制警告:** codebuddy 安装跟踪市场默认分支,**无法**钉死到冻结 ref。
|
|
221
|
-
写出证明之前,必须核实已安装插件清单版本等于冻结版本 `0.2.
|
|
221
|
+
写出证明之前,必须核实已安装插件清单版本等于冻结版本 `0.2.3`;否则**不得**
|
|
222
222
|
出具证明。
|
|
223
223
|
5. 把证明 JSON 写入
|
|
224
224
|
`<root>/.release-skill/codebuddy-attestations/<planDigest>/<plugin>/release-skill-codebuddy-attestation.json`。
|
|
@@ -232,10 +232,10 @@ codebuddy CLI 可以添加市场并安装插件,但 **`plugin marketplace add`
|
|
|
232
232
|
{
|
|
233
233
|
"consumer": "codebuddy",
|
|
234
234
|
"plugin": "release-skill",
|
|
235
|
-
"version": "0.2.
|
|
235
|
+
"version": "0.2.3",
|
|
236
236
|
"entrySkill": "release-help",
|
|
237
237
|
"repo": "ifoohoo/release-skill",
|
|
238
|
-
"ref": "release-skill-v0.2.
|
|
238
|
+
"ref": "release-skill-v0.2.3",
|
|
239
239
|
"marketplace": "artifact-skill-set",
|
|
240
240
|
"installChannel": "desktop",
|
|
241
241
|
"installPath": "~/.workbuddy/plugins/marketplaces/artifact-skill-set/plugins/release-skill",
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[简体中文](README.zh-CN.md) · Installation: [English](INSTALL.md) / [简体中文](INSTALL.zh-CN.md)
|
|
4
4
|
|
|
5
|
-
<!-- release-skill:release-version: 0.2.
|
|
5
|
+
<!-- release-skill:release-version: 0.2.3 -->
|
|
6
6
|
Release preparation for Claude Code, Codex, and Kimi Code, with human-edited files kept intact.
|
|
7
7
|
|
|
8
8
|
release-skill helps a maintainer answer three questions: what will be released,
|
|
@@ -11,28 +11,26 @@ reviewed artifacts first and publishes those same artifacts later; it does not
|
|
|
11
11
|
regenerate a README or re-pack the live workspace at the last step.
|
|
12
12
|
|
|
13
13
|
<!-- release-skill:managed:start id=latest-release -->
|
|
14
|
-
**0.2.
|
|
14
|
+
**0.2.3** (2026-07-26)
|
|
15
15
|
|
|
16
|
-
v0.2.
|
|
17
|
-
|
|
18
|
-
**Added**
|
|
19
|
-
|
|
20
|
-
- **CodeBuddy platform human attestation closed loop**: CodeBuddy/WorkBuddy joins the release pipeline (`publish`/`reconcile`/`verify`) via a human attestation closed loop isomorphic to kimi. The codebuddy CLI's marketplace add/install cannot pin a frozen ref (no ref option; installs track the default branch/`latest`, measured), so the automated install checkpoint cannot guarantee frozen-artifact identity. Execute writes a manual install requirement and never execs the CLI; observe/verify consume a structured human attestation and read-only-validate the install point. Missing, expired, mismatched, or path-escaping attestations all fail closed, at the same severity as kimi (post-publish verification cannot be waived). Two measured install channels: desktop installs through the WorkBuddy desktop unified marketplace `artifact-skill-set` (`installPath` must contain the `/.workbuddy/plugins/marketplaces/artifact-skill-set/plugins/<plugin>` tail segment, segment-checked); cli runs the bundled CLI under an isolated `HOME=<authorityDir>/codebuddy-home` (`installPath` must be contained in that isolated home's marketplace plugin root). Attestations carry `installChannel` + `marketplace` fields and are validated per channel. Pipeline routing: platform id `codebuddy`, distributionType `codebuddy-plugin`, actionType `codebuddy-marketplace-install`, Tier 3 (same tier as kimi); the build adapter keeps its historical directory name `workbuddy` (`adapters/workbuddy/`, `.codebuddy-plugin/plugin.json` manifest, bytes unchanged).
|
|
21
|
-
- **External independent marketplace distribution form**: a distribution declaring `marketplaceRepo` enables the external form. The prepare production loop freezes the external marketplace HEAD online via `git ls-remote --symref` (codex hard-frozen to a commit sha, claude weak-frozen to its default branch name) and validates the external index entry via `gh api` (name match, exactly one entry, `entry.version == target version` for the claude form); declaring the external form while offline fails closed, and the external repository is strictly read-only. Frozen actions carry `repo=marketplaceRepo`, `ref=add-ref`, `marketplaceCommitSha`, `marketplaceLocation=external`, `payloadContract=external-marketplace-v1`; `snapshotPath`/`manifestDigest` still bind this unit's frozen snapshot (payload authority unchanged). Plan integrity gains an external branch (repo match, `marketplaceLocation`, 40-hex `marketplaceCommitSha`, ref structure safety); kimi/codebuddy with `marketplaceRepo` fail closed. `plugin-marketplace` gains external preflight/observe branches: `external-marketplace-v1` uses the same whole-tree containment semantics as `declared-manifest-v1` (authority is `.`, host-added paths recorded as `extraInstalledPaths` rather than failing); preflight skips the in-snapshot marketplace segment and reads the plugin manifest from the snapshot root, validating name/version and the frozen fields; observe reuses the existing strategy for install-side entry comparison (weak-frozen claude version drift fails closed). Inline/kimi/codebuddy/legacy/`declared-manifest-v1` branches are byte-for-byte unchanged.
|
|
16
|
+
v0.2.3 is a fix-forward release that addresses platform verification, public artifact, and documentation issues discovered in v0.2.2. The release converges platform fact sources, fixes consumer gate mapping errors, and strengthens attestation validation.
|
|
22
17
|
|
|
23
18
|
**Changed**
|
|
24
19
|
|
|
25
|
-
- **
|
|
20
|
+
- **Version synchronized to 0.2.3**: all plugin manifests (9 files), package.json, INSTALL.md, INSTALL.zh-CN.md, README.md, and README.zh-CN.md updated.
|
|
26
21
|
|
|
27
22
|
**Fixed**
|
|
28
23
|
|
|
29
|
-
- **CodeBuddy
|
|
30
|
-
-
|
|
24
|
+
- **CodeBuddy marketplace-install distribution mapping**: `verify.mjs` now correctly maps `codebuddy-marketplace-install` to `codebuddy-plugin` distribution (was incorrectly falling back to `kimi-plugin`). The `fixedEnv` for codebuddy now uses only `HOME` without `KIMI_CODE_HOME`.
|
|
25
|
+
- **Unknown consumer fallback removed**: `plugin-marketplace.mjs` now throws an explicit error for unregistered consumer platforms instead of silently falling back to Kimi configuration. Error message includes the unknown consumer id and list of registered platforms.
|
|
26
|
+
- **CodeBuddy attestation baseline exclusion**: `.release-skill/codebuddy-attestations/` is now properly excluded from workspace baseline digest calculation, preventing self-drift when codebuddy attestation files are written during the release lifecycle.
|
|
27
|
+
- **CodeBuddy manifest skills field accepts array**: `normalizeCodeBuddySkillsRel()` now accepts both string and single-element array forms for the `skills` field, matching the real CodeBuddy validator's expected shape. The root `.codebuddy-plugin/plugin.json` now uses array form.
|
|
28
|
+
- **CLI channel attestation path validation**: `validateCodeBuddyAttestation()` now validates that CLI channel `installPath` ends with the well-known `.codebuddy/plugins/marketplaces/<marketplace>/plugins/<plugin>` segment tail, closing a path-escape gap.
|
|
31
29
|
<!-- release-skill:managed:end id=latest-release -->
|
|
32
30
|
|
|
33
31
|
<!-- release-skill:capability:external-write-boundary -->
|
|
34
|
-
> **Current boundary:** v0.2.
|
|
35
|
-
> published status before the
|
|
32
|
+
> **Current boundary:** v0.2.3 is the current release (v0.2.2 previously held
|
|
33
|
+
> published status before the platform verification convergence fix was added).
|
|
36
34
|
> v0.1.1 completed a real production release to GitHub and npm — the first
|
|
37
35
|
> production-verified milestone — followed by
|
|
38
36
|
> exact npm installation and Claude/Codex consumer installation verification
|
package/README.zh-CN.md
CHANGED
|
@@ -2,33 +2,31 @@
|
|
|
2
2
|
|
|
3
3
|
[English](README.md) · 安装指南:[中文](INSTALL.zh-CN.md) / [English](INSTALL.md)
|
|
4
4
|
|
|
5
|
-
<!-- release-skill:release-version: 0.2.
|
|
5
|
+
<!-- release-skill:release-version: 0.2.3 -->
|
|
6
6
|
面向 Claude Code、Codex 和 Kimi Code 的发布准备工具,完整保留人工维护的文件内容。
|
|
7
7
|
|
|
8
8
|
release-skill 帮助维护者回答三个问题:准备发布什么、还有哪些检查未通过、最终发布的内容是什么。它先冻结并供人工审阅,再从同一份冻结产物发布,不会在最后一步重新生成 README、重新打包当前工作区或覆盖人工内容。
|
|
9
9
|
|
|
10
10
|
<!-- release-skill:managed:start id=latest-release -->
|
|
11
|
-
**0.2.
|
|
11
|
+
**0.2.3** (2026-07-26)
|
|
12
12
|
|
|
13
|
-
v0.2.
|
|
14
|
-
|
|
15
|
-
**新增**
|
|
16
|
-
|
|
17
|
-
- **CodeBuddy 平台人工 attestation 闭环**:CodeBuddy/WorkBuddy 经与 kimi 同构的人工 attestation 闭环接入发布流水线(`publish`/`reconcile`/`verify`)。因 codebuddy CLI 的 marketplace add/install 均无法钉死冻结 ref(无 ref 选项、安装跟踪默认分支/`latest`,已实测),自动化安装检查点无法保证冻结产物同一性。execute 写手动安装 requirement,绝不 exec CLI;observe/verify 消费结构化人工 attestation 并对安装点做只读校验。缺失、过期、不匹配、路径逃逸的 attestation 一律 fail-closed,严重级别与 kimi 一致(发布后验证不可豁免)。双安装通道(均有实测落盘证据):desktop 经 WorkBuddy 桌面端统一市场 `artifact-skill-set` 安装(`installPath` 须含 `/.workbuddy/plugins/marketplaces/artifact-skill-set/plugins/<plugin>` 尾段,段级检查);cli 以隔离 `HOME=<authorityDir>/codebuddy-home` 运行捆绑 CLI(`installPath` 须 containment 于该隔离 home 的市场插件根)。attestation 增加 `installChannel` + `marketplace` 字段并按通道校验。管线路由:平台 id `codebuddy`,distributionType `codebuddy-plugin`,actionType `codebuddy-marketplace-install`,列于 Tier 3(与 kimi 同层);build adapter 保留历史目录名 `workbuddy`(`adapters/workbuddy/`、`.codebuddy-plugin/plugin.json` 清单,字节不变)。
|
|
18
|
-
- **外部独立市场分发形态**:distribution 声明 `marketplaceRepo` 时启用外部形态。prepare 生产循环经 `git ls-remote --symref` 在线冻结外部市场 HEAD(codex 强冻至 commit sha、claude 弱冻至默认分支名),并经 `gh api` 校验外部索引条目(name 匹配、恰一条、claude 形态 `entry.version == 目标版本`);非在线声明外部形态 fail-closed,外部仓库严格只读。冻结动作携带 `repo=marketplaceRepo`、`ref=add-ref`、`marketplaceCommitSha`、`marketplaceLocation=external`、`payloadContract=external-marketplace-v1`;`snapshotPath`/`manifestDigest` 仍绑本单元冻结快照(载荷权威不变)。plan 完整性校验增加外部分支(repo 匹配、`marketplaceLocation`、40-hex `marketplaceCommitSha`、ref 结构安全);kimi/codebuddy 携带 `marketplaceRepo` fail-closed。`plugin-marketplace` 新增外部形态 preflight/observe 分支:`external-marketplace-v1` 走与 `declared-manifest-v1` 相同的整树包含语义(权威为 `.`,宿主新增路径记 `extraInstalledPaths` 而非失败);preflight 跳过快照内市场段,从快照根读 plugin manifest 校验 name/version 与冻结字段;observe 复用既有 strategy 做安装侧条目观察比对(弱冻 claude 版本漂移 fail-closed)。inline/kimi/codebuddy/legacy/`declared-manifest-v1` 分支一字不变。
|
|
13
|
+
v0.2.3 是修复版本,解决 v0.2.2 中发现的平台验证、公共生成物和文档问题。本版本收敛平台事实源、修复消费端门禁映射错误并加强证明验证。
|
|
19
14
|
|
|
20
15
|
**变更**
|
|
21
16
|
|
|
22
|
-
-
|
|
17
|
+
- **版本同步到 0.2.3**:所有插件清单(9个文件)、package.json、INSTALL.md、INSTALL.zh-CN.md、README.md 和 README.zh-CN.md 已更新。
|
|
23
18
|
|
|
24
19
|
**修复**
|
|
25
20
|
|
|
26
|
-
- **CodeBuddy
|
|
27
|
-
-
|
|
21
|
+
- **CodeBuddy marketplace-install 分发映射**:`verify.mjs` 现在正确将 `codebuddy-marketplace-install` 映射到 `codebuddy-plugin` distribution(之前错误回落到 `kimi-plugin`)。codebuddy 的 `fixedEnv` 现在只使用 `HOME`,不再包含 `KIMI_CODE_HOME`。
|
|
22
|
+
- **移除未知消费端回落**:`plugin-marketplace.mjs` 现在对未注册的消费端平台抛出明确错误,而非静默回落到 Kimi 配置。错误消息包含未知消费端标识和已注册平台列表。
|
|
23
|
+
- **CodeBuddy 证明基线排除**:`.release-skill/codebuddy-attestations/` 现在正确排除在工作区基线摘要计算之外,防止在发布生命周期中写入 codebuddy 证明文件时产生自漂移。
|
|
24
|
+
- **CodeBuddy 清单 skills 字段支持数组**:`normalizeCodeBuddySkillsRel()` 现在同时支持字符串和单元素数组形式的 `skills` 字段,与真实 CodeBuddy 验证器期望的形状一致。根 `.codebuddy-plugin/plugin.json` 现在使用数组形式。
|
|
25
|
+
- **CLI 通道证明路径验证**:`validateCodeBuddyAttestation()` 现在验证 CLI 通道的 `installPath` 以已知的 `.codebuddy/plugins/marketplaces/<marketplace>/plugins/<plugin>` 段尾结尾,关闭路径逃逸缺口。
|
|
28
26
|
<!-- release-skill:managed:end id=latest-release -->
|
|
29
27
|
|
|
30
28
|
<!-- release-skill:capability:external-write-boundary -->
|
|
31
|
-
> **当前边界:** v0.2.
|
|
29
|
+
> **当前边界:** v0.2.3 是当前发布版本(v0.2.2 曾处于已发布状态,后因平台验证收敛修复而更新)。
|
|
32
30
|
> v0.1.1 已完成 GitHub 与 npm 的
|
|
33
31
|
> 真实生产发布,是首次生产验证的历史里程碑,并从冻结 Git ref 完成精确 npm
|
|
34
32
|
> 安装及 Claude/Codex 消费者安装验证;“当前发布版本”与“首次生产验证里程碑”
|