@viceme-ai/cli 0.32.0 → 0.33.1

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,32 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.33.1] - 2026-09-05
4
+
5
+ ### Fixes
6
+
7
+ - 修复自定义页面导入路由适配 (`709985a`)
8
+ - 对齐做同款解析的上下架状态合同 (`d7950ca`)
9
+ - 解耦创作者登录与名片选择等待 (`44a4f79`)
10
+
11
+ ## [0.33.0] - 2026-09-05
12
+
13
+ ### Features
14
+
15
+ - 贯通创作者托管发布与经营管理流程 (`9ff799f`)
16
+ - 支持托管补发恢复并同步发布状态合同 (`b704bfc`)
17
+ - 支持网站副本销售管理与幂等确认 (`3c4719e`)
18
+
19
+ ### Fixes
20
+
21
+ - 对齐网站副本发布与终审协议 (`5fc2c07`)
22
+ - 兼容旧作品响应省略服务字段 (`030c2b1`)
23
+ - 将做同款项目预览判断交给用户 Agent (`2c43455`)
24
+
25
+ ### Other Changes
26
+
27
+ - 对齐确认响应的通用错误码 (`f175c50`)
28
+ - 移除旧网站副本同步写入客户端 (`9e29148`)
29
+
3
30
  ## [0.32.0] - 2026-09-04
4
31
 
5
32
  ### Features
package/README.md CHANGED
@@ -273,8 +273,12 @@ Never copy an access token into the conversation.
273
273
  | `viceme publication update ...` | Replace the complete listing draft from a strict JSON file. |
274
274
  | `viceme publication confirm ...` | Confirm the exact current review digest. |
275
275
  | `viceme publication publish ...` | Make a confirmed listing public. |
276
- | `viceme replica preview [--path <project> \| --url <loopback-url>]` | Open the anonymous ViceMe preview shell around a local website before sign-in or upload; a CLI-owned dev server runs only until the command exits, and the opened browser remains the authority for visual verification. |
277
- | `viceme replica publish --path <project-or-zip> ...` | In the CN market, check and preview a project (existing ZIPs are validated and privately extracted for preview), freeze its source, and return one 30-minute final review. Rerun the reported command with the exact `--confirm` version to upload and submit it; `PROCESSING` means submitted but not published. |
276
+ | `viceme replica preview --url <loopback-page-url>` | Open the anonymous preview shell around the actual page selected and served by the user's agent. The CLI validates the local address and connectivity; the agent observes the page and owns its server lifecycle. Missing input returns `PROVIDE_PREVIEW_URL`, without inspecting project filenames. |
277
+ | `viceme replica publish --path <project-or-zip> --preview-url <loopback-page-url> --preview-reviewed ...` | In the CN market, validate and freeze the source after the agent has observed the page and its official shell embedding. Missing observation returns `REVIEW_LOCAL_PREVIEW`; connectivity alone is not verification. ZIP inputs remain source artifacts, not inferred startup projects. Return one 30-minute final review, then rerun its exact `--confirm` command to upload and submit; `PROCESSING` means submitted but not published. |
278
+ | `viceme replica repair-hosting --publication <ID> --path <project-or-WorkPage-ZIP>` | Review page-only hosting repair, then run the returned confirmation command. Interrupted attempts reuse the original request; source and buyer rights remain unchanged. |
279
+ | `viceme replica sales --replica <ID>` | Inspect the current source version, price and management permission; suspended owners retain read-only access. |
280
+ | `viceme replica price --replica <ID> --price-cents <cents>` | Review a price change (0 is free), then run the complete returned confirmation command. No source upload is required. |
281
+ | `viceme replica delist --replica <ID>` / `viceme replica relist --replica <ID>` | Review delisting or relisting, then run the complete returned confirmation command. Existing purchase rights remain unchanged. |
278
282
  | `viceme replica status <publication-id>` | Read authoritative Website Replica Publication state and complete the stable local binding after a published terminal state. |
279
283
  | `viceme replica resume <publication-id>` | Continue only the missing upload, verification, submission, or allowed retry step from authoritative state. |
280
284
  | `viceme replica cancel <publication-id>` | Cancel a Publication before activation and clean its local recoverable source. |
package/README.zh.md CHANGED
@@ -248,8 +248,12 @@ Endpoint 必须使用 HTTPS;只有 localhost 和 loopback 本地开发可以
248
248
  | `viceme publication update ...` | 用严格 JSON 文件替换完整 Listing Draft。 |
249
249
  | `viceme publication confirm ...` | 确认当前精确 Review Digest。 |
250
250
  | `viceme publication publish ...` | 公开已经确认的 Listing。 |
251
- | `viceme replica preview [--path <项目> \| --url <回环地址>]` | 登录或上传前,在匿名 ViceMe 预览壳中打开本地网页;CLI 启动的 dev server 仅存活到命令退出,视觉验证以打开的浏览器为准。 |
252
- | `viceme replica publish --path <项目或ZIP> ...` | 在 CN 市场本地检查并预览项目(已有 ZIP 会先完整校验,再私有解压用于预览)、冻结源码并返回一份三十分钟终审;仅以返回的精确 `--confirm` 版本重跑后才上传和提交,`PROCESSING` 表示已提交但尚未发布。 |
251
+ | `viceme replica preview --url <本地页面地址>` | 在匿名预览壳中打开由用户 Agent 选择并启动的实际页面。CLI 校验本地地址及连通性;Agent 负责观察页面和管理自有服务。缺少地址返回 `PROVIDE_PREVIEW_URL`,不检查固定项目文件名。 |
252
+ | `viceme replica publish --path <项目或ZIP> --preview-url <本地页面地址> --preview-reviewed ...` | 在 CN 市场,由 Agent 检查实际页面及官方壳嵌入后,校验并冻结源码。缺少观察声明返回 `REVIEW_LOCAL_PREVIEW`,连通性不代表视觉验证;ZIP 作为源码制品,不推断启动方式。返回一份三十分钟终审,仅以其精确 `--confirm` 命令重跑后才上传和提交;`PROCESSING` 表示已提交但尚未发布。 |
253
+ | `viceme replica repair-hosting --publication <ID> --path <项目或WorkPage-ZIP>` | 校验并确认仅页面托管补发;原确认命令可恢复中断,源码版本、价格和买家权益不变。 |
254
+ | `viceme replica sales --replica <ID>` | 查看当前源码版本、销售价格与经营权限;暂停经营后仍可只读查询。 |
255
+ | `viceme replica price --replica <ID> --price-cents <分>` | 预览改价影响,0 表示免费;执行返回的完整确认命令后修改价格,不重新上传源码。 |
256
+ | `viceme replica delist --replica <ID>` / `viceme replica relist --replica <ID>` | 预览下架或重新上架影响,再执行返回的完整确认命令;已有购买权益不变。 |
253
257
  | `viceme replica status <publication-id>` | 读取 Website Replica Publication 权威状态,并在发布终态补全稳定本地绑定。 |
254
258
  | `viceme replica resume <publication-id>` | 从权威子状态只继续缺失的上传、校验、提交或允许的重试步骤。 |
255
259
  | `viceme replica cancel <publication-id>` | 激活前取消 Publication,并清理本地可恢复源码。 |
package/checksums.txt CHANGED
@@ -1,6 +1,6 @@
1
- 84e755aa4eb35cf39e1e02da466f39d4b1b1dcbf13e602ecbd28d9197edecabe viceme_0.32.0_darwin_amd64
2
- 3adaaa3aa6f3b4f65b25c242c75e78a1177463ee0864a225f158e281ad80a72f viceme_0.32.0_darwin_arm64
3
- 79c1626b79c980d1c84a61e989fd8ad75f0a343c1c57c1ef0b417a7153969624 viceme_0.32.0_linux_amd64
4
- de185ad3b83b4cff944230ce3d32a8224fbc8f1888c57c783e345a1f4d2be5db viceme_0.32.0_linux_arm64
5
- 1d9cd8bfd1261e5b96ba1588e57442be04dbd5e5fe16475e37d816079e29ff0e viceme_0.32.0_windows_amd64.exe
6
- 324a5e3524b939289226da475072515c47eb355c3181504cbb49b02b352b49c4 viceme_0.32.0_windows_arm64.exe
1
+ d6fd39a99e7e12631f0001c5483eba1f118774b5387275c8f56a6b2a303a514a viceme_0.33.1_darwin_amd64
2
+ a243874259c552019d35fdfaad21b6c10f8ff2caefc7a114eabf5b6f7acc1b23 viceme_0.33.1_darwin_arm64
3
+ fcb47809d9abdf7251c6572306d5c5fcbfae9d4a088f8fbc8ed6efc95342b0b6 viceme_0.33.1_linux_amd64
4
+ c36eb37022a0c33e5d69b6476e0486685fda6b8f10e3af086c098740e26d6df6 viceme_0.33.1_linux_arm64
5
+ 4e3b5696a673db2408673210046cbd19811931a8e377d8282ce1d787ddee7181 viceme_0.33.1_windows_amd64.exe
6
+ 0ccf1569159cd525d2c6308225b15e292339f78423b2a48dbd4cf03f5d8a4ab3 viceme_0.33.1_windows_arm64.exe
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@viceme-ai/cli",
3
- "version": "0.32.0",
3
+ "version": "0.33.1",
4
4
  "description": "Install the ViceMe creator CLI and official Agent Skills",
5
5
  "type": "module",
6
6
  "bin": {