@hopla/claude-setup 1.2.5 → 1.2.6
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.
|
@@ -29,14 +29,31 @@ git log --oneline -10
|
|
|
29
29
|
git status
|
|
30
30
|
```
|
|
31
31
|
|
|
32
|
-
## Step 4:
|
|
32
|
+
## Step 4: Check Pending Work
|
|
33
33
|
|
|
34
|
-
|
|
34
|
+
```bash
|
|
35
|
+
ls .agents/plans/ 2>/dev/null
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
If `.agents/plans/` exists, identify:
|
|
39
|
+
- `.draft.md` files — unfinished drafts waiting for review
|
|
40
|
+
- `.md` files (without `.draft`) — finalized plans ready to execute
|
|
41
|
+
|
|
42
|
+
## Step 5: Summary Report
|
|
43
|
+
|
|
44
|
+
Write a short, conversational message addressed directly to the user. Mention:
|
|
35
45
|
- What the project is and what it does
|
|
36
46
|
- The current branch and what it's for
|
|
37
47
|
- Whether there are uncommitted changes or pending work
|
|
38
48
|
- The command to start the project (if available)
|
|
39
49
|
|
|
50
|
+
If there are pending plans, list them clearly after the prose summary:
|
|
51
|
+
```
|
|
52
|
+
Pending plans:
|
|
53
|
+
- inventory-page.draft.md ← draft, not finalized yet
|
|
54
|
+
- add-user-authentication.md ← ready to execute with /hopla-execute
|
|
55
|
+
```
|
|
56
|
+
|
|
40
57
|
End with a sentence like: "Listo para continuar — ¿por dónde empezamos?" or "All caught up — what are we working on today?" depending on the language the user writes in.
|
|
41
58
|
|
|
42
|
-
Do NOT use headers
|
|
59
|
+
Do NOT use headers in the prose summary. Write it as natural, friendly prose, then the pending plans list if applicable.
|