@viceme-ai/cli 0.39.1 → 0.41.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,32 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.41.0] - 2026-09-11
4
+
5
+ ### Features
6
+
7
+ - 支持国际站美元免费做同款 (`b340424`)
8
+ - 支持自主收入提现与原单恢复 (`37f3495`)
9
+
10
+ ### Fixes
11
+
12
+ - 简化 Windows Agent 安装与定位 (`66dc16d`)
13
+
14
+ ## [0.40.0] - 2026-09-10
15
+
16
+ ### Features
17
+
18
+ - 预览后提供带作品来源的扫码关注入口 (`b27cd47`)
19
+
20
+ ### Fixes
21
+
22
+ - 安装并打开作品预览后再提示登录 (`4b87568`)
23
+ - 支付超时后保留原单并禁止自动重新付款 (`cb1cecf`)
24
+ - 做同款到账后先展示支持结果再准备作品 (`ea047df`)
25
+
26
+ ### Other Changes
27
+
28
+ - 移除误提交的支付验收截图 (`e9c943a`)
29
+
3
30
  ## [0.39.1] - 2026-09-10
4
31
 
5
32
  ### Fixes
package/README.md CHANGED
@@ -439,3 +439,21 @@ make release-manifest
439
439
  The CLI and official Agent Skills are versioned and released together. GitHub,
440
440
  npm, `s3.viceme.cn`, and `s3.viceme.ai` artifacts come from the same reviewed
441
441
  commit.
442
+
443
+ ## 创作者收入提现
444
+
445
+ 国内站登录后,可由 Agent 调用官方 `withdraw-income` Skill 自主提现;旧凭证首次使用时重新运行 `viceme auth login`。
446
+
447
+ ```sh
448
+ viceme withdraw context
449
+ viceme withdraw create --request-id <稳定任务标识>
450
+ viceme withdraw create --request-id <稳定任务标识> --amount 100.00
451
+ viceme withdraw status --request-id <原任务标识>
452
+ ```
453
+
454
+ `--amount` 的单位是人民币元;省略时按可提现收入、渠道上限和剩余当日额度选择金额。
455
+ 每个新任务使用新请求标识;首次办理、重新登录和网络失败后沿用原标识及原参数恢复。
456
+ CLI 在当前账号与 Profile 下保存请求,确保恢复时不会重新选额或换账户。
457
+ 渠道需要本人实名签约、绑定或确认收款时,Skill 展示现有网站入口,完成后继续原单。
458
+ `PENDING` 与 `ACTION_REQUIRED` 均不代表到账;只有 `SUCCEEDED` 表示全部提现成功。
459
+ 定期触发和长时间跟踪由上层 Agent 负责。
package/checksums.txt CHANGED
@@ -1,6 +1,6 @@
1
- 4b8dba59dba085f305f5b6ff7a2eb11330f889577cf5b7c6a8b21ca9d7eb06ec viceme_0.39.1_darwin_amd64
2
- 4e8d22dfd4971768c1ef3acc7e753e0216b15c221d5c213f26ab7bd4ce579bf8 viceme_0.39.1_darwin_arm64
3
- 6810718c64129989ee286670256191c4684ce5cd9ec9de592d41a676406f43f3 viceme_0.39.1_linux_amd64
4
- 6ad2e5597857b71f39053b57a778ce0771d9e74c4eb5cdf4a256c30a7b2260b7 viceme_0.39.1_linux_arm64
5
- c5ca20a1d4421c834d0bc3ddf00eb7f184a48bea0938096f778c2b00111bc953 viceme_0.39.1_windows_amd64.exe
6
- 90d0badd3e54155a0f9f740451802d608559a2ada79627bc61f2670614dd04fd viceme_0.39.1_windows_arm64.exe
1
+ 502cddd6ccb6ae366df825202c9ba8bc1028c8169f41468af53d5f1cd03a7b26 viceme_0.41.0_darwin_amd64
2
+ ee19f99f8fc38b61172252bdfd872e7c23d739ef890624c581848b2fe29851be viceme_0.41.0_darwin_arm64
3
+ 208e1570a1da085410c8b817928a4d30f839b30bfffe8bcd4f3c2c0d3d1e83e9 viceme_0.41.0_linux_amd64
4
+ 6535fcbc9ea449feaf27566fa4aa478aaba884d8ca3f3fef49013380f244a272 viceme_0.41.0_linux_arm64
5
+ 2b4f2406d43724718b8657c7effa8dcb6670ad47db9bcfdaa95dc9f7d39975ea viceme_0.41.0_windows_amd64.exe
6
+ c06c567bba9a3ac4c6e0463b309b98b8e6c180ea241efcb642d841db99992e0f viceme_0.41.0_windows_arm64.exe
package/docs/releasing.md CHANGED
@@ -159,8 +159,11 @@ Every release renders two public Agent contracts with the exact stable version:
159
159
 
160
160
  - `release/agent-install.md.tmpl` is the narrow CLI Runtime bootstrap. It
161
161
  installs or updates one verified CLI plus official-Skill generation, runs
162
- `viceme doctor`, and then returns control to its caller. It does not know a
163
- Product stable name or install a merchant Product Skill.
162
+ `viceme doctor`, and then returns control to its caller. Windows Agents verify
163
+ the Manifest-selected executable and invoke the executable's own
164
+ `bootstrap activate` entrypoint directly, so a POSIX-only host such as WorkBuddy does not need to
165
+ escape into PowerShell or npm. It does not know a Product stable name or
166
+ install a merchant Product Skill.
164
167
  - `release/commerce-skill-install.md.tmpl` is the generic Product Skill
165
168
  activation contract. It first uses an already healthy Commerce Runtime and
166
169
  delegates to the same-region `agent-install.md` only when the Runtime is
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@viceme-ai/cli",
3
- "version": "0.39.1",
3
+ "version": "0.41.0",
4
4
  "description": "Install the ViceMe creator CLI and official Agent Skills",
5
5
  "type": "module",
6
6
  "bin": {