@viceme-ai/cli 0.45.3 → 0.45.5
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 +18 -0
- package/checksums.txt +6 -6
- package/docs/releasing.md +21 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.45.5] - 2026-09-21
|
|
4
|
+
|
|
5
|
+
### Fixes
|
|
6
|
+
|
|
7
|
+
- 补齐试用渠道包安装身份清单 (`d928b2f`)
|
|
8
|
+
|
|
9
|
+
## [0.45.4] - 2026-09-18
|
|
10
|
+
|
|
11
|
+
### Fixes
|
|
12
|
+
|
|
13
|
+
- 统一双渠道宿主支付展示指引 (`564079a`)
|
|
14
|
+
- 优化渠道包购买指引并避免重复二维码 (`dbac09f`)
|
|
15
|
+
|
|
16
|
+
### Other Changes
|
|
17
|
+
|
|
18
|
+
- 同步引导安装的购买后续指引断言 (`5176898`)
|
|
19
|
+
- 同步无试用购买指引的任务继续断言 (`00846db`)
|
|
20
|
+
|
|
3
21
|
## [0.45.3] - 2026-09-18
|
|
4
22
|
|
|
5
23
|
### Fixes
|
package/checksums.txt
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
197a1062726da588ba65d1a52bdce0438d51b15ca2b9a7028b71462ae8b76094 viceme_0.45.5_darwin_amd64
|
|
2
|
+
99aa68f451cc04b75688841f560feb1fcef4f176be4051ba63172788c34b5a56 viceme_0.45.5_darwin_arm64
|
|
3
|
+
26bfcf9118f6f5e7529f3e12f45478d5ad4810b91229312f5e6d4b8c7e36e201 viceme_0.45.5_linux_amd64
|
|
4
|
+
f0dfaa89f2c2a4b6ce62ab91304d6aac7dce08f9e7f56b6409673a195133683c viceme_0.45.5_linux_arm64
|
|
5
|
+
0347bca4ec2ad918bef5e284dfb073057c0a72801b08beafe909c1a66370e3a8 viceme_0.45.5_windows_amd64.exe
|
|
6
|
+
a111fce78a0dc637a078d66d0dc16d2f30837fcb0cd17318a0bb9e6727b9e2bb viceme_0.45.5_windows_arm64.exe
|
package/docs/releasing.md
CHANGED
|
@@ -272,3 +272,24 @@ missing tags, version mismatches, changed release assets, and npm integrity
|
|
|
272
272
|
mismatches. It cannot create a new release identity. Normal production releases
|
|
273
273
|
still originate only from merging the repository-owned `dev` Release PR into
|
|
274
274
|
`main`.
|
|
275
|
+
|
|
276
|
+
## Shared host payment presentation
|
|
277
|
+
|
|
278
|
+
`skills/use-a-skill/references/host-presentation.md` owns host image syntax,
|
|
279
|
+
page tools, capability checks and fallbacks. The CLI embeds this source directly;
|
|
280
|
+
the no-CLI runtime includes the identical bytes as `guides/host-presentation.md`.
|
|
281
|
+
Exported purchase entries also include it beside `references/purchase.md` so
|
|
282
|
+
relative links resolve. Business purchase sequencing remains in `purchase.md`.
|
|
283
|
+
Do not add host policy branches to Go/Python or duplicate them in Widget docs.
|
|
284
|
+
|
|
285
|
+
After an edit, run `make release-manifest`, `make check` and
|
|
286
|
+
`make npm-package-check`; the digest-addressed runtime and official Skill bundle
|
|
287
|
+
must ship together. Shop's runtime archive validator must accept
|
|
288
|
+
`guides/host-presentation.md` before publishing this generation. Its optional
|
|
289
|
+
allowlist entry preserves compatibility with the previous seven-member runtime.
|
|
290
|
+
Rollback may use the previous runtime while that Shop validator remains deployed.
|
|
291
|
+
A validator rollback must follow a runtime rollback, since the old validator
|
|
292
|
+
rejects the additional member. No database or payment-state migration is needed.
|
|
293
|
+
Existing exported packages and installed Skills retain their bundled guidance;
|
|
294
|
+
re-export/reinstall through their normal explicit update path to obtain changes.
|
|
295
|
+
Do not mutate existing purchase credentials or orders to refresh instructions.
|