@viceme-ai/cli 0.24.1 → 0.25.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 CHANGED
@@ -1,5 +1,26 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.25.0] - 2026-09-03
4
+
5
+ ### Features
6
+
7
+ - 试用门禁置顶注入并强化跨对话遵循措辞 (`0b302c0`)
8
+ - Skill 试用付费发布流与试用闸口 (`1a3ae5a`)
9
+
10
+ ### Fixes
11
+
12
+ - 从已激活的 npm 全局包续跑更新命令 (`ca523aa`)
13
+ - npm 包清单与冒烟测试同步 use-a-skill 更名 (`65a7cd7`)
14
+ - 试用耗尽购买切换买家鉴权新链路 (`cb1b502`)
15
+ - 对齐买家购买鉴权新端点并保留试用分支话术 (`f0a12cc`)
16
+ - 试用耗尽购买前校验登录并修复多目录门禁清理 (`1112240`)
17
+
18
+ ### Other Changes
19
+
20
+ - 补齐门禁注入与移除的边界单测 (`191d0fc`)
21
+ - 官方技能 viceme-skill-use 更名为 use-a-skill (`9c6122d`)
22
+ - rebase 后重生成 release manifest (`51b0889`)
23
+
3
24
  ## [0.24.1] - 2026-09-02
4
25
 
5
26
  ### Fixes
package/README.md CHANGED
@@ -169,12 +169,12 @@ Select a target explicitly with `viceme install --agent codex`, `claude`,
169
169
  | `creator-tools` | install ViceMe, sign in through the browser, manage Profiles, update, diagnose, or repair the local setup. |
170
170
  | `become-a-creator` | apply for, claim, or check creator qualification for every creator workflow. |
171
171
  | `sell-a-skill` | publish or update a paid or free downloadable Skill; websites, services, and generic goods are out of scope. |
172
- | `viceme-skill-use` | resolve free, purchased, or purchase-required access, install the selected Skill, and continue the original task. |
172
+ | `use-a-skill` | resolve free, purchased, or purchase-required access, install the selected Skill, and continue the original task. |
173
173
  | `charge-for-your-work` | configure follow or paid unlock for an existing website and integrate it into host code after the shared creator qualification check; platform resources stay internal. |
174
174
  | `let-people-interact` | branch between danmaku, open tips, or both; danmaku-bearing routes require a published Website Work with an exact canonical Origin, while Tip can use any eligible published Merchant Work and either Mounted or Headless UI; none requires DNS ownership verification. |
175
175
  | `let-others-make-a-copy` | publish a complete website source ZIP with a root `VICEME-REPLICA.md`, then integrate the platform-provided replica prompt into the creator's own site. |
176
176
 
177
- Buyer-side `viceme-skill-use` keeps its existing name because it is not a creator workflow.
177
+ Buyer-side `use-a-skill` keeps its existing name because it is not a creator workflow.
178
178
 
179
179
  The Agent Skills own the conversational workflow and approval rules. The CLI
180
180
  owns deterministic local work and API calls. This separation lets an Agent
@@ -343,7 +343,9 @@ stops the original command so an older process cannot perform a mutation after
343
343
  a failed generation change.
344
344
 
345
345
  An npm installation continues the original command automatically on every
346
- supported platform. A standalone Windows binary may return the retryable code
346
+ supported platform, including commands started from an older `npx` cache. The
347
+ continuation uses the activated global package after checking its exact version.
348
+ A standalone Windows binary may return the retryable code
347
349
  `AUTO_UPDATE_RESTART_REQUIRED` once while Windows releases the old executable;
348
350
  rerunning the exact command completes under the new generation.
349
351
 
package/README.zh.md CHANGED
@@ -154,12 +154,12 @@ npx --yes @viceme-ai/cli@latest install
154
154
  | `creator-tools` | 安装 ViceMe、通过浏览器登录、管理 Profile、更新、诊断或修复本地环境。 |
155
155
  | `become-a-creator` | 为所有创作者玩法申请、认领或检查创作者资格。 |
156
156
  | `sell-a-skill` | 发布或更新可下载的付费或免费 Skill;网站、服务与普通商品不属于此 Skill。 |
157
- | `viceme-skill-use` | 解析免费、已购买或待购买的访问状态,安装所选 Skill,并继续原任务。 |
157
+ | `use-a-skill` | 解析免费、已购买或待购买的访问状态,安装所选 Skill,并继续原任务。 |
158
158
  | `charge-for-your-work` | 为现有网站配置关注或付费解锁并接入宿主代码;复用统一创作者资格检查,平台资源保持为内部实现。 |
159
159
  | `let-people-interact` | 分支处理仅弹幕、开放赞赏或两者;包含弹幕的路线要求已发布且 canonical Origin 精确匹配的 Website Work,Tip 可使用任意合格且已发布的 Merchant Work,并选择 Mounted 或 Headless UI;三个分支均不要求 DNS 所有权验证。 |
160
160
  | `let-others-make-a-copy` | 发布包含根级 `VICEME-REPLICA.md` 的完整网站源码 ZIP,并把平台返回的“做同款”提示词接入创作者原站。 |
161
161
 
162
- 买家侧 `viceme-skill-use` 不属于创作者玩法,因此保持现有名称。
162
+ 买家侧 `use-a-skill` 不属于创作者玩法,因此保持现有名称。
163
163
 
164
164
  Agent Skills 负责对话流程和授权规则;CLI 负责确定性本地操作与 API 调用。因此 Agent
165
165
  可以解释每一步决策,而相同的命令契约仍可在终端或自动化中复现。
@@ -313,6 +313,9 @@ viceme update --check
313
313
  viceme update
314
314
  ```
315
315
 
316
+ 从旧版 `npx` 缓存启动的命令也会在更新后自动继续:CLI 校验已激活全局包的精确版本,
317
+ 再通过该包的启动器续跑原命令。
318
+
316
319
  `viceme update` 保留为显式修复命令。正常启动检查已经会校验精确 Release、刷新匹配
317
320
  版本的官方 Skills,并把中断的激活过程恢复成一个完整、兼容的本地版本。
318
321
 
package/checksums.txt CHANGED
@@ -1,6 +1,6 @@
1
- 928799ccb0c883247819738927a47df01ab9163ba174236d2782212817cf7b0e viceme_0.24.1_darwin_amd64
2
- e639e02de19b60854ac5a966faf5cfe9753341d25520ba0d98397afdb6cf6caa viceme_0.24.1_darwin_arm64
3
- 9d4f8c49de8efb4250b4967b8bda6f17b015c7ae97d7023b7b65615790864739 viceme_0.24.1_linux_amd64
4
- 1b7bbb89719871cdc55ee53fb32823226c59199bd5e85250ffae64b57603c330 viceme_0.24.1_linux_arm64
5
- 1aa042cd487399d3e4e37aac51c7fa9522af1ff9115515562ff07f0851a41a76 viceme_0.24.1_windows_amd64.exe
6
- 45db5077bd2d308368cd7062810fe5b8f340a9a6ea1e883f6f047a84d1e84496 viceme_0.24.1_windows_arm64.exe
1
+ 8fc9403ff8380ffe45359cf04a4a7ea41eece9dbf57ffbad8c4883f06c19cf36 viceme_0.25.0_darwin_amd64
2
+ 646a4681752303f334597d78e937b9663c27d304bb0aa16be4298722f69d0fe8 viceme_0.25.0_darwin_arm64
3
+ 5f420ea2dc67d36bbf4869e5c93472da1165c359f4f61ffc63ca4bd7ca6fa67d viceme_0.25.0_linux_amd64
4
+ c5368bdd34b07b83e21490b3c4668ac0d68f3d4d754ff6b4c1e65ba8449d850a viceme_0.25.0_linux_arm64
5
+ ceeb0258790905d3912b68fa94d2c819f97d4db82fb528aeefaae190a251ca10 viceme_0.25.0_windows_amd64.exe
6
+ ad0156c97a0902b69dee5087bac10c235bca7dc743d9107a38e3efee9077a59a viceme_0.25.0_windows_arm64.exe
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@viceme-ai/cli",
3
- "version": "0.24.1",
3
+ "version": "0.25.0",
4
4
  "description": "Install the ViceMe creator CLI and official Agent Skills",
5
5
  "type": "module",
6
6
  "bin": {