dsh-tender-workbench 0.4.4 → 0.5.0
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 +23 -0
- package/README.en.md +7 -7
- package/README.md +6 -6
- package/docs/RELEASE-0.5.0.md +25 -0
- package/lib/client.js +6545 -6089
- package/lib/client.js.map +1 -1
- package/lib/types/client/TenderEntry.d.ts +9 -9
- package/lib/types/client/TenderEntry.d.ts.map +1 -1
- package/lib/types/client/TenderPrompt.d.ts +18 -0
- package/lib/types/client/TenderPrompt.d.ts.map +1 -0
- package/lib/types/client/index.d.ts.map +1 -1
- package/lib/types/client/ordinary-session-guard.d.ts +7 -0
- package/lib/types/client/ordinary-session-guard.d.ts.map +1 -0
- package/lib/types/client/tender-hero-bridge.d.ts +9 -0
- package/lib/types/client/tender-hero-bridge.d.ts.map +1 -0
- package/lib/types/client/tender-prompt.d.ts +20 -0
- package/lib/types/client/tender-prompt.d.ts.map +1 -0
- package/lib/types/client/workbench/TenderWorkbench.d.ts +5 -1
- package/lib/types/client/workbench/TenderWorkbench.d.ts.map +1 -1
- package/package.json +3 -2
- package/docs/RELEASE-0.4.4.md +0 -53
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,29 @@ All notable changes to `dsh-tender-workbench` are documented in this file.
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [0.5.0] - 2026-09-06
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- 对齐 DSH-UX-001 v1.1.0:保留目标图标和「招投标」菜单,企查查蓝首页标题「招投标智能体」,移除本业务首页预览标识。
|
|
12
|
+
- 输入框外下方四个快捷导航,只切换工作台视图,不执行查询。
|
|
13
|
+
- 居中提示词向导:查询范围、关键词、时间、地区及业务目标;只回填可编辑描述,不自动发送。已有输入支持追加/替换/取消,完整旧生成段可更新,不重复堆叠。
|
|
14
|
+
- 浅深色品牌、操作、状态、表头及焦点令牌;桌面和窄屏布局、弹窗固定头尾、Tab 焦点循环、Escape 和 IME 保护。
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- 撤销 root/single Hero 品牌槽位注册;通过本会话可恢复桥接插入品牌行,普通会话和其他插件不被染色。菜单在工作区之前插入,不抢首位。
|
|
19
|
+
- 工作台沿用真实查询、筛选、复核和交付能力,明确会话标识;保留 0.4.5 的会话隔离修复,不改变 Host、数据与制品契约。
|
|
20
|
+
- 新增提示词与品牌隔离回归,以及隔离 React/Chromium 浅深色 × 四尺寸 UI 验证脚本。
|
|
21
|
+
|
|
22
|
+
## [0.4.5] - 2026-09-06
|
|
23
|
+
|
|
24
|
+
### Fixed
|
|
25
|
+
|
|
26
|
+
- 普通新会话跳过旧版本仍附属工作区的招投标、访前尽调和数据清洗业务空白会话,恢复原生首页与收起的业务侧栏。
|
|
27
|
+
- 兼容保护保留历史会话和草稿,复用普通空白会话,合并并发创建,并支持卸载恢复原方法。
|
|
28
|
+
- 新增六项回归测试;三个插件连续切换经本机页面和用户复测通过。
|
|
29
|
+
|
|
7
30
|
## [0.4.4] - 2026-09-06
|
|
8
31
|
|
|
9
32
|
### Fixed
|
package/README.en.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
`dsh-tender-workbench` is an open-source DeepSeek Harness plugin for finding, screening, reviewing, and delivering tender opportunities. It combines authorized `qcc-tender` data, deterministic screening rules, bounded Agent analysis, explicit human decisions, and immutable Excel/PDF reports in one Session-scoped Better Sidebar workbench.
|
|
6
6
|
|
|
7
|
-
Current stable version: **0.
|
|
7
|
+
Current stable version: **0.5.0** (stable release).
|
|
8
8
|
|
|
9
9
|
## What it does
|
|
10
10
|
|
|
@@ -67,12 +67,12 @@ dsh plugin --profile web add dsh-tender-workbench
|
|
|
67
67
|
dsh web --no-open
|
|
68
68
|
```
|
|
69
69
|
|
|
70
|
-
To install the exact 0.
|
|
70
|
+
To install the exact 0.5.0 release:
|
|
71
71
|
|
|
72
72
|
```sh
|
|
73
73
|
dsh plugin --profile web add 'dsh-mcp-connector@>=0.2.31'
|
|
74
74
|
dsh plugin --profile web add 'dsh-better-sidebar@>=0.17.1'
|
|
75
|
-
dsh plugin --profile web add dsh-tender-workbench@0.
|
|
75
|
+
dsh plugin --profile web add dsh-tender-workbench@0.5.0
|
|
76
76
|
```
|
|
77
77
|
|
|
78
78
|
To install from an independent checkout, install the required Provider plugins first, then run from this repository:
|
|
@@ -91,7 +91,7 @@ To install a packed build:
|
|
|
91
91
|
```sh
|
|
92
92
|
dsh plugin --profile web add 'dsh-mcp-connector@>=0.2.31'
|
|
93
93
|
dsh plugin --profile web add 'dsh-better-sidebar@>=0.17.1'
|
|
94
|
-
dsh plugin --profile web add ./dsh-tender-workbench-0.
|
|
94
|
+
dsh plugin --profile web add ./dsh-tender-workbench-0.5.0.tgz
|
|
95
95
|
dsh web --no-open
|
|
96
96
|
```
|
|
97
97
|
|
|
@@ -108,11 +108,11 @@ dsh plugin --profile web remove dsh-tender-workbench
|
|
|
108
108
|
Upgrade an existing installation by installing the stable version and fully restarting the Web profile:
|
|
109
109
|
|
|
110
110
|
```sh
|
|
111
|
-
dsh plugin --profile web add dsh-tender-workbench@0.
|
|
111
|
+
dsh plugin --profile web add dsh-tender-workbench@0.5.0
|
|
112
112
|
dsh web --no-open
|
|
113
113
|
```
|
|
114
114
|
|
|
115
|
-
Version 0.
|
|
115
|
+
Version 0.5.0 introduces scoped QCC-blue branding, light/dark business surfaces, a simplified hero, below-composer navigation, and an editable prompt wizard. Filling never sends automatically. Manual input requires an append/replace/cancel choice. The 0.4.5 ordinary-session isolation, workflow and Artifact schemas remain unchanged. Wizard drafts live only in the current Client lifetime. To roll back this UI upgrade, reinstall `dsh-tender-workbench@0.4.5` and restart the profile. Published versions and tags remain immutable.
|
|
116
116
|
|
|
117
117
|
## Using the workbench
|
|
118
118
|
|
|
@@ -137,7 +137,7 @@ The build emits the Host loader at `lib/index.js`, the Client bundle at `lib/cli
|
|
|
137
137
|
|
|
138
138
|
The province, city, and district source snapshot is maintained in [resources/area.ts](resources/area.ts).
|
|
139
139
|
|
|
140
|
-
See [CHANGELOG.md](CHANGELOG.md) and [the 0.
|
|
140
|
+
See [CHANGELOG.md](CHANGELOG.md) and [the 0.5.0 release checklist](docs/RELEASE-0.5.0.md) for the stable-release scope and operational checks.
|
|
141
141
|
|
|
142
142
|
## Current scope
|
|
143
143
|
|
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
> 面向国内招投标团队的 DeepSeek Harness 开源智能体插件:在一个会话级工作台内完成标讯与拟建项目查询、确定性规则初筛、限定范围智能分析、人工复核,以及 Excel/PDF 报告交付。
|
|
6
6
|
>
|
|
7
|
-
> 当前稳定版本:**0.
|
|
7
|
+
> 当前稳定版本:**0.5.0**(正式版本)
|
|
8
8
|
|
|
9
9
|
[](https://github.com/duhu2000/dsh-tender-workbench/actions/workflows/ci.yml)
|
|
10
10
|
[](https://www.npmjs.com/package/dsh-tender-workbench)
|
|
@@ -49,10 +49,10 @@ dsh web --no-open
|
|
|
49
49
|
|
|
50
50
|
安装或移除插件后,请完整重启 Web Profile。插件通过 `dsh.bundle.patch` 启用 `cordis.patch.yml`,并注册 `dsh-tender-workbench` Loader。
|
|
51
51
|
|
|
52
|
-
安装指定的 `0.
|
|
52
|
+
安装指定的 `0.5.0` 版本:
|
|
53
53
|
|
|
54
54
|
```sh
|
|
55
|
-
dsh plugin --profile web add dsh-tender-workbench@0.
|
|
55
|
+
dsh plugin --profile web add dsh-tender-workbench@0.5.0
|
|
56
56
|
```
|
|
57
57
|
|
|
58
58
|
移除插件:
|
|
@@ -98,11 +98,11 @@ dsh plugin --profile web remove dsh-tender-workbench
|
|
|
98
98
|
从已有版本升级:
|
|
99
99
|
|
|
100
100
|
```sh
|
|
101
|
-
dsh plugin --profile web add dsh-tender-workbench@0.
|
|
101
|
+
dsh plugin --profile web add dsh-tender-workbench@0.5.0
|
|
102
102
|
dsh web --no-open
|
|
103
103
|
```
|
|
104
104
|
|
|
105
|
-
|
|
105
|
+
本次 0.5.0 对齐企查查蓝交互规范:菜单保留「招投标」与原有图标,首页改为「招投标智能体」,新增下方快捷导航和只回填、不自动发送的提示词向导;支持浅深色与窄屏。已有输入提供追加、替换或取消,关闭保留本会话向导草稿。继续保留 0.4.5 的普通新会话隔离保护;公共业务工作流、历史数据和 Artifact Schema 不变。如遇 UI 回归,可安装 `dsh-tender-workbench@0.4.5` 并重启 Profile。npm 版本与公开 Git 标签保持不可变。
|
|
106
106
|
|
|
107
107
|
## 本地开发
|
|
108
108
|
|
|
@@ -117,7 +117,7 @@ corepack pnpm@11.7.0 run check
|
|
|
117
117
|
|
|
118
118
|
`check` 会执行类型检查、完整 Vitest 测试、生产构建、README/发布状态校验以及 npm tarball 白名单预检。配置 npm Trusted Publishing 后,[发布工作流](.github/workflows/release.yml)可使用 OIDC 和 provenance;手工发布不得声称 provenance。
|
|
119
119
|
|
|
120
|
-
省、市、区数据源快照维护在 [resources/area.ts](resources/area.ts)。版本变更见 [CHANGELOG.md](CHANGELOG.md),发布检查见 [0.
|
|
120
|
+
省、市、区数据源快照维护在 [resources/area.ts](resources/area.ts)。版本变更见 [CHANGELOG.md](CHANGELOG.md),发布检查见 [0.5.0 发布清单](docs/RELEASE-0.5.0.md)。
|
|
121
121
|
|
|
122
122
|
## 当前范围
|
|
123
123
|
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# dsh-tender-workbench 0.5.0 发布清单
|
|
2
|
+
|
|
3
|
+
- Version: **0.5.0**
|
|
4
|
+
- Status: **release candidate**
|
|
5
|
+
- 日期:2026-09-06
|
|
6
|
+
- 标签:`v0.5.0`
|
|
7
|
+
- npm:`dsh-tender-workbench@0.5.0`,目标 dist-tag 为 `latest`
|
|
8
|
+
|
|
9
|
+
## 范围
|
|
10
|
+
|
|
11
|
+
企查查蓝 UI 升级:保留图标与菜单「招投标」,首页「招投标智能体」;新增快捷导航和只回填提示词向导。业务区域浅深色与窄屏适配,普通会话保持原生品牌。保留 0.4.5 会话隔离保护,Host 工作流和 Artifact Schema 不变。
|
|
12
|
+
|
|
13
|
+
## 发布门禁
|
|
14
|
+
|
|
15
|
+
执行 npm run check(typecheck、tests、build、文档版本、发布状态与打包白名单);隔离 React/Chromium 浅深色 × 4 尺寸回归通过后提交并 push main,确认 CI,再创建不可变 annotated tag v0.5.0。release.yml 通过 GitHub OIDC 发布 npm,随后核对 npm latest/gitHead/provenance 和 GitHub Release。
|
|
16
|
+
|
|
17
|
+
## 验收边界
|
|
18
|
+
|
|
19
|
+
本地门禁通过:42 个测试文件 / 219 项通过 / 1 项既有跳过,构建和 178 文件打包白名单通过;独立 Chromium 浅深色 × 4 尺寸共 8 组通过。
|
|
20
|
+
|
|
21
|
+
本轮 UI 浏览器测试采用真实组件和隔离宿主 DOM,不是已安装 DSH 的运行验收,不调用真实 QCC、不修改或重启用户 DSH。目标宿主已检查 rc.2 对应源码;其它版本需重新验证。共享规范的业务适配范围及例外见仓库 docs/QCC-BLUE-UI-ACCEPTANCE.md。
|
|
22
|
+
|
|
23
|
+
## 回退
|
|
24
|
+
|
|
25
|
+
安装 dsh-tender-workbench@0.4.5 并重启 Profile;保留历史任务与制品,无数据迁移。不得覆盖 npm 已发布版本或移动公开 tag。
|