dev-flow-deepseek 0.6.0 → 0.7.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/README.md
CHANGED
|
@@ -11,14 +11,14 @@ macOS arm64 Core executable。
|
|
|
11
11
|
|
|
12
12
|
| 项目 | 当前支持 |
|
|
13
13
|
| --- | --- |
|
|
14
|
-
| Package | `dev-flow-deepseek@0.
|
|
15
|
-
| Bundled Core | `0.
|
|
14
|
+
| Package | `dev-flow-deepseek@0.7.0` |
|
|
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.
|
|
19
|
+
| Release | [deepseek-v0.7.0](https://github.com/Innocent-children/dev-flow/releases/tag/deepseek-v0.7.0) |
|
|
20
20
|
|
|
21
|
-
`0.
|
|
21
|
+
`0.7.0` 的 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
|
|
|
@@ -130,7 +130,7 @@ DeepSeek Adapter 暴露与 Codex 相同的六工具 Core catalog;在 DSH 中
|
|
|
130
130
|
| `dev_flow_open_task` | 为 Workspace Root 内显式声明的主/附加仓库创建一个 Task,或从任一参与仓库恢复同一 Task。 |
|
|
131
131
|
| `dev_flow_get_task` | 读取持久化 Task;可附带 operation probe 获取 Recovery assessment。 |
|
|
132
132
|
| `dev_flow_get_next_action` | 读取当前节点的权威 Action、验证预算、method steps 和全部合法 transition。 |
|
|
133
|
-
| `dev_flow_apply_action` | 使用当前 revision、Action identity、repository binding 和 closed payload 应用一次 Core 声明的 transition
|
|
133
|
+
| `dev_flow_apply_action` | 使用当前 revision、Action identity、repository binding 和 closed payload 应用一次 Core 声明的 transition;允许写入的 node result 提交精确 `changed_paths` 或 `no_file_changes`,artifact references 只作为证据。 |
|
|
134
134
|
| `dev_flow_cancel_task` | 使用当前 revision 和明确 reason 取消一个非终态 Task。 |
|
|
135
135
|
|
|
136
136
|
## 数据与恢复
|
package/package.json
CHANGED
|
Binary file
|
|
@@ -21,12 +21,14 @@ Before every ordinary apply:
|
|
|
21
21
|
artifact exists, submit `"artifacts": []`.
|
|
22
22
|
5. Allowed ArtifactReference roles are only `requirements`, `design`, `task_plan`,
|
|
23
23
|
`implementation`, `test`, `comprehension`, `refactor`, `delivery`, and `other_process`.
|
|
24
|
-
For every ArtifactReference path, work-item `expected_paths`,
|
|
25
|
-
|
|
24
|
+
For every ArtifactReference path, work-item `expected_paths`, and node-result `changed_paths`, use
|
|
25
|
+
an ordinary repository-relative path for a single-repository Task
|
|
26
26
|
and `<repository-key>::<repository-relative-path>` for a multi-repository Task. The key must
|
|
27
27
|
already belong to the immutable Core Scope. Do not add a payload field or a second digest.
|
|
28
|
-
6. Preserve the complete `node_result` branch wrapper.
|
|
29
|
-
|
|
28
|
+
6. Preserve the complete `node_result` branch wrapper. Every standard node result reports exact
|
|
29
|
+
`changed_paths` or `no_file_changes`; exactly one of a nonempty path list or
|
|
30
|
+
`no_file_changes=true` describes the current effect. Artifact references remain evidence and do
|
|
31
|
+
not replace this mutation envelope. Never flatten baseline fields or encode an array as prose.
|
|
30
32
|
7. Submit exactly one MethodEvidence item for every current Action method step, in Action order.
|
|
31
33
|
For completed `plain` work use `"status": "plain_fallback"` and `"capability": ""`.
|
|
32
34
|
8. Replace every value beginning `placeholder-` and every exemplar revision/ID with the current
|
|
@@ -59,7 +61,9 @@ Before every ordinary apply:
|
|
|
59
61
|
"constraints": ["placeholder-constraint"],
|
|
60
62
|
"assumptions": []
|
|
61
63
|
},
|
|
62
|
-
"unresolved_questions": []
|
|
64
|
+
"unresolved_questions": [],
|
|
65
|
+
"changed_paths": ["specs/placeholder-feature/spec.md"],
|
|
66
|
+
"no_file_changes": false
|
|
63
67
|
}
|
|
64
68
|
}
|
|
65
69
|
```
|
|
@@ -93,7 +97,9 @@ closed `baseline` object.
|
|
|
93
97
|
"complexity_justification": [],
|
|
94
98
|
"risks": []
|
|
95
99
|
},
|
|
96
|
-
"findings": []
|
|
100
|
+
"findings": [],
|
|
101
|
+
"changed_paths": ["specs/placeholder-feature/plan.md"],
|
|
102
|
+
"no_file_changes": false
|
|
97
103
|
}
|
|
98
104
|
}
|
|
99
105
|
```
|
|
@@ -129,7 +135,9 @@ Use the current requirements revision. The field `complexity` is forbidden; the
|
|
|
129
135
|
}
|
|
130
136
|
]
|
|
131
137
|
},
|
|
132
|
-
"findings": []
|
|
138
|
+
"findings": [],
|
|
139
|
+
"changed_paths": ["specs/placeholder-feature/tasks.md"],
|
|
140
|
+
"no_file_changes": false
|
|
133
141
|
}
|
|
134
142
|
}
|
|
135
143
|
```
|
|
@@ -183,7 +191,9 @@ implementation result.
|
|
|
183
191
|
"failed_items": [],
|
|
184
192
|
"unverified_items": [],
|
|
185
193
|
"manual_handoff_items": [],
|
|
186
|
-
"findings": []
|
|
194
|
+
"findings": [],
|
|
195
|
+
"changed_paths": [],
|
|
196
|
+
"no_file_changes": true
|
|
187
197
|
}
|
|
188
198
|
}
|
|
189
199
|
```
|
|
@@ -208,7 +218,9 @@ implementation result.
|
|
|
208
218
|
"unnecessary_abstractions": ["placeholder-unnecessary-abstraction"],
|
|
209
219
|
"maintenance_risks": [],
|
|
210
220
|
"user_confirmation": null,
|
|
211
|
-
"findings": ["placeholder-matching-complexity-fact"]
|
|
221
|
+
"findings": ["placeholder-matching-complexity-fact"],
|
|
222
|
+
"changed_paths": [],
|
|
223
|
+
"no_file_changes": true
|
|
212
224
|
}
|
|
213
225
|
}
|
|
214
226
|
```
|
|
@@ -233,7 +245,9 @@ implementation result.
|
|
|
233
245
|
"unnecessary_abstractions": [],
|
|
234
246
|
"maintenance_risks": [],
|
|
235
247
|
"user_confirmation": {"source": "user", "status": "passed", "summary": "placeholder-explicit-user-verdict-summary"},
|
|
236
|
-
"findings": []
|
|
248
|
+
"findings": [],
|
|
249
|
+
"changed_paths": [],
|
|
250
|
+
"no_file_changes": true
|
|
237
251
|
}
|
|
238
252
|
}
|
|
239
253
|
```
|
|
@@ -286,7 +300,9 @@ No AI or method capability may create the passing user confirmation.
|
|
|
286
300
|
"comprehension_record_id": "placeholder-current-comprehension-record-id",
|
|
287
301
|
"unverified_items": [],
|
|
288
302
|
"risks": [],
|
|
289
|
-
"findings": []
|
|
303
|
+
"findings": [],
|
|
304
|
+
"changed_paths": [],
|
|
305
|
+
"no_file_changes": true
|
|
290
306
|
}
|
|
291
307
|
}
|
|
292
308
|
```
|