dev-flow-deepseek 0.7.0 → 0.7.1
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/README.md
CHANGED
|
@@ -11,21 +11,27 @@ macOS arm64 Core executable。
|
|
|
11
11
|
|
|
12
12
|
| 项目 | 当前支持 |
|
|
13
13
|
| --- | --- |
|
|
14
|
-
| Package | `dev-flow-deepseek@0.7.
|
|
14
|
+
| Package | `dev-flow-deepseek@0.7.1` |
|
|
15
15
|
| Bundled Core | `0.6.0` |
|
|
16
16
|
| Platform | macOS arm64 |
|
|
17
17
|
| Node.js | `>=24` |
|
|
18
18
|
| DSH | `>=0.1.0-rc.6` |
|
|
19
|
-
| Release | [deepseek-v0.7.
|
|
19
|
+
| Release | [deepseek-v0.7.1](https://github.com/Innocent-children/dev-flow/releases/tag/deepseek-v0.7.1) |
|
|
20
20
|
|
|
21
|
-
`0.7.
|
|
21
|
+
`0.7.1` 的 normal release 已通过 registry package 安装、显式触发、Core handshake、
|
|
22
22
|
restart/resume、`DONE`、remove、uninstall、retained reopen 和 repository-unchanged 门禁。上表
|
|
23
23
|
记录已验证的精确公开版本;下面的安装命令使用 npm `latest` dist-tag 获取当前最新稳定 package。
|
|
24
24
|
|
|
25
25
|
## 安装与验证
|
|
26
26
|
|
|
27
|
-
|
|
28
|
-
|
|
27
|
+
DSH 是前置 Host。`create-dev-flow` 独立发布后,用户只需指定真实 Profile,默认使用 `web`:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
npx create-dev-flow@latest
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
当前公开稳定制品尚未包含该新 manager package。发布前或诊断恢复时继续使用以下 Host 原生命令;
|
|
34
|
+
需要其他 Profile 时修改 `PROFILE` 的值,不要把 `<profile>` 原样输入 shell:
|
|
29
35
|
|
|
30
36
|
```bash
|
|
31
37
|
npm install -g @deepseek-ai/dsh@latest
|
|
@@ -55,7 +61,7 @@ process、Skill、guard 和 MCP child 合成到指定 profile。安装后按照
|
|
|
55
61
|
| `dsh --profile "$PROFILE" --dump-config` | 输出 profile 的有效配置,用于检查 `dev-flow-deepseek` bundle contribution 是否存在;不会修改 Dev Flow Task。 |
|
|
56
62
|
| `dsh plugin --profile "$PROFILE" remove dev-flow-deepseek` | 从指定 profile 移除 package 与 bundle contribution;保留 Task data、目标 Git 仓库和 Codex-owned state。 |
|
|
57
63
|
|
|
58
|
-
|
|
64
|
+
统一生命周期入口负责升级、修复、重装、卸载和清空后重装。Host 原生更新或重新安装仍按以下顺序:
|
|
59
65
|
|
|
60
66
|
```bash
|
|
61
67
|
PROFILE=web
|
package/package.json
CHANGED
|
Binary file
|
|
@@ -186,7 +186,8 @@ implementation result.
|
|
|
186
186
|
"node_result": {
|
|
187
187
|
"problem_class": "none",
|
|
188
188
|
"checks": [
|
|
189
|
-
{"source": "automated", "name": "placeholder-check-name", "status": "passed", "summary": "placeholder-check-result", "command_count": 1, "full_suite": false}
|
|
189
|
+
{"source": "automated", "name": "placeholder-check-name", "status": "passed", "summary": "placeholder-check-result", "command_count": 1, "full_suite": false},
|
|
190
|
+
{"source": "user", "name": "placeholder-developer-check", "status": "passed", "summary": "placeholder-developer-result", "command_count": 0, "full_suite": false}
|
|
190
191
|
],
|
|
191
192
|
"failed_items": [],
|
|
192
193
|
"unverified_items": [],
|
|
@@ -199,6 +200,11 @@ implementation result.
|
|
|
199
200
|
```
|
|
200
201
|
<!-- node-payload-template:test:end -->
|
|
201
202
|
|
|
203
|
+
Completed developer-run verification is a `source="user"` check with `command_count=0` and
|
|
204
|
+
`full_suite=false`; the human command is described in `summary` and never charged to the automatic budget.
|
|
205
|
+
`manual_handoff_items` contains only bounded checks still awaiting user execution. Once the developer reports a
|
|
206
|
+
completed result, record the user check and remove that item from `manual_handoff_items`.
|
|
207
|
+
|
|
202
208
|
<!-- node-payload-template:comprehension-complexity:start -->
|
|
203
209
|
```json
|
|
204
210
|
{
|