@viceme-ai/cli 0.31.0 → 0.33.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 +32 -0
- package/README.md +6 -2
- package/README.zh.md +6 -2
- package/checksums.txt +6 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.33.0] - 2026-09-05
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- 贯通创作者托管发布与经营管理流程 (`9ff799f`)
|
|
8
|
+
- 支持托管补发恢复并同步发布状态合同 (`b704bfc`)
|
|
9
|
+
- 支持网站副本销售管理与幂等确认 (`3c4719e`)
|
|
10
|
+
|
|
11
|
+
### Fixes
|
|
12
|
+
|
|
13
|
+
- 对齐网站副本发布与终审协议 (`5fc2c07`)
|
|
14
|
+
- 兼容旧作品响应省略服务字段 (`030c2b1`)
|
|
15
|
+
- 将做同款项目预览判断交给用户 Agent (`2c43455`)
|
|
16
|
+
|
|
17
|
+
### Other Changes
|
|
18
|
+
|
|
19
|
+
- 对齐确认响应的通用错误码 (`f175c50`)
|
|
20
|
+
- 移除旧网站副本同步写入客户端 (`9e29148`)
|
|
21
|
+
|
|
22
|
+
## [0.32.0] - 2026-09-04
|
|
23
|
+
|
|
24
|
+
### Features
|
|
25
|
+
|
|
26
|
+
- 支持网站副本成对回滚 (`5010354`)
|
|
27
|
+
- 消费创作者名片网页选择 (`501a2dd`)
|
|
28
|
+
- 原子发布网站源码与托管页面 (`6e1333f`)
|
|
29
|
+
|
|
30
|
+
### Fixes
|
|
31
|
+
|
|
32
|
+
- 做同款通过作品接口解析入口 (`3158d03`)
|
|
33
|
+
- 严格处理已购 Skill 安装 (`78a2221`)
|
|
34
|
+
|
|
3
35
|
## [0.31.0] - 2026-09-04
|
|
4
36
|
|
|
5
37
|
### 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
|
|
277
|
-
| `viceme replica publish --path <project-or-zip> ...` | In the CN market,
|
|
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
|
|
252
|
-
| `viceme replica publish --path <项目或ZIP> ...` | 在 CN
|
|
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
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
c5f50ae603cf9dc132b66e0b0157f603fd90c1d0c965f3c0a7ea55a341cbad09 viceme_0.33.0_darwin_amd64
|
|
2
|
+
a20d0ed58f59520993d60d46853ab14b1867b59a6e801a752b3f84c7623e2506 viceme_0.33.0_darwin_arm64
|
|
3
|
+
f866fa242795f71e9a272a36a8af083972011c869e67153a3f12e89a6ddfd364 viceme_0.33.0_linux_amd64
|
|
4
|
+
419b99090197636e44f008feaba599a7d32ad5a7037b45978dfad70aad624fd2 viceme_0.33.0_linux_arm64
|
|
5
|
+
4c103f4829b8bebe3e228b4d86646f82d30d896319c0e684faa4eadaa684b134 viceme_0.33.0_windows_amd64.exe
|
|
6
|
+
0fc146ad62f912277b1b38879914b424153604b8599e27555a2aaadbd53f3a45 viceme_0.33.0_windows_arm64.exe
|