@fernado03/zoo-flow 0.7.6 → 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
@@ -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.6",
4
+ "version": "0.7.8",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "zoo-flow": "bin/zoo-flow.js"
@@ -20,9 +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
- The orchestrator forwards your output to the user. Include enough detail that the user can act on it without re-running commands.
24
-
25
- If the output is long, also write it to `.scratch/` for persistence and user reference. Mention the file path in `attempt_completion` so the user can open it. The orchestrator will not read the file — it only presents your completion message.
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.
26
24
 
27
25
  Before running `git commit` or `git push`, halt and wait for explicit user approval. Never push unless explicitly asked.
28
26
 
@@ -6,13 +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 full output to the user without truncating or summarizing.
10
- 2. Add one line: recommended next command (if any).
11
- 3. Stop and wait for user input.
9
+ 1. Show the worker's completion message to the user (file path + brief status + recommended next command).
10
+ 2. Stop and wait for user input.
12
11
 
13
- Do not route a new user message until the previous subtask result is fully presented. If the user sends a new message before the result was shown, finish presenting the result first, then route the new message.
14
-
15
- The `.scratch/` file referenced in the completion is for user reference only — the orchestrator does not read it.
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.
16
13
 
17
14
  ## Hard delegation boundary
18
15
 
@@ -11,9 +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. Every `attempt_completion` must include the full output the user needs to see (review findings, exploration map, diagnosis, plan), not just summaries. The orchestrator forwards your output to the user; if you summarize, the user loses detail.
15
-
16
- If the output is long, also write it to `.scratch/` for persistence and user reference. Mention the file path in `attempt_completion` so the user can open it. The orchestrator will not read the file — it only presents your completion message.
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.
17
15
 
18
16
  Halt for explicit user approval before testing a bug hypothesis, finalizing an architecture plan, publishing issues, or making irreversible decisions.
19
17
 
@@ -16,10 +16,9 @@ Issue tracker + label vocabulary should exist; run `/setup-matt-pocock-skills` i
16
16
  5. Present numbered breakdown: title; `HITL`/`AFK`; blockers; user stories.
17
17
  6. Ask user to validate granularity/deps/HITL/AFK/merge/split.
18
18
  7. Iterate until approved.
19
- 8. Save approved issues to `.scratch/issues/<date>/issues-<slug>.md`.
20
- 9. Publish in dependency order.
21
- 10. Apply `ready-for-agent` label unless instructed otherwise.
22
- 11. DO NOT close/modify parent issue.
19
+ 8. Publish in dependency order.
20
+ 9. Apply `ready-for-agent` label unless instructed otherwise.
21
+ 10. DO NOT close/modify parent issue.
23
22
 
24
23
  ## Issue template
25
24
 
@@ -15,9 +15,8 @@ RULE: Do not interview user. Synthesize current context.
15
15
  2. Sketch out the seams at which you're going to test the feature. Existing seams should be preferred to new ones. Use the highest seam possible. If new seams are needed, propose them at the highest point you can.
16
16
  3. Check with the user that these seams match their expectations.
17
17
  4. Write PRD.
18
- 5. Save PRD to `.scratch/prds/<date>/prd-<slug>.md`.
19
- 6. Publish to issue tracker.
20
- 7. Apply `ready-for-agent`.
18
+ 5. Publish to issue tracker.
19
+ 6. Apply `ready-for-agent`.
21
20
 
22
21
  ## PRD template
23
22