@fernado03/zoo-flow 0.3.3 → 0.3.4
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
|
@@ -27,11 +27,11 @@ Do not re-read unchanged files; use prior findings unless the file changed.
|
|
|
27
27
|
## Rules
|
|
28
28
|
|
|
29
29
|
1. Mark throwaway clearly.
|
|
30
|
-
2. Place near real module/page.
|
|
30
|
+
2. Place under `.scratch/prototypes/<slug>/` (logic/state/data-model) or near the real module/page (UI). UI prototypes need the real route, data fetching, and auth, so they stay adjacent to the page they mock up; logic prototypes have no such constraint, so they go in `.scratch/` with the other throwaway work.
|
|
31
31
|
3. Follow existing routing/tooling.
|
|
32
32
|
4. Provide one run command.
|
|
33
33
|
5. Default no persistence; state in memory.
|
|
34
|
-
6. Persistence target → scratch DB/file named `PROTOTYPE — wipe me`
|
|
34
|
+
6. Persistence target → scratch DB/file named `PROTOTYPE — wipe me` in the prototype folder.
|
|
35
35
|
7. No polish: no tests, minimal errors, no abstractions.
|
|
36
36
|
8. Surface full relevant state after each action/variant switch.
|
|
37
37
|
9. Done → capture answer in commit/ADR/issue/`NOTES.md`; delete or fold into real code.
|