dev-flow-deepseek 0.7.9 → 0.8.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
|
@@ -148,6 +148,10 @@ DeepSeek Adapter 暴露与 Codex 相同的十五工具 Core catalog;在 DSH
|
|
|
148
148
|
| `dev_flow_recover_action` | 使用 Core 保存的规范化提交恢复不确定 Action,不重新发送 payload。 |
|
|
149
149
|
| `dev_flow_cancel_task` | 使用当前 revision 和明确 reason 取消一个非终态 Task。 |
|
|
150
150
|
|
|
151
|
+
`dev_flow_submit_delivery` 只接收 Host 负责的交付判断、未验证项、风险、发现和 mutation envelope。
|
|
152
|
+
acceptance、自动/人工 evidence ID 以及 Test/Comprehension record ID 由 Core 从当前 Task 补齐;提交
|
|
153
|
+
这些字段会按 `unknown_member` 拒绝。
|
|
154
|
+
|
|
151
155
|
## 数据与恢复
|
|
152
156
|
|
|
153
157
|
Task data 位于 Dev Flow 的本地数据目录,不属于 DSH plugin 配置。移除、卸载或重新安装 package
|
package/package.json
CHANGED
|
Binary file
|
package/skills/dev-flow/SKILL.md
CHANGED
|
@@ -250,10 +250,11 @@ Before submitting, perform this order:
|
|
|
250
250
|
1. Rebind `fresh_action` and read `submission_tool`, `action_id`, `method_steps`, and all
|
|
251
251
|
`available_transitions`.
|
|
252
252
|
2. Read the live schema of that exact qualified submission tool. Do not choose another submit tool.
|
|
253
|
-
3. Open the matching node-result template and fill only current facts. Use current
|
|
254
|
-
|
|
255
|
-
or `task_plan_revision
|
|
256
|
-
|
|
253
|
+
3. Open the matching node-result template and fill only Host-owned current facts. Use current
|
|
254
|
+
work-item IDs where the live contract requests them. Do not copy `requirements_revision`,
|
|
255
|
+
`design_revision`, or `task_plan_revision`; do not send Delivery acceptance, evidence IDs, or
|
|
256
|
+
Test/Comprehension record IDs. Core fills those system-state and Delivery authority members from
|
|
257
|
+
the current Task snapshot after verifying the current Action.
|
|
257
258
|
4. Set `host="deepseek"`, copy only `task_id` and `action_id`, and select one returned
|
|
258
259
|
`transition_id`.
|
|
259
260
|
5. Provide `summary`, the transition's required or empty `reason`, and the exact `node_result`.
|
|
@@ -57,12 +57,17 @@ Use the live tool schema for types and nested members. These are the closed top-
|
|
|
57
57
|
| Test | `problem_class`, `checks`, `failed_items`, `unverified_items`, `manual_handoff_items`, `findings`, `changed_paths`, `no_file_changes` |
|
|
58
58
|
| Comprehension | `problem_class`, `explained_components`, `unresolved_questions`, `unnecessary_abstractions`, `maintenance_risks`, `user_confirmation`, `findings`, `changed_paths`, `no_file_changes` |
|
|
59
59
|
| Refactor | `problem_class`, `changed_paths`, `no_file_changes`, `simplifications`, `behavior_change_intended`, `findings` |
|
|
60
|
-
| Delivery | `problem_class`, `
|
|
60
|
+
| Delivery | `problem_class`, `unverified_items`, `risks`, `findings`, `changed_paths`, `no_file_changes` |
|
|
61
61
|
|
|
62
62
|
`changed_paths` and `no_file_changes` remain mutually exclusive. A single-repository Task uses
|
|
63
63
|
repository-relative paths. A multi-repository Task uses
|
|
64
64
|
`<repository-key>::<repository-relative-path>`.
|
|
65
65
|
|
|
66
|
+
Delivery submissions never send `acceptance`, `automated_evidence_ids`, `manual_evidence_ids`,
|
|
67
|
+
`test_record_id`, or `comprehension_record_id`. Core derives those authority members from the current
|
|
68
|
+
Requirements, Test, Comprehension, and Evidence records before canonical validation and Recovery
|
|
69
|
+
retention. A submission containing any of those members violates the closed contract.
|
|
70
|
+
|
|
66
71
|
Completed developer-run verification is a `source="user"` check with `command_count=0` and
|
|
67
72
|
`full_suite=false`. Put only work nobody has run yet in `manual_handoff_items`.
|
|
68
73
|
|