@xqyz/xq-cli 0.3.17 → 0.3.18

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,6 +10,16 @@
10
10
 
11
11
  ## [Unreleased]
12
12
 
13
+ ## [xq-cli 0.3.18 / WorkBuddy Plugin 0.10.37 / SkillHub 1.0.19] - 2026-09-02(npm 已发布,SkillHub 待手动上传)
14
+
15
+ ### 供应方式续跑与 EPC 语义修复
16
+
17
+ - 修正 `epcEngineer_judgement` 的语义:只有 `1` 表示需要 EPC 编写范围选择,`0` 表示无需 EPC 范围,不再把分类结果误当成未补充输入。
18
+ - 供应方式提交后,即使旧运行记录残留 `special-config-sync` 或错误的 `epcRequired=true`,状态查询也会依据最新解析结果原地纠正并继续同一 `runId/cid/uuid`,不重复上传、初始化或提交供应方式。
19
+ - 新增与真实卡死记录同形的回归测试,覆盖“已提交 `bidderRole=2`、`epcEngineer_judgement=0`、残留特殊配置阶段”的恢复路径。
20
+ - Plugin 固定依赖 `@xqyz/xq-cli@0.3.18`,MCP/Connector 基线同步到 `0.10.37`;Plugin 的 `latest` 与 `workbuddy-stable` 均指向 `0.10.37`。
21
+ - SkillHub `1.0.19` 校验包已生成,仍由发布人手动上传。
22
+
13
23
  ## [xq-cli 0.3.17 / WorkBuddy Plugin 0.10.36 / SkillHub 1.0.18] - 2026-09-01(npm 已发布,SkillHub 待手动上传)
14
24
 
15
25
  ### EPC 与供应方式判断恢复
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xqyz/xq-cli",
3
- "version": "0.3.17",
3
+ "version": "0.3.18",
4
4
  "description": "CLI for xique bid-book task workflows",
5
5
  "type": "module",
6
6
  "scripts": {
package/src/cli.mjs CHANGED
@@ -4216,7 +4216,6 @@ function collectParseIssues(result) {
4216
4216
  'score_judgement',
4217
4217
  'directory_judgement',
4218
4218
  'scoreAndDirectory_judgement',
4219
- 'epcEngineer_judgement',
4220
4219
  'bidderIdentity_judgement',
4221
4220
  ];
4222
4221
 
@@ -4264,9 +4263,6 @@ function classifyParseContinuation(issues = []) {
4264
4263
  if (normalized.has('scoreAndDirectory_judgement')) {
4265
4264
  return 'basis_selection_required';
4266
4265
  }
4267
- if (normalized.has('epcEngineer_judgement')) {
4268
- return 'special_config_required';
4269
- }
4270
4266
  if (normalized.has('bidderIdentity_judgement')) {
4271
4267
  return 'bidder_role_required';
4272
4268
  }