@slamb2k/mad-skills 2.0.32 → 2.0.33
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:31:55.875Z",
|
|
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": 388,
|
|
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
|
```
|