@fernado03/zoo-flow 0.1.1 → 0.1.2

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/README.md CHANGED
@@ -37,9 +37,9 @@ small request like:
37
37
 
38
38
  > change a harmless comment in `README`
39
39
 
40
- When the orchestrator presents numbered choices, **type the number
41
- manually**. Do not click suggestions that contain slash commands or
42
- mode names — see
40
+ Numbered choices are safe to click or type. Suggestions never carry
41
+ slash commands or mode names, so they will not route you into another
42
+ mode — see
43
43
  [`docs/troubleshooting.md`](docs/troubleshooting.md#clickable-suggestions-can-route-incorrectly).
44
44
 
45
45
  > **Note**: `.roomodes`, `.roo/commands/`, and `.roo/rules-{mode-slug}/`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fernado03/zoo-flow",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Smoke-tested workflow control plane for Zoo Code.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,13 +1,27 @@
1
1
  # Manual Reply Protocol
2
2
 
3
- For workflow routing choices, use numbered options and ask the user to type the number.
3
+ For workflow choices, put options in the suggestions, not in the question body. Map the chosen number back to a command privately.
4
+
5
+ Suggestions:
6
+
7
+ - Descriptive labels OK.
8
+ - No slash commands or mode names.
9
+ - Include a Hold/Skip option when relevant.
10
+
11
+ Question body:
12
+
13
+ - One short prompt. Real newlines only; never the literal `\n`.
14
+ - Do not restate the options.
15
+
16
+ Typed numeric reply is always valid.
4
17
 
5
18
  Example:
6
19
 
7
- 1. `/tweak`
8
- 2. `/fix`
9
- 3. Hold
20
+ Question: Pick a regression test option.
10
21
 
11
- Clickable suggestions, if shown, must be numeric only. Do not put slash commands or mode names in clickable suggestions.
22
+ 1. Import-time smoke test
23
+ 2. Extract helper and unit-test
24
+ 3. AST guard test
25
+ 4. Hold
12
26
 
13
27
  Only treat slash commands as commands when manually typed by the user.