dev-flow-codex 0.1.0 → 0.3.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/package.json
CHANGED
|
@@ -73,6 +73,28 @@ worktree.
|
|
|
73
73
|
`acceptance_criteria`, and `verification_budget`, with no additional members. Forward
|
|
74
74
|
`verification_budget` with exactly `level`, `max_automatic_commands`, `allow_full_suite`, and
|
|
75
75
|
`allow_manual_handoff`; do not invent aliases for any of these Core-declared fields.
|
|
76
|
+
- `goal` is a JSON string. `scope`, `out_of_scope`, and `acceptance_criteria` are JSON arrays of strings;
|
|
77
|
+
never collapse an array into one prose string. `verification_budget.level` is exactly `minimal`,
|
|
78
|
+
`targeted`, or `full`; do not translate phrases such as "focused verification" into a new enum.
|
|
79
|
+
- Use this exact `new_task` JSON shape, replacing only the values derived from the admitted request:
|
|
80
|
+
|
|
81
|
+
<!-- new-task-example:start -->
|
|
82
|
+
```json
|
|
83
|
+
{
|
|
84
|
+
"goal": "Return the requested field from the bounded endpoint.",
|
|
85
|
+
"scope": ["Update the endpoint response"],
|
|
86
|
+
"out_of_scope": ["Change unrelated endpoints"],
|
|
87
|
+
"acceptance_criteria": ["The response contains the requested field"],
|
|
88
|
+
"verification_budget": {
|
|
89
|
+
"level": "targeted",
|
|
90
|
+
"max_automatic_commands": 4,
|
|
91
|
+
"allow_full_suite": false,
|
|
92
|
+
"allow_manual_handoff": true
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
```
|
|
96
|
+
<!-- new-task-example:end -->
|
|
97
|
+
|
|
76
98
|
- Ask before opening a new task if a material goal, scope, acceptance, or verification choice
|
|
77
99
|
cannot be derived without changing user intent.
|
|
78
100
|
- Let Core decide whether an exactly compatible contract creates or resumes a task. Never choose,
|
|
Binary file
|