@viceme-ai/cli 0.40.0 → 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 +11 -0
- package/README.md +18 -0
- package/checksums.txt +6 -6
- package/docs/releasing.md +5 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
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
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
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.
|
|
163
|
-
|
|
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
|