@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
|
-
|
|
41
|
-
|
|
42
|
-
mode
|
|
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,13 +1,27 @@
|
|
|
1
1
|
# Manual Reply Protocol
|
|
2
2
|
|
|
3
|
-
For workflow
|
|
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
|
-
|
|
8
|
-
2. `/fix`
|
|
9
|
-
3. Hold
|
|
20
|
+
Question: Pick a regression test option.
|
|
10
21
|
|
|
11
|
-
|
|
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.
|