@fernado03/zoo-flow 0.7.7 → 0.7.8
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
|
@@ -20,7 +20,7 @@ Before any `attempt_completion`, re-read the command body and confirm no later p
|
|
|
20
20
|
- remaining risk (what was not checked or is uncertain)
|
|
21
21
|
- recommended next command (one only, no auto-launch)
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
Write long output (verification report, diff summary) to `.scratch/` with a descriptive path. `attempt_completion` must include: file path where output was saved, brief status, and recommended next command. The user will open the file to see full details.
|
|
24
24
|
|
|
25
25
|
Before running `git commit` or `git push`, halt and wait for explicit user approval. Never push unless explicitly asked.
|
|
26
26
|
|
|
@@ -6,12 +6,10 @@ Router only. No reading implementation files, editing, shell, or answering imple
|
|
|
6
6
|
|
|
7
7
|
After `attempt_completion` from a worker, the orchestrator must:
|
|
8
8
|
|
|
9
|
-
1. Show the worker's completion message
|
|
9
|
+
1. Show the worker's completion message to the user (file path + brief status + recommended next command).
|
|
10
10
|
2. Stop and wait for user input.
|
|
11
11
|
|
|
12
|
-
The
|
|
13
|
-
|
|
14
|
-
Do not route a new user message until the completion message is fully presented.
|
|
12
|
+
The full output is in the `.scratch/` file referenced by the worker. The orchestrator does not read it — the user opens it in the editor.
|
|
15
13
|
|
|
16
14
|
## Hard delegation boundary
|
|
17
15
|
|
|
@@ -11,7 +11,7 @@ If you entered this window via `switch_mode` (you are mid-chain, not the entry p
|
|
|
11
11
|
|
|
12
12
|
Before any `attempt_completion`, re-read the command body and confirm no later phase is assigned to another mode. If one is, `switch_mode` instead.
|
|
13
13
|
|
|
14
|
-
Do not use `attempt_completion` to avoid required implementation work.
|
|
14
|
+
Do not use `attempt_completion` to avoid required implementation work. Write the full output (review findings, exploration map, diagnosis, plan) to `.scratch/` with a descriptive path. `attempt_completion` must include: file path where output was saved, brief status, and recommended next command. The user will open the file to see full details.
|
|
15
15
|
|
|
16
16
|
Halt for explicit user approval before testing a bug hypothesis, finalizing an architecture plan, publishing issues, or making irreversible decisions.
|
|
17
17
|
|