@fernado03/zoo-flow 0.7.16 → 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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@fernado03/zoo-flow",
3
3
  "description": "Workflow control plane for Zoo Code.",
4
- "version": "0.7.16",
4
+ "version": "0.8.1",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "zoo-flow": "bin/zoo-flow.js"
@@ -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`. Reference this file path in `attempt_completion` so the orchestrator can read and present it.
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.