@viceme-ai/cli 0.34.0 → 0.35.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 +30 -0
- package/README.md +13 -15
- package/checksums.txt +6 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.35.0] - 2026-09-07
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- complete creator page onboarding flow (`95b5dc1`)
|
|
8
|
+
- support loopback template catalog demos (`0260fab`)
|
|
9
|
+
- use cloud creator template catalog (`21ed50f`)
|
|
10
|
+
- fetch verified cloud creator templates (`6cc99cf`)
|
|
11
|
+
- build creator template catalog artifacts (`87f5a00`)
|
|
12
|
+
- guide creator page onboarding (`1cfad54`)
|
|
13
|
+
|
|
14
|
+
### Fixes
|
|
15
|
+
|
|
16
|
+
- 校正模板拉取验收路径 (`bc2cfda`)
|
|
17
|
+
- 使用独立模板册公开桶 (`e926221`)
|
|
18
|
+
- 修复模板册 CI 与错误边界 (`5f79228`)
|
|
19
|
+
- 收紧模板册发布与 Mock 隔离 (`0be4b14`)
|
|
20
|
+
- quote template catalog key expansion (`3b9d922`)
|
|
21
|
+
- restore CLI-only update lifecycle (`8517f7c`)
|
|
22
|
+
|
|
23
|
+
### Other Changes
|
|
24
|
+
|
|
25
|
+
- 更新官方 Skill 发布清单 (`1f5f19b`)
|
|
26
|
+
- 移除开发过程文档 (`49a9e94`)
|
|
27
|
+
- define creator card update recovery (`6a5a2db`)
|
|
28
|
+
- align creator template flow with cloud catalog (`9e35bcf`)
|
|
29
|
+
- add development template catalog fixtures (`1183991`)
|
|
30
|
+
- publish creator template catalog (`ab710f3`)
|
|
31
|
+
- design cloud creator template catalog (`e95f56d`)
|
|
32
|
+
|
|
3
33
|
## [0.34.0] - 2026-09-07
|
|
4
34
|
|
|
5
35
|
### Features
|
package/README.md
CHANGED
|
@@ -291,7 +291,7 @@ Never copy an access token into the conversation.
|
|
|
291
291
|
| `viceme replica resume <publication-id>` | Continue only the missing upload, verification, submission, or allowed retry step from authoritative state. |
|
|
292
292
|
| `viceme replica cancel <publication-id>` | Cancel a Publication before activation and clean its local recoverable source. |
|
|
293
293
|
| `viceme replica install <code> [--target <new-directory>]` | With an authenticated Profile, display the authoritative Quote before `--confirm`; add `--accept-price-cents <fen>` for anonymous checkout and `--payment-presented` only after its hosted payment page opens. Both paths atomically install the paid source. |
|
|
294
|
-
| `viceme update` |
|
|
294
|
+
| `viceme update` | Explicitly update the CLI. Refresh official Skills separately with `viceme install --agent auto`. |
|
|
295
295
|
| `viceme merchant accounts` | List ordinary MerchantAccounts where the current User is the OWNER member. |
|
|
296
296
|
| `viceme merchant work ...` | Create, inspect, update, and publish Merchant Works, including Website Works. |
|
|
297
297
|
| `viceme merchant page ...` | Validate, preview, publish, inspect, and roll back immutable custom Creator/Work page bundles. |
|
|
@@ -355,7 +355,7 @@ process that started the update. `meta.autoUpdate` may appear when startup
|
|
|
355
355
|
recovery had to hand an already-started command to a newly committed CLI.
|
|
356
356
|
|
|
357
357
|
After an ordinary command has emitted its response, a detached worker checks
|
|
358
|
-
the stable release channel and updates the CLI
|
|
358
|
+
the stable release channel and updates only the CLI. The foreground command never waits
|
|
359
359
|
for release discovery or activation, and background launch, network,
|
|
360
360
|
permission, or installation failures never replace its JSON response. A
|
|
361
361
|
successful replacement is used by the next `viceme` process; it does not
|
|
@@ -363,12 +363,10 @@ require restarting the surrounding Codex, Claude Code, or WorkBuddy app.
|
|
|
363
363
|
Checks are coalesced for 24 hours, while failed checks or updates become
|
|
364
364
|
eligible for another background attempt after one hour.
|
|
365
365
|
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
when a task started, so start a new task when the host needs to rediscover the
|
|
371
|
-
refreshed files. `viceme install --agent auto` remains a Skill-only repair path.
|
|
366
|
+
Official Skills are a separate lifecycle because an Agent usually loads them
|
|
367
|
+
when a task starts. CLI auto-update therefore never rewrites Skill directories.
|
|
368
|
+
Refresh them intentionally with `viceme install --agent auto`, then start a new
|
|
369
|
+
Agent task when the host needs to rediscover the files.
|
|
372
370
|
|
|
373
371
|
```bash
|
|
374
372
|
viceme update --check
|
|
@@ -376,17 +374,17 @@ viceme update
|
|
|
376
374
|
viceme install --agent auto
|
|
377
375
|
```
|
|
378
376
|
|
|
379
|
-
`viceme update`
|
|
380
|
-
permission preflight and durable recovery rules.
|
|
381
|
-
`viceme update --agent <target>`
|
|
382
|
-
|
|
377
|
+
`viceme update` remains the explicit CLI repair command and keeps the same
|
|
378
|
+
permission preflight and durable recovery rules. For compatibility,
|
|
379
|
+
`viceme update --agent <target>` still requests a combined CLI and Skill
|
|
380
|
+
repair, but new automation should keep the two commands separate.
|
|
383
381
|
|
|
384
382
|
Permission preflight checks every path that the selected installation method
|
|
385
383
|
will mutate before creating an activation journal. For npm this includes the
|
|
386
384
|
configured cache, actual scoped global package, and launcher directories through
|
|
387
|
-
Node so the host filesystem broker is preserved.
|
|
388
|
-
the executable directory
|
|
389
|
-
destination. A denied explicit-update preflight keeps the
|
|
385
|
+
Node so the host filesystem broker is preserved. For standalone CLI-only
|
|
386
|
+
updates it checks the executable directory; a separate Skill install checks
|
|
387
|
+
every selected Agent destination. A denied explicit-update preflight keeps the
|
|
390
388
|
previous generation intact and requests host approval. A denied background
|
|
391
389
|
attempt is recorded locally and does not affect the foreground command.
|
|
392
390
|
Permission can still change after preflight, so any failure after an install
|
package/checksums.txt
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
4eea1b8d3c27084adb72e8e1bebc674ba4653845a8d181196bb53b12d2062fbc viceme_0.35.0_darwin_amd64
|
|
2
|
+
cdca8b6b5e0adaec2a4ce4421128359dd88bbb05e99489b16240831254b29485 viceme_0.35.0_darwin_arm64
|
|
3
|
+
18b1dee8af983987b8483c9b46760a88d6ef1a8dec6ff78ea03e90d317409336 viceme_0.35.0_linux_amd64
|
|
4
|
+
911447d398df644ee4e050b0e3b5f38bc5e88b6a96c3e52a7c30e2c4e5469aa0 viceme_0.35.0_linux_arm64
|
|
5
|
+
be0828fc935c7972986ecff569f83c6a702ae7a4225c9a9272c032062da0f53c viceme_0.35.0_windows_amd64.exe
|
|
6
|
+
bec02603a702df232cf3890e1d9b681fe3370632855d9f84cb2eb2716a824238 viceme_0.35.0_windows_arm64.exe
|