@viceme-ai/cli 0.33.5 → 0.33.6
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/README.md +23 -14
- package/checksums.txt +6 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.33.6] - 2026-09-06
|
|
4
|
+
|
|
5
|
+
### Fixes
|
|
6
|
+
|
|
7
|
+
- 更新 CLI 时同步并修复官方 Skills (`4069758`)
|
|
8
|
+
- 移除 Codex Skill 目录重复写入 (`da0d7b6`)
|
|
9
|
+
- 创作者确认后发布不再探测本地预览 (`6d906dc`)
|
|
10
|
+
|
|
11
|
+
### Other Changes
|
|
12
|
+
|
|
13
|
+
- 按目录身份校验跨平台 Skill 安装路径 (`66dec54`)
|
|
14
|
+
|
|
3
15
|
## [0.33.5] - 2026-09-05
|
|
4
16
|
|
|
5
17
|
### Fixes
|
package/README.md
CHANGED
|
@@ -155,10 +155,17 @@ native user directory of every detected supported Agent:
|
|
|
155
155
|
|
|
156
156
|
| Agent | Native directory |
|
|
157
157
|
| --- | --- |
|
|
158
|
-
| Codex | `~/.
|
|
158
|
+
| Codex | `~/.agents/skills` (shared fallback; written once) |
|
|
159
159
|
| Claude Code | `~/.claude/skills` |
|
|
160
160
|
| WorkBuddy | `~/.workbuddy/skills` |
|
|
161
161
|
|
|
162
|
+
Codex uses the shared directory documented in [Codex Skills](https://developers.openai.com/codex/skills/).
|
|
163
|
+
`--agent codex` is an alias for `agents`, including install results and doctor
|
|
164
|
+
checks; it no longer writes `$CODEX_HOME/skills` (default `~/.codex/skills`).
|
|
165
|
+
Existing legacy copies are left intact. Claude Code still needs its separate
|
|
166
|
+
native directory: [Claude Code Skills](https://code.claude.com/docs/en/skills)
|
|
167
|
+
does not list `.agents/skills` as a discovery location.
|
|
168
|
+
|
|
162
169
|
Select a target explicitly with `viceme install --agent codex`, `claude`,
|
|
163
170
|
`workbuddy`, or `agents`. Run `viceme doctor` after installation or repair.
|
|
164
171
|
|
|
@@ -284,7 +291,7 @@ Never copy an access token into the conversation.
|
|
|
284
291
|
| `viceme replica resume <publication-id>` | Continue only the missing upload, verification, submission, or allowed retry step from authoritative state. |
|
|
285
292
|
| `viceme replica cancel <publication-id>` | Cancel a Publication before activation and clean its local recoverable source. |
|
|
286
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. |
|
|
287
|
-
| `viceme update` |
|
|
294
|
+
| `viceme update` | Update or repair the CLI and matching official Skills together. |
|
|
288
295
|
| `viceme merchant accounts` | List ordinary MerchantAccounts where the current User is the OWNER member. |
|
|
289
296
|
| `viceme merchant work ...` | Create, inspect, update, and publish Merchant Works, including Website Works. |
|
|
290
297
|
| `viceme merchant page ...` | Validate, preview, publish, inspect, and roll back immutable custom Creator/Work page bundles. |
|
|
@@ -348,7 +355,7 @@ process that started the update. `meta.autoUpdate` may appear when startup
|
|
|
348
355
|
recovery had to hand an already-started command to a newly committed CLI.
|
|
349
356
|
|
|
350
357
|
After an ordinary command has emitted its response, a detached worker checks
|
|
351
|
-
the stable release channel and updates
|
|
358
|
+
the stable release channel and updates the CLI and matching official Skills. The foreground command never waits
|
|
352
359
|
for release discovery or activation, and background launch, network,
|
|
353
360
|
permission, or installation failures never replace its JSON response. A
|
|
354
361
|
successful replacement is used by the next `viceme` process; it does not
|
|
@@ -356,10 +363,12 @@ require restarting the surrounding Codex, Claude Code, or WorkBuddy app.
|
|
|
356
363
|
Checks are coalesced for 24 hours, while failed checks or updates become
|
|
357
364
|
eligible for another background attempt after one hour.
|
|
358
365
|
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
366
|
+
Both manual and automatic updates synchronize official Skills through the
|
|
367
|
+
existing activation transaction. When the CLI is already current, the background
|
|
368
|
+
worker checks the installed official Skills and repairs stale or missing copies;
|
|
369
|
+
healthy installations are left alone. Agents may have loaded the old Skill text
|
|
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.
|
|
363
372
|
|
|
364
373
|
```bash
|
|
365
374
|
viceme update --check
|
|
@@ -367,17 +376,17 @@ viceme update
|
|
|
367
376
|
viceme install --agent auto
|
|
368
377
|
```
|
|
369
378
|
|
|
370
|
-
`viceme update`
|
|
371
|
-
permission preflight and durable recovery rules.
|
|
372
|
-
`viceme update --agent <target>`
|
|
373
|
-
|
|
379
|
+
`viceme update` uses the `auto` Skill target by default and keeps the existing
|
|
380
|
+
permission preflight and durable recovery rules. Use
|
|
381
|
+
`viceme update --agent <target>` to select a specific Agent destination.
|
|
382
|
+
`viceme update --check` only checks the release and does not refresh Skills.
|
|
374
383
|
|
|
375
384
|
Permission preflight checks every path that the selected installation method
|
|
376
385
|
will mutate before creating an activation journal. For npm this includes the
|
|
377
386
|
configured cache, actual scoped global package, and launcher directories through
|
|
378
|
-
Node so the host filesystem broker is preserved.
|
|
379
|
-
|
|
380
|
-
|
|
387
|
+
Node so the host filesystem broker is preserved. Standalone activation checks
|
|
388
|
+
the executable directory, and Skill installation checks every selected Agent
|
|
389
|
+
destination. A denied explicit-update preflight keeps the
|
|
381
390
|
previous generation intact and requests host approval. A denied background
|
|
382
391
|
attempt is recorded locally and does not affect the foreground command.
|
|
383
392
|
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
|
+
e907915ade8d202dd392280e4355932dc7acc872faddf459364c5007e2c6279e viceme_0.33.6_darwin_amd64
|
|
2
|
+
5a5a1117c436c3b0e560ad333b5b129f85c24b10aab5db6248e52a15caa41e51 viceme_0.33.6_darwin_arm64
|
|
3
|
+
4ae98b8e97d10bfa013a5551ec3122fe0bc8d6ce93518277805bae6c9dc0ed70 viceme_0.33.6_linux_amd64
|
|
4
|
+
224b927601b804d99a0653f83bf6324d1669ac567be99102c47bd70f7e464778 viceme_0.33.6_linux_arm64
|
|
5
|
+
a49bd49534d91154b59b22dcc93a3d173d0faae7e40bd72919edba724099b8b7 viceme_0.33.6_windows_amd64.exe
|
|
6
|
+
38e73e31197be6bceed31cbd122150c76785368dfccc339168a2c3060cc585c3 viceme_0.33.6_windows_arm64.exe
|