dev-flow-deepseek 0.7.3 → 0.7.5
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,27 +11,28 @@ macOS arm64 Core executable。
|
|
|
11
11
|
|
|
12
12
|
| 项目 | 当前支持 |
|
|
13
13
|
| --- | --- |
|
|
14
|
-
| Package | `dev-flow-deepseek@0.7.
|
|
15
|
-
| Bundled Core | `0.6.
|
|
14
|
+
| Package | `dev-flow-deepseek@0.7.5` |
|
|
15
|
+
| Bundled Core | `0.6.4` |
|
|
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.5](https://github.com/Innocent-children/dev-flow/releases/tag/deepseek-v0.7.5) |
|
|
20
20
|
|
|
21
|
-
`0.7.
|
|
21
|
+
`0.7.5` 的 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
|
-
DSH 是前置 Host
|
|
27
|
+
DSH 是前置 Host。使用 `dev-flow` 时只需指定真实 Profile,默认使用 `web`:
|
|
28
28
|
|
|
29
29
|
```bash
|
|
30
|
-
|
|
30
|
+
npm install -g @imotong/dev-flow@latest
|
|
31
|
+
dev-flow
|
|
31
32
|
```
|
|
32
33
|
|
|
33
|
-
|
|
34
|
-
|
|
34
|
+
诊断恢复时仍可使用以下 Host 原生命令;需要其他 Profile 时修改 `PROFILE` 的值,不要把
|
|
35
|
+
`<profile>` 原样输入 shell:
|
|
35
36
|
|
|
36
37
|
```bash
|
|
37
38
|
npm install -g @deepseek-ai/dsh@latest
|
package/package.json
CHANGED
|
Binary file
|
package/skills/dev-flow/SKILL.md
CHANGED
|
@@ -180,6 +180,10 @@ For an active task, perform each iteration in this order:
|
|
|
180
180
|
instructions, verification budget, and current user authority.
|
|
181
181
|
7. Select only a Core-returned transition and build the closed input of
|
|
182
182
|
`fresh_action.submission_tool` from the actual typed node facts.
|
|
183
|
+
`changed_paths` contains only repository paths newly changed while performing this current Action,
|
|
184
|
+
relative to its issuance binding. Do not repeat paths changed by an earlier node. When the current
|
|
185
|
+
Action only reads files or runs verification commands, submit `changed_paths=[]` and
|
|
186
|
+
`no_file_changes=true`, even when the Task's implementation already has uncommitted paths.
|
|
183
187
|
8. Submit exactly one call to that qualified tool with `host`, `task_id`, `action_id`, the selected
|
|
184
188
|
transition, result text, artifact slots, method results and the exact node result. Core fills and
|
|
185
189
|
retains the complete Action identity and payload envelope.
|
|
@@ -79,7 +79,7 @@ only when actually visible and appropriate to the current authorized artifacts.
|
|
|
79
79
|
| `implementation.record_surface` | Record exact changed paths or the no-change state and deviations. | Observe and record the exact changed surface. | Direct implementation result; no mandatory capability. | Direct apply result; no mandatory capability. | Changed paths or explicit no-change result. |
|
|
80
80
|
| `implementation.classify_deviations` | Classify deviations as requirement, design, or complexity concerns. | Record the exact concern and route it through Core facts. | Direct classification; amend active artifacts before continuing when semantics change. | Direct classification and current change-artifact update. | Exact deviations and findings. |
|
|
81
81
|
| `test.run_budgeted_checks` | Run only verification authorized by the current verification budget. | Run the current bounded verification steps. | Direct plan-defined checks; no mandatory Spec Kit capability. | Use `openspec-verify` only when visible; otherwise run plan-defined checks. | Actual current verification result. |
|
|
82
|
-
| `test.record_evidence` | Record actual evidence sources, outcomes, and unverified or manual items. | Record actual sources and statuses without relabeling. | Direct evidence recording; no mandatory capability. | Direct evidence recording; no mandatory capability. | Current bounded evidence summary. |
|
|
82
|
+
| `test.record_evidence` | Record actual evidence sources, outcomes, and unverified or manual items. | Record actual sources and statuses without relabeling; report only file changes newly produced by this TEST Action. Verification-only work uses `changed_paths=[]` and `no_file_changes=true`. | Direct evidence recording; no mandatory capability. | Direct evidence recording; no mandatory capability. | Current bounded evidence summary. |
|
|
83
83
|
| `test.classify_failure` | Classify failures as implementation, design, or requirement problems. | Classify current failures from observed facts. | Direct classification; no mandatory capability. | Direct classification; no mandatory capability. | Exact failure class and findings. |
|
|
84
84
|
| `comprehension.explain` | Explain current behavior, design, and code paths in developer-readable terms. | Present a bounded explanation to the developer. | Direct review; no Spec Kit command owns the verdict. | Direct review; no OpenSpec command owns the verdict. | Developer-readable explanation. |
|
|
85
85
|
| `comprehension.identify_complexity` | Identify unnecessary abstractions and maintenance risks. | List concrete complexity and maintenance concerns. | Direct review; no mandatory capability. | Direct review; no mandatory capability. | Exact abstraction and risk findings. |
|