dsh-data-cleaning-agent 0.8.22 → 0.8.23

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
@@ -4,6 +4,12 @@
4
4
 
5
5
  ## [Unreleased]
6
6
 
7
+ ## [0.8.23] - 2026-09-09
8
+
9
+ - 工作台顶部仅保留产品标题和展开、关闭按钮,移除重复状态与技术标识。
10
+ - 完整任务状态保留在进度卡;约束标题收缩,避免窄屏时与按钮重叠。
11
+ - 246 项测试与 10 组深浅主题、不同视口布局回归通过。
12
+
7
13
  ## [0.8.22] - 2026-09-09
8
14
 
9
15
  - 表格预览保留可读列宽、横向滚动和固定表头,避免多列挤压成竖排。
package/README.en.md CHANGED
@@ -8,7 +8,7 @@ Related agents: [数据清洗补全](https://github.com/duhu2000/dsh-data-cleani
8
8
 
9
9
  > A data cleaning & completion agent plugin for DeepSeek Harness: local CSV/XLSX/JSON engine plus optional Qichacha (QCC) MCP enterprise-data enrichment. Initiated and maintained by the Qichacha (QCC) team.
10
10
  >
11
- > Current source version / 当前源码版本: **0.8.22** (stable release)
11
+ > Current source version / 当前源码版本: **0.8.23** (stable release)
12
12
 
13
13
  This release unifies spreadsheet previews, column mapping, and enrichment scope across the prompt wizard and workbench. Mapping statuses use color and text; mapped fields automatically enter the scope, with optional extra fields collapsed. Multiple confirmed output columns may share a non-identity field while preserving non-empty values. It fixes saved drafts resetting the scope to five defaults and detects stale Host versions. Preparing a draft does not query QCC; sending starts execution. Fully restart DSH after upgrading. Existing download artifacts are not rewritten.
14
14
 
package/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
  数据清洗补全智能体:面向 Excel/CSV/JSON 企业名单,提供数据清洗、表格清洗、清洗补全、去重、企业数据补全与字段补全,支持企查查 MCP 和结果导出。
8
8
 
9
9
  ```sh
10
- dsh plugin --profile web add dsh-data-cleaning-agent@0.8.22
10
+ dsh plugin --profile web add dsh-data-cleaning-agent@0.8.23
11
11
  ```
12
12
 
13
13
  请先满足下文的 DSH、连接器及侧边栏依赖要求;安装后完整停止并重启对应 Profile。
@@ -25,7 +25,7 @@ dsh plugin --profile web add dsh-data-cleaning-agent@0.8.22
25
25
 
26
26
  > 在 DeepSeek Harness 中清洗、补全、画像企业名单数据的智能体插件:本地 CSV/XLSX/JSON 引擎 + 可选企查查(Qichacha/QCC)MCP 企业数据补全,由企查查(Qichacha/QCC)团队发起并维护。
27
27
  >
28
- > 当前源码版本 / Current source version: **0.8.22**(正式版本)
28
+ > 当前源码版本 / Current source version: **0.8.23**(正式版本)
29
29
 
30
30
  本版上传表格后展示完整清单及空白数量,用绿色、琥珀色、红色及文字区分已通过、待确认和未匹配映射。已映射字段自动纳入补全范围,额外字段默认折叠;多个原列可经确认使用同一非主体字段,分别补空并保留非空原值。修复 Host 草稿重置为默认五字段的问题,增加前后端版本错配提示。生成说明不查询,发送才执行;升级后需完整重启 DSH,历史下载文件不自动改写。
31
31
 
package/lib/client.js CHANGED
@@ -639,6 +639,7 @@ body:has(.dcAgentPromptBackdrop) { overflow: hidden; }
639
639
 
640
640
  .dcAgentWbTitle b,
641
641
  .dcAgentWbTitle small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
642
+ .dcAgentWbTitle > div { min-width: 0; }
642
643
  .dcAgentWbTitle b { display: block; font-size: 15px; }
643
644
  .dcAgentWbTitle small { display: block; max-width: 190px; color: var(--dc-muted); font-size: 12px; }
644
645
 
@@ -4546,15 +4547,9 @@ body:has(.dcAgentPromptBackdrop) { overflow: hidden; }
4546
4547
  h('span', { className: 'dcAgentWbIcon', 'aria-hidden': 'true' }, h(DatabaseLogo, { size: 22 })),
4547
4548
  h('div', null,
4548
4549
  h('b', null, '数据清洗补全'),
4549
- h('small', null, cachedTask ? `${WORKFLOW_STATE_LABELS[cachedTask.state] || cachedTask.state} · ${cachedTask.id.slice(0, 18)}` : '正在创建 Host taskId…'),
4550
4550
  ),
4551
4551
  ),
4552
4552
  h('div', { className: 'dcAgentWbActions' },
4553
- h('span', {
4554
- className: 'dcAgentQccBadge',
4555
- title: qccRun ? `任务 ${qccRun.runId}` : '仅在当前用户确认使用自己的企查查账号后调用',
4556
- }, qccRun ? `QCC · ${qccRun.state}` : qccCapabilities ? (qccCapabilities.capabilities?.ready ? 'QCC · 工具已就绪' : 'QCC · 能力不完整') : 'QCC · 自动校验'),
4557
- h('span', { className: 'dcAgentJobsPill', 'data-state': cachedTask?.state || 'idle', title: '当前清洗任务状态' }, cachedTask ? WORKFLOW_STATE_LABELS[cachedTask.state] || cachedTask.state : '尚未开始'),
4558
4553
  h('button', {
4559
4554
  className: 'dcAgentWbClose',
4560
4555
  type: 'button',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dsh-data-cleaning-agent",
3
- "version": "0.8.22",
3
+ "version": "0.8.23",
4
4
  "description": "Data cleaning and data enrichment for CSV/XLSX/JSON enterprise lists in DeepSeek Harness, including spreadsheet cleaning, deduplication, profiling, optional Qichacha MCP and exports.",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",