dev-flow-deepseek 0.8.8 → 0.9.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 +71 -20
- package/lib/authorization.mjs +15 -1
- package/lib/index.mjs +10 -5
- package/lib/provisioning-receipt.mjs +163 -0
- package/lib/tool-names.mjs +2 -0
- package/lib/workspace-coordinator.mjs +625 -0
- package/lib/workspace-tool.mjs +118 -0
- package/package.json +4 -1
- package/runtime/darwin-arm64/dev-flow +0 -0
- package/runtime/win32-x64/dev-flow.exe +0 -0
- package/skills/dev-flow/SKILL.md +292 -113
- package/skills/dev-flow/references/method-profiles.md +22 -18
- package/skills/dev-flow/references/node-payloads.md +31 -18
|
@@ -47,33 +47,48 @@ For a file-scope blocker, `dev_flow_resolve_blocker` also requires `choice` (`al
|
|
|
47
47
|
`expand_scope`, or `reject`) and a non-empty `reason`. Omit both members for repository-recovery and
|
|
48
48
|
automatic-verification blockers.
|
|
49
49
|
|
|
50
|
+
For `task_relocation_pending`, provide the retained `relocation_id` and every
|
|
51
|
+
`relocation_destinations[{key,repository_path}]`. For `workspace_history_conflict`, provide
|
|
52
|
+
`history_resolution` with exactly `choice="accept_current_history"` and a non-empty `reason` after
|
|
53
|
+
explicit review. File-scope, relocation, and history members are mutually exclusive; use only the
|
|
54
|
+
branch selected by the current blocker and live schema.
|
|
55
|
+
|
|
50
56
|
## Node-result members
|
|
51
57
|
|
|
52
58
|
Use the live tool schema for types and nested members. These are the closed top-level members:
|
|
53
59
|
|
|
54
60
|
| Submission tool | Required `node_result` members |
|
|
55
61
|
| --- | --- |
|
|
56
|
-
| Requirements | `problem_class`, `baseline`, `unresolved_questions
|
|
57
|
-
| Design | `problem_class`, `baseline`, `findings
|
|
58
|
-
| Tasks | `problem_class`, `baseline`, `findings
|
|
59
|
-
| Implementation | `problem_class`, `completed_work_item_ids`, `
|
|
60
|
-
| Test | `problem_class`, `checks`, `failed_items`, `unverified_items`, `manual_handoff_items`, `findings`, `
|
|
61
|
-
| Comprehension | `problem_class`, `explained_components`, `unresolved_questions`, `unnecessary_abstractions`, `maintenance_risks`, `user_confirmation`, `findings
|
|
62
|
-
| Refactor | `problem_class`, `
|
|
63
|
-
| Delivery | `problem_class`, `unverified_items`, `risks`, `findings
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
`<repository-key>::<repository-relative-path>`. Contract paths use `/` separators on every Host;
|
|
68
|
-
backslashes are invalid even on Windows.
|
|
62
|
+
| Requirements | `problem_class`, `baseline`, `unresolved_questions` |
|
|
63
|
+
| Design | `problem_class`, `baseline`, `findings` |
|
|
64
|
+
| Tasks | `problem_class`, `baseline`, `findings` |
|
|
65
|
+
| Implementation | `problem_class`, `completed_work_item_ids`, `deviations`, `findings` |
|
|
66
|
+
| Test | `problem_class`, `checks`, `failed_items`, `unverified_items`, `manual_handoff_items`, `findings`, `budget_adjustment` |
|
|
67
|
+
| Comprehension | `problem_class`, `explained_components`, `unresolved_questions`, `unnecessary_abstractions`, `maintenance_risks`, `user_confirmation`, `findings` |
|
|
68
|
+
| Refactor | `problem_class`, `simplifications`, `behavior_change_intended`, `findings` |
|
|
69
|
+
| Delivery | `problem_class`, `unverified_items`, `risks`, `findings` |
|
|
70
|
+
|
|
71
|
+
The Host never submits file-effect fields. Core observes the dedicated worktree before applying an
|
|
72
|
+
Action and computes the Action delta and current Task surface from Git facts.
|
|
69
73
|
|
|
70
74
|
Delivery submissions never send `acceptance`, `automated_evidence_ids`, `manual_evidence_ids`,
|
|
71
75
|
`test_record_id`, or `comprehension_record_id`. Core derives those authority members from the current
|
|
72
76
|
Requirements, Test, Comprehension, and Evidence records before canonical validation and Recovery
|
|
73
77
|
retention. A submission containing any of those members violates the closed contract.
|
|
74
78
|
|
|
75
|
-
|
|
76
|
-
`
|
|
79
|
+
The Tasks baseline contains `work_items` plus `verification_plan`. The plan contains `checks[]` with
|
|
80
|
+
`name` and `rationale`, `initial_budget`, `full_suite_expected`, and
|
|
81
|
+
`test_code_changes_expected`. Core fills only `design_revision`.
|
|
82
|
+
|
|
83
|
+
Every Test submission includes `budget_adjustment`. Normal pass/failure transitions send `null`.
|
|
84
|
+
`verification_budget_increased` sends a closed adjustment with `basis`, `additional_checks`,
|
|
85
|
+
`additional_automatic_commands`, `allow_full_suite`, and `allow_manual_handoff`; all check and result
|
|
86
|
+
lists stay empty and the transition reason gives the concrete need. Every check includes
|
|
87
|
+
`full_suite_reason`: it is empty unless `full_suite=true`, in which case it records the current
|
|
88
|
+
suite-specific risk.
|
|
89
|
+
|
|
90
|
+
Completed developer-run verification is a `source="user"` check with `command_count=0`,
|
|
91
|
+
`full_suite=false`, and `full_suite_reason=""`. Put only work nobody has run yet in `manual_handoff_items`.
|
|
77
92
|
|
|
78
93
|
## Requirements example
|
|
79
94
|
|
|
@@ -104,9 +119,7 @@ Completed developer-run verification is a `source="user"` check with `command_co
|
|
|
104
119
|
"constraints": [],
|
|
105
120
|
"assumptions": []
|
|
106
121
|
},
|
|
107
|
-
"unresolved_questions": []
|
|
108
|
-
"changed_paths": [],
|
|
109
|
-
"no_file_changes": true
|
|
122
|
+
"unresolved_questions": []
|
|
110
123
|
}
|
|
111
124
|
}
|
|
112
125
|
```
|