dev-booster 1.13.0 → 1.14.0
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
|
@@ -41,17 +41,26 @@ Report the current state clearly to the user:
|
|
|
41
41
|
- Current branch
|
|
42
42
|
|
|
43
43
|
### PHASE 2 — SCOPE SELECTION
|
|
44
|
-
Present the user with three review options based on the current Git state:
|
|
44
|
+
Present the user with three review options based on the current Git state using a vertical list format that renders clearly in narrow chat UIs:
|
|
45
45
|
|
|
46
|
-
```
|
|
46
|
+
```md
|
|
47
47
|
O que você quer revisar?
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
48
|
+
|
|
49
|
+
1. Unstaged changes
|
|
50
|
+
`git diff`
|
|
51
|
+
|
|
52
|
+
2. Staged changes
|
|
53
|
+
`git diff --cached`
|
|
54
|
+
|
|
55
|
+
3. Working tree + commits
|
|
56
|
+
`git diff HEAD~N`
|
|
57
|
+
|
|
58
|
+
Se escolher `3`, eu vou te perguntar quantos commits atrás incluir.
|
|
51
59
|
```
|
|
52
60
|
|
|
53
|
-
-
|
|
54
|
-
- If the user picks `
|
|
61
|
+
- Accept `1`, `2`, or `3` as the user's answer.
|
|
62
|
+
- If the user picks `1` or `2`, proceed directly to Phase 3 with the respective `git diff`.
|
|
63
|
+
- If the user picks `3`, ask: *"Quantos commits atrás incluir? (padrão: 1)"*. Accept a numeric answer (e.g., `1`, `2`, `3`). Use `1` as default if the user does not specify. Then run `git diff HEAD~<N>` which includes both the working tree changes and the last N commits.
|
|
55
64
|
|
|
56
65
|
### PHASE 3 — DIFF REVIEW EXECUTION
|
|
57
66
|
After the user selects the scope:
|