@viceme-ai/cli 0.15.1 → 0.15.2
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 +21 -0
- package/README.md +22 -15
- package/README.zh.md +20 -13
- package/checksums.txt +6 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.15.2] - 2026-08-18
|
|
4
|
+
|
|
5
|
+
### Fixes
|
|
6
|
+
|
|
7
|
+
- 统一认证失败详情契约 (`934139c`)
|
|
8
|
+
- 覆盖官方凭据的 Profile 迁移 (`53cad42`)
|
|
9
|
+
- 收口发布流程升级兼容契约 (`0aa469a`)
|
|
10
|
+
- 以 API 地址确定运行环境 (`5ee2002`)
|
|
11
|
+
- 合并作品详情确认与询价 (`d358466`)
|
|
12
|
+
- 修复 Skill 包元数据与占位符误判 (`594c89f`)
|
|
13
|
+
- 无价继续媒体与分析 (`e5bcdfb`)
|
|
14
|
+
- 隐藏发布流程环境选择 (`997dfd6`)
|
|
15
|
+
- 更新安装后的发布入口 (`a78db66`)
|
|
16
|
+
- 固定发布环境选择优先级 (`0171135`)
|
|
17
|
+
- 同步 Skill 发布摘要 (`6a76f1e`)
|
|
18
|
+
- 修正 WorkBuddy 预览打开契约 (`d21330a`)
|
|
19
|
+
|
|
20
|
+
### Other Changes
|
|
21
|
+
|
|
22
|
+
- 同步渐进式发布流程 (`a646450`)
|
|
23
|
+
|
|
3
24
|
## [0.15.1] - 2026-08-17
|
|
4
25
|
|
|
5
26
|
### Fixes
|
package/README.md
CHANGED
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
listings when a response is lost.
|
|
31
31
|
- **Built for Agents and automation** — stable JSON output, error codes, dry
|
|
32
32
|
runs, and explicit state transitions make every action inspectable.
|
|
33
|
-
- **Safe by default** —
|
|
33
|
+
- **Safe by default** — browser authorization, origin-bound profiles, local
|
|
34
34
|
secret checks, immutable digests, and verified uploads protect the release
|
|
35
35
|
path.
|
|
36
36
|
|
|
@@ -57,18 +57,20 @@
|
|
|
57
57
|
discover the installed Skills.
|
|
58
58
|
3. Attach a local Skill directory or ZIP and ask naturally:
|
|
59
59
|
|
|
60
|
-
> Publish this Skill to ViceMe
|
|
60
|
+
> Publish this Skill to ViceMe.
|
|
61
61
|
|
|
62
62
|
The Agent checks login, keeps the selected Profile fixed throughout the
|
|
63
63
|
workflow, validates the Skill, immediately uploads the private Draft, and opens
|
|
64
|
-
its real Owner Preview
|
|
64
|
+
its real Owner Preview. It continues media analysis without asking for a price.
|
|
65
65
|
After ViceMe prepares the bilingual copy and media suggestions, the Agent shows
|
|
66
|
-
the complete
|
|
67
|
-
|
|
66
|
+
the complete listing—including the images—and asks one combined question for
|
|
67
|
+
the price and any desired changes. It then shows the final review and asks once
|
|
68
|
+
whether to confirm and publish it publicly.
|
|
68
69
|
|
|
69
70
|
```text
|
|
70
|
-
Local Skill → Login → Validate and private upload → Owner Preview →
|
|
71
|
-
→
|
|
71
|
+
Local Skill → Login → Validate and private upload → Owner Preview → Platform analysis
|
|
72
|
+
→ Complete listing details + price question → Final review
|
|
73
|
+
→ Confirm and publish → Public URL
|
|
72
74
|
```
|
|
73
75
|
|
|
74
76
|
The initial request to “publish” is not permission to make the listing public.
|
|
@@ -88,7 +90,12 @@ viceme auth login
|
|
|
88
90
|
# Upload the real private draft and open its Owner Preview before pricing.
|
|
89
91
|
viceme skill publish --path ./my-skill
|
|
90
92
|
|
|
91
|
-
#
|
|
93
|
+
# Continue the same unpriced draft, upload media, and start analysis.
|
|
94
|
+
viceme skill publish --resume <publication-id>
|
|
95
|
+
viceme publication wait <publication-id>
|
|
96
|
+
viceme publication review <publication-id>
|
|
97
|
+
|
|
98
|
+
# After reviewing the complete listing details, set CNY 1.00 on that draft.
|
|
92
99
|
viceme skill publish --resume <publication-id> --price-minor 100
|
|
93
100
|
```
|
|
94
101
|
|
|
@@ -168,15 +175,15 @@ are not accepted.
|
|
|
168
175
|
| Login | Browser authorization happens before protected API work. Every command remains pinned to the same Profile and API origin. |
|
|
169
176
|
| Inspect | Local validation rejects unsafe paths, special files, excessive content, sensitive files, and common secret patterns. |
|
|
170
177
|
| Private upload and preview | The initial publish request authorizes the private Draft upload. The real package is verified and its Owner Preview opens before pricing. |
|
|
171
|
-
| Price | The user supplies an exact CNY price in fen on the same Publication. |
|
|
172
178
|
| Analysis | ViceMe proposes short Chinese and English summaries, bilingual usage instructions, a cover, and an ordered gallery. Suggestions are never treated as user decisions. |
|
|
179
|
+
| Listing details and price | After analysis, the Agent displays the exact title, bilingual copy, cover, and gallery, then asks one combined question for the CNY price in fen and any desired changes. It never asks for price by itself. |
|
|
173
180
|
| Review | The Agent displays the exact copy, price, cover, and gallery images. A short summary has a maximum display width of 30; ASCII counts as 1 and Chinese/non-ASCII as 2. |
|
|
174
181
|
| Publish | One explicit final confirmation authorizes review confirmation followed by immediate, irreversible public publication. |
|
|
175
182
|
|
|
176
183
|
If the upload or response is interrupted, continue the existing publication:
|
|
177
184
|
|
|
178
185
|
```bash
|
|
179
|
-
viceme
|
|
186
|
+
viceme skill publish --resume <publication-id>
|
|
180
187
|
```
|
|
181
188
|
|
|
182
189
|
Never create a second publication merely because the previous response was
|
|
@@ -184,9 +191,9 @@ unknown. Query or resume the existing ID first.
|
|
|
184
191
|
|
|
185
192
|
## Authentication and Profiles
|
|
186
193
|
|
|
187
|
-
Each Profile binds one
|
|
188
|
-
|
|
189
|
-
|
|
194
|
+
Each Profile binds one explicit API endpoint and one device-authorized account.
|
|
195
|
+
The separately stored distribution region selects only the CLI and bundled
|
|
196
|
+
Skill download source; it never selects a publication market.
|
|
190
197
|
|
|
191
198
|
```bash
|
|
192
199
|
viceme auth login
|
|
@@ -203,7 +210,6 @@ dedicated Profile before signing in:
|
|
|
203
210
|
```bash
|
|
204
211
|
viceme profile add \
|
|
205
212
|
--name private-cn \
|
|
206
|
-
--region cn \
|
|
207
213
|
--api-base-url https://api.example.com \
|
|
208
214
|
--use
|
|
209
215
|
viceme auth login
|
|
@@ -234,9 +240,10 @@ Never copy an access token into the conversation.
|
|
|
234
240
|
| `viceme skill listing get <listing-id>` | Read the authoritative private Listing state. |
|
|
235
241
|
| `viceme skill listing bind <listing-id> --path <path>` | Explicitly bind a source to a selected owned Listing. |
|
|
236
242
|
| `viceme skill publish --path <path>` | Upload the real private package and return its Owner Preview before pricing. |
|
|
237
|
-
| `viceme skill publish --resume <id
|
|
243
|
+
| `viceme skill publish --resume <id>` | Continue the same unpriced Draft, upload media candidates, and start analysis. |
|
|
238
244
|
| `viceme publication wait <id>` | Wait for background analysis without re-uploading. |
|
|
239
245
|
| `viceme publication review <id>` | Read the authoritative bilingual copy, price, selected media, and review state. |
|
|
246
|
+
| `viceme skill publish --resume <id> --price-minor <fen>` | Apply the reviewed CNY price to the same Draft without creating another Listing. |
|
|
240
247
|
| `viceme publication asset upload ...` | Replace or add a cover or gallery image before confirmation. |
|
|
241
248
|
| `viceme publication update ...` | Replace the complete listing draft from a strict JSON file. |
|
|
242
249
|
| `viceme publication confirm ...` | Confirm the exact current review digest. |
|
package/README.zh.md
CHANGED
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
也不会重复创建商品。
|
|
28
28
|
- **同时适合 Agent 和自动化**——稳定 JSON、错误码、Dry Run 和明确状态让每个动作
|
|
29
29
|
都可检查、可复现。
|
|
30
|
-
-
|
|
30
|
+
- **默认安全**——浏览器授权、绑定 Origin 的 Profile、本地 Secret 检查、不可变摘要
|
|
31
31
|
和已验证上传共同保护发布链路。
|
|
32
32
|
|
|
33
33
|
## 能做什么
|
|
@@ -53,15 +53,17 @@
|
|
|
53
53
|
Skills。
|
|
54
54
|
3. 附上本地 Skill 目录或 ZIP,然后直接说:
|
|
55
55
|
|
|
56
|
-
> 帮我把这个 Skill
|
|
56
|
+
> 帮我把这个 Skill 发布到 ViceMe。
|
|
57
57
|
|
|
58
58
|
Agent 会先检查登录状态,在整个流程中固定使用同一个 Profile,校验 Skill 后立即
|
|
59
|
-
|
|
60
|
-
Agent
|
|
59
|
+
上传私有草稿并打开真实创作者预览,不询价就继续媒体分析。ViceMe 完成双语文案和素材
|
|
60
|
+
建议后,Agent 会先把完整作品详情和图片直接展示出来,再把价格和详情修改合并成一个
|
|
61
|
+
问题;应用用户答案后展示最终成品,最后只询问一次是否确认并立即公开发布。
|
|
61
62
|
|
|
62
63
|
```text
|
|
63
|
-
本地 Skill → 登录 → 校验并私有上传 → 创作者预览 →
|
|
64
|
-
→
|
|
64
|
+
本地 Skill → 登录 → 校验并私有上传 → 创作者预览 → 平台分析
|
|
65
|
+
→ 完整详情与价格合并询问 → 最终成品
|
|
66
|
+
→ 确认并发布 → 公开商品链接
|
|
65
67
|
```
|
|
66
68
|
|
|
67
69
|
最初的“帮我发布”不等于授权公开上架。只有完整审核稿已经展示、用户明确确认后,
|
|
@@ -80,7 +82,12 @@ viceme auth login
|
|
|
80
82
|
# 定价前先上传真实私有草稿,并打开创作者预览。
|
|
81
83
|
viceme skill publish --path ./my-skill
|
|
82
84
|
|
|
83
|
-
#
|
|
85
|
+
# 继续同一个未定价草稿,上传媒体并启动分析。
|
|
86
|
+
viceme skill publish --resume <publication-id>
|
|
87
|
+
viceme publication wait <publication-id>
|
|
88
|
+
viceme publication review <publication-id>
|
|
89
|
+
|
|
90
|
+
# 查看完整作品详情后,在同一个草稿上设置人民币 1 元。
|
|
84
91
|
viceme skill publish --resume <publication-id> --price-minor 100
|
|
85
92
|
```
|
|
86
93
|
|
|
@@ -154,23 +161,23 @@ Agent Skills 负责对话流程和授权规则;CLI 负责确定性本地操作
|
|
|
154
161
|
| 登录 | 受保护 API 操作前完成浏览器授权;所有后续命令固定使用同一个 Profile 与 API Origin。 |
|
|
155
162
|
| 校验 | 本地拒绝危险路径、特殊文件、超限内容、敏感文件和常见 Secret 模式。 |
|
|
156
163
|
| 私有上传与预览 | 用户发起发布即授权上传私有草稿;真实包验证后先打开创作者预览。 |
|
|
157
|
-
| 定价 | 用户随后在同一 Publication 上以“分”为单位提供人民币价格。 |
|
|
158
164
|
| 平台分析 | ViceMe 建议中英文短简介、中英文使用说明、封面和有序画廊;建议不能替代用户决定。 |
|
|
165
|
+
| 作品详情与定价 | 分析完成后,Agent 先展示标题、双语文案、封面和画廊,再把价格和详情修改合并成一个问题;不能单独询价。 |
|
|
159
166
|
| 图文审核 | Agent 展示精确文案、价格、封面和所有画廊图片。短简介最大显示宽度为 30:ASCII 计 1,中文及其他非 ASCII 计 2。 |
|
|
160
167
|
| 公开发布 | 用户只需做一次最终明确确认;随后完成审核确认并立即、不可逆地公开上架。 |
|
|
161
168
|
|
|
162
169
|
上传或响应中断后,继续原来的 Publication:
|
|
163
170
|
|
|
164
171
|
```bash
|
|
165
|
-
viceme
|
|
172
|
+
viceme skill publish --resume <publication-id>
|
|
166
173
|
```
|
|
167
174
|
|
|
168
175
|
不能因为上一次响应未知就创建第二个 Publication,应先查询或恢复原 ID。
|
|
169
176
|
|
|
170
177
|
## 登录与 Profile
|
|
171
178
|
|
|
172
|
-
每个 Profile
|
|
173
|
-
|
|
179
|
+
每个 Profile 绑定一个明确的 API Endpoint 和一个通过浏览器授权的账户。发布目标完全
|
|
180
|
+
由当前 Profile 的 Endpoint 决定;单独的分发区域只选择 CLI 与官方 Skills 的下载来源。
|
|
174
181
|
|
|
175
182
|
```bash
|
|
176
183
|
viceme auth login
|
|
@@ -186,7 +193,6 @@ viceme profile use default
|
|
|
186
193
|
```bash
|
|
187
194
|
viceme profile add \
|
|
188
195
|
--name private-cn \
|
|
189
|
-
--region cn \
|
|
190
196
|
--api-base-url https://api.example.com \
|
|
191
197
|
--use
|
|
192
198
|
viceme auth login
|
|
@@ -214,9 +220,10 @@ Endpoint 必须使用 HTTPS;只有 localhost 和 loopback 本地开发可以
|
|
|
214
220
|
| `viceme skill listing get <listing-id>` | 读取权威的私有 Listing 状态。 |
|
|
215
221
|
| `viceme skill listing bind <listing-id> --path <path>` | 将来源明确绑定到用户选定且拥有的 Listing。 |
|
|
216
222
|
| `viceme skill publish --path <path>` | 定价前上传真实私有包并返回创作者预览。 |
|
|
217
|
-
| `viceme skill publish --resume <id
|
|
223
|
+
| `viceme skill publish --resume <id>` | 继续同一个未定价 Draft,上传媒体候选并启动分析。 |
|
|
218
224
|
| `viceme publication wait <id>` | 等待后台分析,不重复上传。 |
|
|
219
225
|
| `viceme publication review <id>` | 读取权威双语文案、价格、选定素材和审核状态。 |
|
|
226
|
+
| `viceme skill publish --resume <id> --price-minor <fen>` | 在完整详情审核后,为同一个 Draft 写入人民币价格,不新建 Listing。 |
|
|
220
227
|
| `viceme publication asset upload ...` | 确认前替换或新增封面、画廊图片。 |
|
|
221
228
|
| `viceme publication update ...` | 用严格 JSON 文件替换完整 Listing Draft。 |
|
|
222
229
|
| `viceme publication confirm ...` | 确认当前精确 Review Digest。 |
|
package/checksums.txt
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
3140964b542a31aabf5deaf7037d8999e5f149f4216dceacabd4c4affc0d8c40 viceme_0.15.2_darwin_amd64
|
|
2
|
+
c1eb06148eb60c947a1319b90ea7e01141bdc420697642a156ab4af754e2eb9a viceme_0.15.2_darwin_arm64
|
|
3
|
+
7c6575b8dbb7f4aef057965f403666359f99ad324a36ae34996af519d670adc3 viceme_0.15.2_linux_amd64
|
|
4
|
+
56503ffbbb06b742419d90f2661bf8fa182dee77a555a5f233b90f31ebd04fa7 viceme_0.15.2_linux_arm64
|
|
5
|
+
47e88c30290ebf8740f46e4f4a096f2184d66c50dc4477841ea727052614e432 viceme_0.15.2_windows_amd64.exe
|
|
6
|
+
f1e8fe3b3b0f32d6afd0f8a29ffe910a3c1b7f27563ebbb3ba6fb18e1692ea96 viceme_0.15.2_windows_arm64.exe
|