@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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mad-skills",
3
3
  "description": "AI-assisted planning, development and governance tools",
4
- "version": "2.0.32",
4
+ "version": "2.0.33",
5
5
  "author": {
6
6
  "name": "slamb2k",
7
7
  "url": "https://github.com/slamb2k"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@slamb2k/mad-skills",
3
- "version": "2.0.32",
3
+ "version": "2.0.33",
4
4
  "description": "Claude Code skills collection — full lifecycle development tools",
5
5
  "type": "module",
6
6
  "repository": {
@@ -1,5 +1,5 @@
1
1
  {
2
- "generated": "2026-03-13T06:55:42.461Z",
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": 383,
79
+ "lines": 388,
80
80
  "hasScripts": false,
81
81
  "hasReferences": true,
82
82
  "hasAssets": false,
@@ -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
  ```
@@ -368,6 +368,7 @@ FIX_REPORT:
368
368
 
369
369
  ```
370
370
  Merge the pull request and sync local {DEFAULT_BRANCH}.
371
+ Do NOT ask the user for confirmation — proceed immediately.
371
372
 
372
373
  Limit LAND_REPORT to 10 lines maximum.
373
374