@viceme-ai/cli 0.45.3 → 0.45.4
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 +12 -0
- package/checksums.txt +6 -6
- package/docs/releasing.md +21 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.45.4] - 2026-09-18
|
|
4
|
+
|
|
5
|
+
### Fixes
|
|
6
|
+
|
|
7
|
+
- 统一双渠道宿主支付展示指引 (`564079a`)
|
|
8
|
+
- 优化渠道包购买指引并避免重复二维码 (`dbac09f`)
|
|
9
|
+
|
|
10
|
+
### Other Changes
|
|
11
|
+
|
|
12
|
+
- 同步引导安装的购买后续指引断言 (`5176898`)
|
|
13
|
+
- 同步无试用购买指引的任务继续断言 (`00846db`)
|
|
14
|
+
|
|
3
15
|
## [0.45.3] - 2026-09-18
|
|
4
16
|
|
|
5
17
|
### Fixes
|
package/checksums.txt
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
3ce6b1e282922415f09debde42547965f040611b14ec6f9dd77388b817bb3d19 viceme_0.45.4_darwin_amd64
|
|
2
|
+
2ea51f72cb19c467e092ab699567d923f0ad59089e1d2a7b22a0b8f8ef81011e viceme_0.45.4_darwin_arm64
|
|
3
|
+
3b9178e6a169ccc8c2e9d586f2dd772a472f14c212fab8d5813fc5eddba0826d viceme_0.45.4_linux_amd64
|
|
4
|
+
8680db25569786406443d414c1175cd34cdc733cdb58487ae4d71e2778743529 viceme_0.45.4_linux_arm64
|
|
5
|
+
290d7e9385c07c72129928c1768590d7399609896709598c004ef3c7ae47b36f viceme_0.45.4_windows_amd64.exe
|
|
6
|
+
37994fb612a0b8eaf6b8ef29910602f7f290b599f2a7ed0380089ffe1e687ccb viceme_0.45.4_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.
|