@fernado03/zoo-flow 0.8.0 → 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/package.json
CHANGED
|
@@ -97,9 +97,16 @@ End with exactly one result line:
|
|
|
97
97
|
- `Review result: changes requested`
|
|
98
98
|
- `Review result: blocked`
|
|
99
99
|
|
|
100
|
-
## 6. Save
|
|
100
|
+
## 6. Save and complete
|
|
101
101
|
|
|
102
|
-
Write the full review (findings, axes, result) to `.scratch/reviews/<date>/review-<slug>.md`.
|
|
102
|
+
Write the full review (findings, axes, result) to `.scratch/reviews/<date>/review-<slug>.md`.
|
|
103
|
+
|
|
104
|
+
Call `attempt_completion` with:
|
|
105
|
+
- file path where review was saved
|
|
106
|
+
- brief result line (approve / approve with nits / changes requested / blocked)
|
|
107
|
+
- recommended next command
|
|
108
|
+
|
|
109
|
+
Do NOT use `ask_followup_question` or write results as plain text without calling the tool.
|
|
103
110
|
|
|
104
111
|
## Recommended next command
|
|
105
112
|
|
|
@@ -78,3 +78,14 @@ Reason: no verification command found
|
|
|
78
78
|
```
|
|
79
79
|
|
|
80
80
|
Do not auto-launch any follow-up command.
|
|
81
|
+
|
|
82
|
+
## 6. Complete
|
|
83
|
+
|
|
84
|
+
Write the full verification report to `.scratch/verify/<date>/verify-<slug>.md`.
|
|
85
|
+
|
|
86
|
+
Call `attempt_completion` with:
|
|
87
|
+
- file path where report was saved
|
|
88
|
+
- brief status (pass/fail/partial/blocked)
|
|
89
|
+
- recommended next command
|
|
90
|
+
|
|
91
|
+
Do NOT use `ask_followup_question` or write results as plain text without calling the tool.
|