@fernado03/zoo-flow 0.7.8 → 0.7.9
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
|
@@ -6,8 +6,9 @@ mode: system-architect
|
|
|
6
6
|
EXECUTION RULES:
|
|
7
7
|
1. READ `.zoo-flow/CONTEXT.md`. If it does not exist, output one line before step 2: "No CONTEXT.md found. Run /scaffold-context to fill, or continue without." Do not invent content.
|
|
8
8
|
2. RUN skill: `.roo/skills/engineering/zoom-out/SKILL.md`.
|
|
9
|
-
3. OUTPUT MAP: Create markdown with sections: Domain language, Modules, Data flow, Seams/callers, ADRs, Open questions.
|
|
10
|
-
4.
|
|
11
|
-
5.
|
|
9
|
+
3. OUTPUT MAP: Create markdown with sections: Domain language, Modules, Data flow, Seams/callers, ADRs, Open questions. Derive slug from the target area (e.g. "auth module" → `auth-module.md`). Write to `.scratch/explorations/<YYYY-MM-DD>/<slug>.md`.
|
|
10
|
+
4. WRITE POINTER: Write the exact file path to `.scratch/LAST-EXPLORATION.md` so next commands can find it.
|
|
11
|
+
5. NEXT STEPS: Suggest `/scaffold-context`, `/feature`, `/refactor`, or `/fix`. DO NOT auto-launch.
|
|
12
|
+
6. COMPLETION: Include the exact file path in `attempt_completion`.
|
|
12
13
|
|
|
13
14
|
$ARGUMENTS
|
|
@@ -5,6 +5,7 @@ mode: system-architect
|
|
|
5
5
|
---
|
|
6
6
|
EXECUTION RULES (Run sequentially. Wait for user between phases):
|
|
7
7
|
0. TRACK: At start, write a phase checklist to `.scratch/feature-<slug>.md` (phases 1-5, each unchecked). Before any `switch_mode` or `attempt_completion`, update it. Do NOT `attempt_completion` while any phase is unchecked — `switch_mode` to the phase's owner instead.
|
|
8
|
+
0b. READ `.scratch/LAST-EXPLORATION.md` if it exists to find the most recent exploration map. Reference it in phase 1.
|
|
8
9
|
1. SHARPEN (Architect): Run skill `.roo/skills/engineering/grill-with-docs/SKILL.md`. Update docs.
|
|
9
10
|
HARD STOP: Ask user to choose: Prototype OR skip to PRD.
|
|
10
11
|
2. PROTOTYPE [Optional]: Follow `.roo/rules-system-architect/01-feature-prototype.md` for the architect→tweaker handoff.
|
|
@@ -5,6 +5,7 @@ mode: system-architect
|
|
|
5
5
|
---
|
|
6
6
|
EXECUTION RULES:
|
|
7
7
|
0. TRACK: At start, write a phase checklist to `.scratch/fix-<slug>.md` (phases 1-5, each unchecked). Before any `switch_mode` or `attempt_completion`, update it. Do NOT `attempt_completion` while any phase is unchecked — `switch_mode` to the phase's owner instead.
|
|
8
|
+
0b. READ `.scratch/LAST-EXPLORATION.md` if it exists to find the most recent exploration map. Reference it in phase 1.
|
|
8
9
|
1. DIAGNOSE (Architect): Run skill `.roo/skills/engineering/diagnose/SKILL.md`. Run phases 1-3.
|
|
9
10
|
HARD STOP: Present hypotheses. Wait for user selection. Ignore internal AFK rules.
|
|
10
11
|
2. INSTRUMENT (Architect): Run phase 4 on chosen hypothesis. Find root cause.
|
|
@@ -5,6 +5,7 @@ mode: system-architect
|
|
|
5
5
|
---
|
|
6
6
|
EXECUTION RULES:
|
|
7
7
|
0. TRACK: At start, write a phase checklist to `.scratch/refactor-<slug>.md` (phases 1-3, each unchecked). Before any `switch_mode` or `attempt_completion`, update it. Do NOT `attempt_completion` while any phase is unchecked — `switch_mode` to the phase's owner instead.
|
|
8
|
+
0b. READ `.scratch/LAST-EXPLORATION.md` if it exists to find the most recent exploration map. Reference it in phase 1.
|
|
8
9
|
1. FIND (Architect): Run skill `.roo/skills/engineering/improve-codebase-architecture/SKILL.md`. List candidates.
|
|
9
10
|
HARD STOP: Ask user which candidate to explore.
|
|
10
11
|
2. GRILL (Architect): Run grilling loop. Update CONTEXT/ADRs inline.
|