release-skill 0.5.0 → 0.5.1
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 +1 -1
- package/.codex-plugin/plugin.json +2 -2
- package/.kimi-plugin/plugin.json +1 -1
- package/CHANGELOG.md +18 -0
- package/INSTALL.md +2 -2
- package/INSTALL.zh-CN.md +2 -2
- package/README.md +10 -18
- package/README.zh-CN.md +10 -18
- package/adapters/claude/.claude-plugin/marketplace.json +1 -1
- package/adapters/claude/.claude-plugin/plugin.json +1 -1
- package/adapters/claude/bin/error-codes.json +1 -1
- package/adapters/claude/bin/kernel-protocol.json +1 -1
- package/adapters/claude/bin/registry.json +15 -1
- package/adapters/claude/bin/release-skill.bundle.mjs +35052 -22850
- package/adapters/claude/bin/rules.json +1 -1
- package/adapters/codex/.codex-plugin/plugin.json +2 -2
- package/adapters/codex/bin/error-codes.json +1 -1
- package/adapters/codex/bin/kernel-protocol.json +1 -1
- package/adapters/codex/bin/registry.json +15 -1
- package/adapters/codex/bin/release-skill.bundle.mjs +35052 -22850
- package/adapters/codex/bin/rules.json +1 -1
- package/adapters/kimi/.kimi-plugin/plugin.json +1 -1
- package/adapters/kimi/bin/error-codes.json +1 -1
- package/adapters/kimi/bin/kernel-protocol.json +1 -1
- package/adapters/kimi/bin/registry.json +15 -1
- package/adapters/kimi/bin/release-skill.bundle.mjs +35052 -22850
- package/adapters/kimi/bin/rules.json +1 -1
- package/adapters/workbuddy/.codebuddy-plugin/plugin.json +1 -1
- package/adapters/workbuddy/bin/error-codes.json +1 -1
- package/adapters/workbuddy/bin/kernel-protocol.json +1 -1
- package/adapters/workbuddy/bin/registry.json +15 -1
- package/adapters/workbuddy/bin/release-skill.bundle.mjs +35052 -22850
- package/adapters/workbuddy/bin/rules.json +1 -1
- package/bin/error-codes.json +1 -1
- package/bin/kernel-protocol.json +1 -1
- package/bin/registry.json +15 -1
- package/bin/release-skill.bundle.mjs +35052 -22850
- package/bin/rules.json +1 -1
- package/package.json +3 -3
- package/src/adapters/plugin-marketplace.mjs +48 -4
- package/src/adapters/push-snapshot.mjs +12 -4
- package/src/commands/assess.mjs +171 -0
- package/src/commands/hooks.mjs +6 -1
- package/src/commands/prepare.mjs +83 -1
- package/src/core/baseline.mjs +11 -1
- package/src/core/foundation-inflight.mjs +7 -0
- package/src/core/plan.mjs +12 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "release-skill",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
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.5.
|
|
22
|
+
"Prepare a release plan for version 0.5.1.",
|
|
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,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
<!-- release-skill:changelog:start version=0.5.1 locale=en baseline=sha256:2a8dc4241570c0919e55da270233728963ba1cda347c95c775678ec89a9f0ac0 -->
|
|
4
|
+
## [0.5.1] - 2026-08-17
|
|
5
|
+
|
|
6
|
+
v0.5.1 fixes three frozen-0.5.0 defects — explicit hook environment delivery (envAllowlist now reaches prepare hooks), a 64 MiB baseline maxBuffer for large tracked indexes, and the prefixed skill-directory fallback for marketplace-install preflight/observe — bumps the Skill Family Foundation dependencies to the released 0.5.0 packages, and hardens the release chain so every later release must bind the previous public release commit instead of degrading to an orphan root commit.
|
|
7
|
+
|
|
8
|
+
### Changed
|
|
9
|
+
|
|
10
|
+
- **Foundation 0.5.0 upgrade**: `skill-family-contracts` and `skill-family-harness-node` dependencies bumped from 0.4.0 to 0.5.0 (npm latest); the package-name import bridge keeps working unchanged and the harness-node 0.5.0 export surface was re-verified (`publishFileExclusive`, token-lock five functions, `HARNESS_ERROR_KINDS`).
|
|
11
|
+
- **Chain hardening (chain-integrity)**: `push-snapshot` now requires an explicit `branchStrategy` (the historical `create-release-branch` default that produced orphan root commits is gone); `create-release-branch` is only valid when `previousPublicBaseline.mode=none`; a production online prepare with `mode=none` on a repository that already carries release tags fails closed with `CHAIN_GAP`, demanding a bound baseline at the previous release commit; online `assess` registers a warning-level `VERSION_SEQUENCE_GAP` when the target version jumps the release sequence (e.g. 0.1.1 → 0.1.3 with no v0.1.2 tag), without blocking.
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
|
|
15
|
+
- **Hook environment delivery (hook-env-delivery)**: `runDeclaredHooks` now accepts an explicit `env` option and merges it into the hook context (`hookFn(hook, { root, env })`); prepare and `hooks validate` inject the invoking shell's environment, so `hooks.*.envAllowlist` keys exported by the caller finally reach the hook subprocess. Allowlist semantics are unchanged — the hook runner still reads allowlisted keys exclusively from the explicit map, never from `process.env` directly.
|
|
16
|
+
- **Large-tracked-index baseline (baseline-maxbuffer)**: `computeWorkspaceDigest` now runs its three git subprocesses with a 64 MiB `maxBuffer` (official fix 39c631f); workspaces with thousands of tracked files (measured 8494 tracked files → 1,519,151 B `ls-files -s` stdout) no longer fail with `ERR_CHILD_PROCESS_STDIO_MAXBUFFER`.
|
|
17
|
+
- **Prefixed skill-directory resolution (entry-skill-prefix)**: marketplace-install preflight and observe now fall back from `skills/<entrySkill>/SKILL.md` to `skills/<plugin>-<entrySkill>/SKILL.md` (plugin from the action parameters, D-ACA-30 platform physical names); candidate builds with prefixed skill directories pass preflight and observe instead of failing with `entry skill not found`.
|
|
18
|
+
<!-- release-skill:changelog:end version=0.5.1 locale=en -->
|
|
19
|
+
|
|
20
|
+
|
|
3
21
|
<!-- release-skill:changelog:start version=0.5.0 locale=en baseline=sha256:e59bef4bd7bc6e0809d1f415d7ff3d342e45a7e77075f66d6ffa48cfd9b71932 -->
|
|
4
22
|
## [0.5.0] - 2026-08-16
|
|
5
23
|
|
package/INSTALL.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[简体中文](INSTALL.zh-CN.md)
|
|
4
4
|
|
|
5
|
-
<!-- release-skill:release-version: 0.5.
|
|
5
|
+
<!-- release-skill:release-version: 0.5.1 -->
|
|
6
6
|
## Prerequisites
|
|
7
7
|
|
|
8
8
|
- Node.js 22.0.0 or later
|
|
@@ -114,7 +114,7 @@ tag pinned to the exact version (never the bare repository URL, which installs
|
|
|
114
114
|
the latest release or default branch), confirm the trust prompt, then reload:
|
|
115
115
|
|
|
116
116
|
```
|
|
117
|
-
/plugins install https://github.com/ifoohoo/release-skill/releases/tag/release-skill-v0.5.
|
|
117
|
+
/plugins install https://github.com/ifoohoo/release-skill/releases/tag/release-skill-v0.5.1
|
|
118
118
|
/plugins reload
|
|
119
119
|
```
|
|
120
120
|
|
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.5.
|
|
5
|
+
<!-- release-skill:release-version: 0.5.1 -->
|
|
6
6
|
## 前置条件
|
|
7
7
|
|
|
8
8
|
- Node.js 22.0.0 或更高版本
|
|
@@ -104,7 +104,7 @@ Kimi Code 有交互式插件市场,但**没有可脚本化的非交互安装
|
|
|
104
104
|
(切勿使用裸仓库地址,它会安装最新 release 或默认分支),确认信任提示后重新加载:
|
|
105
105
|
|
|
106
106
|
```
|
|
107
|
-
/plugins install https://github.com/ifoohoo/release-skill/releases/tag/release-skill-v0.5.
|
|
107
|
+
/plugins install https://github.com/ifoohoo/release-skill/releases/tag/release-skill-v0.5.1
|
|
108
108
|
/plugins reload
|
|
109
109
|
```
|
|
110
110
|
|
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.5.
|
|
5
|
+
<!-- release-skill:release-version: 0.5.1 -->
|
|
6
6
|
Release preparation for Claude Code, CodeBuddy, WorkBuddy, 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,
|
|
@@ -14,32 +14,24 @@ Setup surfaces only the deterministic `compactSummary` review view; the full
|
|
|
14
14
|
report stays in a temporary session directory.
|
|
15
15
|
|
|
16
16
|
<!-- release-skill:managed:start id=latest-release -->
|
|
17
|
-
**0.5.
|
|
17
|
+
**0.5.1** (2026-08-17)
|
|
18
18
|
|
|
19
|
-
v0.5.
|
|
20
|
-
|
|
21
|
-
**Added**
|
|
22
|
-
|
|
23
|
-
- **Negative test coverage**: 12 additional tests covering exclusive publication, token-lock migration, and the assess npm-check behavior.
|
|
19
|
+
v0.5.1 fixes three frozen-0.5.0 defects — explicit hook environment delivery (envAllowlist now reaches prepare hooks), a 64 MiB baseline maxBuffer for large tracked indexes, and the prefixed skill-directory fallback for marketplace-install preflight/observe — bumps the Skill Family Foundation dependencies to the released 0.5.0 packages, and hardens the release chain so every later release must bind the previous public release commit instead of degrading to an orphan root commit.
|
|
24
20
|
|
|
25
21
|
**Changed**
|
|
26
22
|
|
|
27
|
-
- **Foundation
|
|
28
|
-
- **
|
|
29
|
-
- **Exclusive plan/run publication**: immutable plan and run records are published via `publishFileExclusive` — identical bytes are idempotent, divergent bytes fail with `GATE_FAILED`.
|
|
30
|
-
- **Assess npm check semantics**: the online `assess` npm check no longer treats every registry error as version-not-found; only E404/ETARGET mean a missing version, other failures surface as an `NPM_VERSION_CHECK_FAILED` warning.
|
|
31
|
-
- **Hooks authorization contract**: release-prepare/release-help now document the explicit contract that configuring a hook in project configuration IS the authorization (hooks are arbitrary local processes with no sandbox, no filesystem/network isolation, and no pre-trigger confirmation point); restoring a mandatory pre-trigger confirmation gate is a future hardening item.
|
|
32
|
-
- **Audit-scope ruling**: the bundled-family marketplace configuration is recorded as not applicable to the `release_artifact` target type (G3 target-side T4 ruling); T3/T5/T6 deferred to independent tasks.
|
|
33
|
-
- **Plan schema**: production plans carry the resolved codebuddy marketplace coordinates so approval and publish review the exact marketplace target.
|
|
23
|
+
- **Foundation 0.5.0 upgrade**: `skill-family-contracts` and `skill-family-harness-node` dependencies bumped from 0.4.0 to 0.5.0 (npm latest); the package-name import bridge keeps working unchanged and the harness-node 0.5.0 export surface was re-verified (`publishFileExclusive`, token-lock five functions, `HARNESS_ERROR_KINDS`).
|
|
24
|
+
- **Chain hardening (chain-integrity)**: `push-snapshot` now requires an explicit `branchStrategy` (the historical `create-release-branch` default that produced orphan root commits is gone); `create-release-branch` is only valid when `previousPublicBaseline.mode=none`; a production online prepare with `mode=none` on a repository that already carries release tags fails closed with `CHAIN_GAP`, demanding a bound baseline at the previous release commit; online `assess` registers a warning-level `VERSION_SEQUENCE_GAP` when the target version jumps the release sequence (e.g. 0.1.1 → 0.1.3 with no v0.1.2 tag), without blocking.
|
|
34
25
|
|
|
35
26
|
**Fixed**
|
|
36
27
|
|
|
37
|
-
- **
|
|
38
|
-
- **
|
|
28
|
+
- **Hook environment delivery (hook-env-delivery)**: `runDeclaredHooks` now accepts an explicit `env` option and merges it into the hook context (`hookFn(hook, { root, env })`); prepare and `hooks validate` inject the invoking shell's environment, so `hooks.*.envAllowlist` keys exported by the caller finally reach the hook subprocess. Allowlist semantics are unchanged — the hook runner still reads allowlisted keys exclusively from the explicit map, never from `process.env` directly.
|
|
29
|
+
- **Large-tracked-index baseline (baseline-maxbuffer)**: `computeWorkspaceDigest` now runs its three git subprocesses with a 64 MiB `maxBuffer` (official fix 39c631f); workspaces with thousands of tracked files (measured 8494 tracked files → 1,519,151 B `ls-files -s` stdout) no longer fail with `ERR_CHILD_PROCESS_STDIO_MAXBUFFER`.
|
|
30
|
+
- **Prefixed skill-directory resolution (entry-skill-prefix)**: marketplace-install preflight and observe now fall back from `skills/<entrySkill>/SKILL.md` to `skills/<plugin>-<entrySkill>/SKILL.md` (plugin from the action parameters, D-ACA-30 platform physical names); candidate builds with prefixed skill directories pass preflight and observe instead of failing with `entry skill not found`.
|
|
39
31
|
<!-- release-skill:managed:end id=latest-release -->
|
|
40
32
|
|
|
41
33
|
<!-- release-skill:capability:external-write-boundary -->
|
|
42
|
-
> **Current boundary:** v0.5.
|
|
34
|
+
> **Current boundary:** v0.5.1 is the current source candidate; v0.4.1 remains
|
|
43
35
|
> the latest published release (v0.2.2 previously held
|
|
44
36
|
> published status before the platform verification convergence fix was added).
|
|
45
37
|
> v0.1.1 completed a real production release to GitHub and npm — the first
|
|
@@ -58,7 +50,7 @@ v0.5.0 adopts the released Skill Family Foundation 0.4.0 packages (skill-family-
|
|
|
58
50
|
> publish global preflight.
|
|
59
51
|
|
|
60
52
|
<!-- release-skill:capability:safe-first-command -->
|
|
61
|
-
> **Production path verified since the v0.1.1 milestone; v0.5.
|
|
53
|
+
> **Production path verified since the v0.1.1 milestone; v0.5.1 is the current
|
|
62
54
|
> source candidate and v0.4.1 is the latest published release.** The npm-installed CLI is the supported user entry. Source checkout
|
|
63
55
|
> is the development/contributor fallback.
|
|
64
56
|
>
|
package/README.zh-CN.md
CHANGED
|
@@ -2,38 +2,30 @@
|
|
|
2
2
|
|
|
3
3
|
[English](README.md) · 安装指南:[中文](INSTALL.zh-CN.md) / [English](INSTALL.md)
|
|
4
4
|
|
|
5
|
-
<!-- release-skill:release-version: 0.5.
|
|
5
|
+
<!-- release-skill:release-version: 0.5.1 -->
|
|
6
6
|
面向 Claude Code、CodeBuddy、WorkBuddy、Codex 和 Kimi Code 的发布准备工具,完整保留人工维护的文件内容。
|
|
7
7
|
|
|
8
8
|
release-skill 帮助维护者回答三个问题:准备发布什么、还有哪些检查未通过、最终发布的内容是什么。它不重新生成、也不回写项目源文件。`prepare` 把每个配置的公开文件复制到隔离快照并验证字节——先冻结并供人工审阅,再从同一份冻结产物发布。`setup` 只显示确定性的 `compactSummary` 审阅视图,完整报告保留在临时会话目录中。
|
|
9
9
|
|
|
10
10
|
<!-- release-skill:managed:start id=latest-release -->
|
|
11
|
-
**0.5.
|
|
11
|
+
**0.5.1** (2026-08-17)
|
|
12
12
|
|
|
13
|
-
v0.5.
|
|
14
|
-
|
|
15
|
-
**新增**
|
|
16
|
-
|
|
17
|
-
- **新增负向测试**:新增 12 条测试覆盖排他发布、token 锁迁移与 assess npm 检查行为。
|
|
13
|
+
v0.5.1 修复冻结 0.5.0 的三项缺陷——hook 显式环境送达(envAllowlist 终于作用于 prepare hooks)、大索引基线 64 MiB maxBuffer、marketplace-install preflight/observe 的带前缀技能目录回退——并把 Skill Family Foundation 依赖提升到已发布的 0.5.0 包,同时加固发布链:后续任何发布都必须绑定上一公开发布提交,不再退化为孤儿根提交。
|
|
18
14
|
|
|
19
15
|
**变更**
|
|
20
16
|
|
|
21
|
-
- **Foundation
|
|
22
|
-
-
|
|
23
|
-
- **排他发布**:不可变计划与运行记录经 `publishFileExclusive` 发布——同字节幂等,异字节以 `GATE_FAILED` 失败。
|
|
24
|
-
- **assess npm 检查语义**:在线 `assess` 的 npm 检查不再把一切 registry 错误当作「版本不存在」;仅 E404/ETARGET 视为缺失,其余失败以 `NPM_VERSION_CHECK_FAILED` 告警呈现。
|
|
25
|
-
- **Hooks 授权契约**:release-prepare/release-help 现把「配置时刻即授权」写为显式契约——hook 是任意本地进程、无沙箱、无文件系统/网络隔离、触发前无确认点;恢复触发前强制确认门列为后续加固项。
|
|
26
|
-
- **审计范围裁决**:bundled-family 市场型配置记录为不适用 `release_artifact` 目标类型(G3 目标侧 T4 裁决);T3/T5/T6 延后为独立任务。
|
|
27
|
-
- **计划模式**:生产计划携带解析后的 CodeBuddy 市场坐标,审批与发布时可核对确切的市场目标。
|
|
17
|
+
- **Foundation 0.5.0 升级**:`skill-family-contracts` 与 `skill-family-harness-node` 依赖由 0.4.0 提升至 0.5.0(npm latest);包名 import 桥无需改动,harness-node 0.5.0 导出面已逐项复核(`publishFileExclusive`、token-lock 五函数、`HARNESS_ERROR_KINDS`)。
|
|
18
|
+
- **链加固(chain-integrity)**:`push-snapshot` 现要求显式 `branchStrategy`(历史上产生孤儿根提交的 `create-release-branch` 默认值已移除);`create-release-branch` 仅在 `previousPublicBaseline.mode=none` 时合法;生产在线 prepare 在公开仓已有发布标签时仍以 `mode=none` 冻结计划会以 `CHAIN_GAP` 失败关闭,要求把基线绑定到上一发布提交;在线 `assess` 检测到版本序列跳号(如 0.1.1→0.1.3 且无 v0.1.2 标签)时登记 `VERSION_SEQUENCE_GAP` 警告,不阻断。
|
|
28
19
|
|
|
29
20
|
**修复**
|
|
30
21
|
|
|
31
|
-
- **
|
|
32
|
-
-
|
|
22
|
+
- **Hook 环境送达(hook-env-delivery)**:`runDeclaredHooks` 新增显式 `env` 选项并并入 hook 上下文(`hookFn(hook, { root, env })`);prepare 与 `hooks validate` 注入调用方 shell 的环境,`hooks.*.envAllowlist` 中由调用方导出的键终于能到达 hook 子进程。allowlist 语义不变——hook 运行器仍只从显式映射读取白名单键,绝不直接回退 process.env。
|
|
23
|
+
- **大索引基线(baseline-maxbuffer)**:`computeWorkspaceDigest` 的三个 git 子进程统一设置 64 MiB `maxBuffer`(官方修复 39c631f);tracked 文件数较多的工作区(实测 8494 个文件 → `ls-files -s` 输出 1,519,151 B)不再报 `ERR_CHILD_PROCESS_STDIO_MAXBUFFER`。
|
|
24
|
+
- **带前缀技能目录解析(entry-skill-prefix)**:marketplace-install 的 preflight 与 observe 从 `skills/<entrySkill>/SKILL.md` 未命中时回退 `skills/<plugin>-<entrySkill>/SKILL.md`(plugin 取 action 参数,D-ACA-30 平台物理名);带前缀技能目录的候选构建不再以 `entry skill not found` 失败。
|
|
33
25
|
<!-- release-skill:managed:end id=latest-release -->
|
|
34
26
|
|
|
35
27
|
<!-- release-skill:capability:external-write-boundary -->
|
|
36
|
-
> **当前边界:** v0.5.
|
|
28
|
+
> **当前边界:** v0.5.1 是当前源码候选,v0.4.1 仍是最新已发布版本(v0.2.2 曾处于已发布状态,后因平台验证收敛修复而更新)。
|
|
37
29
|
> v0.1.1 已完成 GitHub 与 npm 的
|
|
38
30
|
> 真实生产发布,是首次生产验证的历史里程碑,并从冻结 Git ref 完成精确 npm
|
|
39
31
|
> 安装及 Claude/Codex 消费者安装验证;"当前发布版本"与"首次生产验证里程碑"
|
|
@@ -46,7 +38,7 @@ v0.5.0 采用已发布的 Skill Family Foundation 0.4.0 包(skill-family-contr
|
|
|
46
38
|
> 远端唯一性检查在 `publish` 全局预检执行。
|
|
47
39
|
|
|
48
40
|
<!-- release-skill:capability:safe-first-command -->
|
|
49
|
-
> **生产路径自 v0.1.1 里程碑起已完成真实生产验证;v0.5.
|
|
41
|
+
> **生产路径自 v0.1.1 里程碑起已完成真实生产验证;v0.5.1 是当前源码候选,v0.4.1 是最新已发布版本。**
|
|
50
42
|
> npm 安装的 CLI 是受支持的用户入口;源码 checkout 保留为开发/贡献者路径。
|
|
51
43
|
>
|
|
52
44
|
> **第一条命令:**
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"name": "skill-family.kernel.operation",
|
|
5
5
|
"version": 1,
|
|
6
6
|
"status": "stable",
|
|
7
|
-
"contractsVersion": "1.
|
|
7
|
+
"contractsVersion": "1.5.0",
|
|
8
8
|
"description": "Frozen v1 kernel protocol: request/result envelope, operation lifecycle states, and the operation vocabulary. Extensible only by a new protocol version; v1 content is frozen.",
|
|
9
9
|
"states": ["accepted", "running", "succeeded", "failed", "rejected"],
|
|
10
10
|
"initialStates": ["accepted", "rejected"],
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
3
|
"kind": "skill-family.contracts.registry",
|
|
4
|
-
"contractsVersion": "1.
|
|
4
|
+
"contractsVersion": "1.5.0",
|
|
5
5
|
"note": "Protocol-name and schema-$id registry. Registration mechanically rejects duplicate protocol name/version (SFC1004) and duplicate $id (SFC1003). This file is the single registration surface; adding an entry is a contracts change.",
|
|
6
6
|
"protocols": [
|
|
7
7
|
{
|
|
@@ -152,6 +152,20 @@
|
|
|
152
152
|
"dialect": "2020-12",
|
|
153
153
|
"status": "stable",
|
|
154
154
|
"file": "src/schemas/surface-scan-policy.schema.json"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"$id": "https://contracts.skill-family.example/v1/declared-read-surface-result.json",
|
|
158
|
+
"object": "declared-read-surface-result",
|
|
159
|
+
"dialect": "2020-12",
|
|
160
|
+
"status": "stable",
|
|
161
|
+
"file": "src/schemas/declared-read-surface-result.schema.json"
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"$id": "https://contracts.skill-family.example/v1/structured-scan-policy.json",
|
|
165
|
+
"object": "structured-scan-policy",
|
|
166
|
+
"dialect": "2020-12",
|
|
167
|
+
"status": "stable",
|
|
168
|
+
"file": "src/schemas/structured-scan-policy.schema.json"
|
|
155
169
|
}
|
|
156
170
|
],
|
|
157
171
|
"dialects": {
|