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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dev-booster",
3
- "version": "1.13.0",
3
+ "version": "1.14.0",
4
4
  "description": "Reusable AI development kit with manual boosters, governance, and project bootstrap",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -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
- [1] Unstaged changes (git diff)
49
- [2] Staged changes (git diff --cached)
50
- [3] Working tree + commits (git diff HEAD~N)
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
- - If the user picks `[1]` or `[2]`, proceed directly to Phase 3 with the respective `git diff`.
54
- - 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.
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: