@xqyz/xq-cli 0.3.13 → 0.3.15

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
@@ -10,7 +10,23 @@
10
10
 
11
11
  ## [Unreleased]
12
12
 
13
- (暂无未发布变更)
13
+ ## [xq-cli 0.3.15 / WorkBuddy Plugin 0.10.34 / SkillHub 1.0.16] - 2026-09-01(npm 待发布,SkillHub 待手动上传)
14
+
15
+ ### 解析补充与任务恢复
16
+
17
+ - 解析补充支持评分细则文本/HTML输入和评分文件上传,需求、工程量清单、技术方案目录按喜鹊网页端规则展示对应补充卡。
18
+ - CLI 与 WorkBuddy 补充提交均沿用原 `runId/cid/uuid` 续跑,提交后的短暂旧状态不会重复提交;可选项支持明确跳过并拦截重复或不匹配提交。
19
+ - 补齐规划模式自动确认后的再次补充、工期确认和历史阻断记录恢复分支;未知 `*_judgement=0` 状态会给出升级提示并停止轮询,避免任务无限卡住。
20
+ - Plugin 固定依赖 `@xqyz/xq-cli@0.3.15`,MCP/Connector/配置基线同步到 `0.10.34`;已生成 SkillHub `1.0.16` 上传包,仍需发布人手动上传。
21
+
22
+ ## [xq-cli 0.3.14 / WorkBuddy Plugin 0.10.33] - 2026-08-28
23
+
24
+ ### 登录与配置卡体验
25
+
26
+ - CLI API Key 登录页增加直接进入 API Key 管理页的入口。
27
+ - WorkBuddy 未检测到登录状态时自动打开本机 API Key 登录页,并继续使用同一任务状态等待登录完成。
28
+ - 模板 5 自定义编号改为浏览器参考式分组布局;导出格式折叠入口、页边距和图片尺寸设置增加更清晰的视觉层次。
29
+ - `@xqyz/xq-cli@0.3.14` 与 `@xqyz/workbuddy-plugin-xique@0.10.33` 已发布到 npm;SkillHub `1.0.15` 仅生成上传包,需发布人手动上传。
14
30
 
15
31
  ## [xq-cli 0.3.13 / WorkBuddy Plugin 0.10.32] - 2026-08-28
16
32
 
@@ -19,7 +35,7 @@
19
35
  - CLI 本机登录页只保留 API Key 输入,并继续通过 `/user/info` 使用现有校验链路。
20
36
  - 移除 CLI 和后端旧的账号密码、浏览器授权及 CLI 一次性授权码流程。
21
37
  - WorkBuddy 安装器只在没有 API Key 时打开本机登录页,并同步内置 CLI `0.3.13`。
22
- - `@xqyz/xq-cli@0.3.13` 与 `@xqyz/workbuddy-plugin-xique@0.10.32` 待本次发布;SkillHub `1.0.14` 仅生成上传包,需发布人手动上传。
38
+ - `@xqyz/xq-cli@0.3.13` 与 `@xqyz/workbuddy-plugin-xique@0.10.32` 已发布到 npm;SkillHub `1.0.14` 仅生成上传包,需发布人手动上传。
23
39
 
24
40
  ## [WorkBuddy Plugin 0.10.31] - 2026-08-28
25
41
 
package/README.md CHANGED
@@ -58,6 +58,8 @@ xq-cli wizard
58
58
  xq-cli wizard --file D:\bids\tender.docx
59
59
  xq-cli init --file D:\bids\tender.docx --wait
60
60
  xq-cli bidder-role --cid <cid> --uuid <uuid> --bidder-role <1|2>
61
+ xq-cli supplement --cid <cid> --uuid <uuid> --type score --text "评分细则..." --wait
62
+ xq-cli supplement --cid <cid> --uuid <uuid> --type score --file D:\bids\score.docx --wait
61
63
  xq-cli outline --cid <cid> --interactive --wait
62
64
  xq-cli outline --cid <cid> --wait
63
65
  xq-cli outline view --cid <cid>
@@ -96,6 +98,16 @@ For goods procurement tasks paused on the bidder supply method, use
96
98
  self production, `2` means procured supply). The command only submits the
97
99
  choice for the existing parsed task; it does not upload or create a task.
98
100
 
101
+ When parsing pauses with `supplement_required`, use `xq-cli supplement` with
102
+ the same `cid` and `uuid`. Rating rules accept text/HTML via `--text` or a
103
+ `.doc/.docx/.pdf/.xlsx/.xls` file via `--file`; the file path is uploaded as
104
+ `files` to the frontend-compatible endpoint. Requirement details use
105
+ `--type requirement`, bills of quantities use `--type billOfQuantities` with a
106
+ file, and technical-solution directory requirements use `--type directory`
107
+ with text. The optional `--ignore` flag is only valid for an explicitly
108
+ skippable parser check. `--wait` continues polling the same task and never
109
+ reinitializes or creates a second task.
110
+
99
111
  `write --wait` now also retries `sequelForOutline` when the directory phase stalls at the outline-complete step, and auto-calls `generateAllUnfinished` if the backend reports `100%` but still leaves unfinished chapters behind.
100
112
 
101
113
  `write` follows the frontend flow:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xqyz/xq-cli",
3
- "version": "0.3.13",
3
+ "version": "0.3.15",
4
4
  "description": "CLI for xique bid-book task workflows",
5
5
  "type": "module",
6
6
  "scripts": {