@slamb2k/mad-skills 2.0.32 → 2.0.34
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
package/skills/manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generated": "2026-03-
|
|
2
|
+
"generated": "2026-03-13T08:44:12.749Z",
|
|
3
3
|
"count": 10,
|
|
4
4
|
"skills": [
|
|
5
5
|
{
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
"name": "ship",
|
|
77
77
|
"directory": "ship",
|
|
78
78
|
"description": "\"Ship changes through the full PR lifecycle. Use after completing feature work to commit, push, create PR, wait for checks, and merge. Handles the entire workflow: syncs with main, creates feature branch if needed, groups commits logically with semantic messages, creates detailed PR, monitors CI, fixes issues, squash merges, and cleans up. Invoke when work is ready to ship.\"",
|
|
79
|
-
"lines":
|
|
79
|
+
"lines": 412,
|
|
80
80
|
"hasScripts": false,
|
|
81
81
|
"hasReferences": true,
|
|
82
82
|
"hasAssets": false,
|
package/skills/ship/SKILL.md
CHANGED
|
@@ -321,7 +321,7 @@ attempt = 0
|
|
|
321
321
|
while attempt < 2:
|
|
322
322
|
CHECKS = run_watch()
|
|
323
323
|
if CHECKS.status == "all_passed" or CHECKS.status == "no_checks":
|
|
324
|
-
break → proceed to Stage 5
|
|
324
|
+
break → proceed immediately to Stage 5 (do NOT ask user to confirm merge)
|
|
325
325
|
attempt += 1
|
|
326
326
|
run_fix(CHECKS.failing_checks)
|
|
327
327
|
→ loop back to watch
|
|
@@ -334,6 +334,11 @@ if attempt == 2 and still failing:
|
|
|
334
334
|
|
|
335
335
|
## Stage 5: Merge & Final Sync
|
|
336
336
|
|
|
337
|
+
Once checks pass, **immediately proceed to merge — do not ask the user for
|
|
338
|
+
confirmation.** The user invoked `/ship` expecting the full lifecycle; stopping
|
|
339
|
+
to ask defeats the purpose. Squash merge and delete the source branch are the
|
|
340
|
+
defaults (override via `--no-squash` and `--keep-branch` flags only).
|
|
341
|
+
|
|
337
342
|
Launch **Bash subagent** (haiku — simple git + platform CLI commands):
|
|
338
343
|
|
|
339
344
|
```
|
|
@@ -352,6 +357,24 @@ Parse LAND_REPORT.
|
|
|
352
357
|
|
|
353
358
|
---
|
|
354
359
|
|
|
360
|
+
## What's Next?
|
|
361
|
+
|
|
362
|
+
After a successful merge, determine what work comes next by checking these
|
|
363
|
+
sources (in priority order):
|
|
364
|
+
|
|
365
|
+
1. **Active tasks** — check `TaskList` for any in-progress or pending tasks
|
|
366
|
+
in the current session
|
|
367
|
+
2. **Session context** — review the conversation so far for any stated plans,
|
|
368
|
+
follow-up items, or deferred work the user mentioned
|
|
369
|
+
3. **Memory** — if the `claude-mem` plugin is available, search for recent
|
|
370
|
+
checkpoints or plans related to this project
|
|
371
|
+
|
|
372
|
+
Summarize the result as 1–3 short bullet points for the `⚡ Next` section of
|
|
373
|
+
the report. If nothing is found, omit the section entirely — do not fabricate
|
|
374
|
+
next steps.
|
|
375
|
+
|
|
376
|
+
---
|
|
377
|
+
|
|
355
378
|
## Final Report to User
|
|
356
379
|
|
|
357
380
|
Compile all stage reports into a summary:
|
|
@@ -371,9 +394,15 @@ Compile all stage reports into a summary:
|
|
|
371
394
|
│
|
|
372
395
|
│ 📊 {count} files changed ({diff_summary})
|
|
373
396
|
│
|
|
397
|
+
│ ⚡ Next
|
|
398
|
+
│ • {next item 1}
|
|
399
|
+
│ • {next item 2}
|
|
400
|
+
│
|
|
374
401
|
└─────────────────────────────────────────────────
|
|
375
402
|
```
|
|
376
403
|
|
|
404
|
+
If nothing was found for "What's Next?", omit the `⚡ Next` section.
|
|
405
|
+
|
|
377
406
|
If any stage failed, add:
|
|
378
407
|
```
|
|
379
408
|
│ ❌ Failed at: {stage name}
|