@xqyz/xq-cli 0.3.14 → 0.3.16
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 +20 -1
- package/README.md +12 -0
- package/package.json +1 -1
- package/src/cli.mjs +1044 -43
package/CHANGELOG.md
CHANGED
|
@@ -10,7 +10,26 @@
|
|
|
10
10
|
|
|
11
11
|
## [Unreleased]
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
## [xq-cli 0.3.16 / WorkBuddy Plugin 0.10.35 / SkillHub 1.0.17] - 2026-09-01(待发布,SkillHub 待手动上传)
|
|
14
|
+
|
|
15
|
+
### EPC 与供应方式判断恢复
|
|
16
|
+
|
|
17
|
+
- 将 `epcEngineer_judgement` 纳入 xq-cli 和 WorkBuddy 的解析状态白名单;EPC 判断不再被误报为“不支持的人工处理项”。
|
|
18
|
+
- 后续解析状态会复用现有“选择标包 / EPC”卡片;与 `bidderIdentity_judgement` 同时出现时先处理 EPC,再沿用同一 `runId/cid/uuid` 展示供应方式选择。
|
|
19
|
+
- 旧版本已经阻断的 EPC 任务会在状态查询时原地迁移到可恢复卡片,不重复上传文件或创建任务。
|
|
20
|
+
|
|
21
|
+
- Plugin 固定依赖 `@xqyz/xq-cli@0.3.16`,MCP/Connector/配置基线同步到 `0.10.35`;已生成 SkillHub `1.0.17` 上传包,仍需发布人手动上传。
|
|
22
|
+
|
|
23
|
+
## [xq-cli 0.3.15 / WorkBuddy Plugin 0.10.34 / SkillHub 1.0.16] - 2026-09-01(npm 已发布,SkillHub 待手动上传)
|
|
24
|
+
|
|
25
|
+
### 解析补充与任务恢复
|
|
26
|
+
|
|
27
|
+
- 解析补充支持评分细则文本/HTML输入和评分文件上传,需求、工程量清单、技术方案目录按喜鹊网页端规则展示对应补充卡。
|
|
28
|
+
- CLI 与 WorkBuddy 补充提交均沿用原 `runId/cid/uuid` 续跑,提交后的短暂旧状态不会重复提交;可选项支持明确跳过并拦截重复或不匹配提交。
|
|
29
|
+
- 补齐规划模式自动确认后的再次补充、工期确认和历史阻断记录恢复分支;未知 `*_judgement=0` 状态会给出升级提示并停止轮询,避免任务无限卡住。
|
|
30
|
+
- Plugin 固定依赖 `@xqyz/xq-cli@0.3.15`,MCP/Connector/配置基线同步到 `0.10.34`;已生成 SkillHub `1.0.16` 上传包,仍需发布人手动上传。
|
|
31
|
+
- `@xqyz/xq-cli@0.3.15`、`@xqyz/workbuddy-plugin-xique@0.10.34` 已发布;Plugin 的 `latest` 与 `workbuddy-stable` 均已指向 `0.10.34`。
|
|
32
|
+
- 本机 WorkBuddy 配置和内置 Skill 已更新到 Plugin `0.10.34` / CLI `0.3.15` / Skill `1.0.16`,精确 MCP 启动握手通过;完全重启 WorkBuddy 后再复核实际加载版本。
|
|
14
33
|
|
|
15
34
|
## [xq-cli 0.3.14 / WorkBuddy Plugin 0.10.33] - 2026-08-28
|
|
16
35
|
|
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:
|