@fernado03/zoo-flow 0.7.1 → 0.7.3
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 +1 -1
- package/templates/full/.roo/rules/04-context-economy.md +1 -1
- package/templates/full/.roo/rules-code-tweaker/01-completion.md +3 -1
- package/templates/full/.roo/rules-custom-orchestrator/00-routing.md +4 -3
- package/templates/full/.roo/rules-system-architect/02-completion.md +2 -0
- package/templates/full/.roo/skills/engineering/grill-with-docs/CONTEXT-FORMAT.md +1 -2
package/package.json
CHANGED
|
@@ -10,7 +10,7 @@ Batch related small reads when useful.
|
|
|
10
10
|
|
|
11
11
|
Do not re-read unchanged files unless needed.
|
|
12
12
|
|
|
13
|
-
For long command output, summarize or search the output instead of dumping everything.
|
|
13
|
+
For long shell command output (tests, builds, lint), summarize or search the output instead of dumping everything. This is about context window management, not about hiding results from the user.
|
|
14
14
|
|
|
15
15
|
## Domain-doc read gate
|
|
16
16
|
|
|
@@ -20,7 +20,9 @@ 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.
|
|
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 (multi-file diff summary, full test output, verification report), write it to `.scratch/` first and reference the path in `attempt_completion`. The extension may truncate long completion messages, so files ensure nothing is lost.
|
|
24
26
|
|
|
25
27
|
Before running `git commit` or `git push`, halt and wait for explicit user approval. Never push unless explicitly asked.
|
|
26
28
|
|
|
@@ -6,9 +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.
|
|
10
|
-
2.
|
|
11
|
-
3.
|
|
9
|
+
1. If the completion message references a `.scratch/` file, read and present that file's content.
|
|
10
|
+
2. Show the worker's full output to the user without truncating or summarizing.
|
|
11
|
+
3. Add one line: recommended next command (if any).
|
|
12
|
+
4. Stop and wait for user input.
|
|
12
13
|
|
|
13
14
|
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
|
|
|
@@ -13,6 +13,8 @@ Before any `attempt_completion`, re-read the command body and confirm no later p
|
|
|
13
13
|
|
|
14
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 will forward your output to the user; if you summarize, the user loses detail.
|
|
15
15
|
|
|
16
|
+
If the output is long (multi-page review, full exploration map, detailed diagnosis), write it to `.scratch/` first and reference the path in `attempt_completion`. The extension may truncate long completion messages, so files ensure nothing is lost.
|
|
17
|
+
|
|
16
18
|
Halt for explicit user approval before testing a bug hypothesis, finalizing an architecture plan, publishing issues, or making irreversible decisions.
|
|
17
19
|
|
|
18
20
|
For non-trivial completed plans or reviews, recommend the next command only. Typical chain: implementation command -> `/verify` -> `/review` -> `/commit-and-document`. Do not auto-launch those commands.
|
|
@@ -32,5 +32,4 @@ _Avoid_: Purchase, transaction
|
|
|
32
32
|
## Discovery rule
|
|
33
33
|
|
|
34
34
|
1. If the file exists, read it.
|
|
35
|
-
2. If the file is missing, that is **not an error**. Do not invent content.
|
|
36
|
-
3. For commands that depend on populated context, surface once: "No CONTEXT.md or ADRs found yet. Run /grill-with-docs or /scaffold-context to fill, or continue without."
|
|
35
|
+
2. If the file is missing, that is **not an error**. Do not invent content. Surface once: "No CONTEXT.md found. Run /scaffold-context to fill, or continue without."
|