@slamb2k/mad-skills 2.0.42 → 2.0.43

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.42",
4
+ "version": "2.0.43",
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.42",
3
+ "version": "2.0.43",
4
4
  "description": "Claude Code skills collection — full lifecycle development tools",
5
5
  "type": "module",
6
6
  "repository": {
@@ -399,6 +399,33 @@ Invoke the `/ship` skill:
399
399
 
400
400
  If any stage failed, report the failure point and what was accomplished.
401
401
 
402
+ ### Pipeline Summary
403
+
404
+ When `/build` was invoked as part of a chained pipeline (e.g., from `/speccy`),
405
+ emit a concise **Pipeline Summary** after the Final Report. This gives an
406
+ at-a-glance view of the entire end-to-end process:
407
+
408
+ ```
409
+ ┌─ Pipeline Summary ─────────────────────────────
410
+
411
+ │ {icon} Spec {spec file or "inline plan"}
412
+ │ {icon} Explore {files identified count}
413
+ │ {icon} Questions {answered or "skipped"}
414
+ │ {icon} Architect {approach one-liner}
415
+ │ {icon} Implement {files changed summary}
416
+ │ {icon} Review {findings summary}
417
+ │ {icon} Verify {test result}
418
+ │ {icon} Ship {PR link} → {merge commit}
419
+
420
+ └─────────────────────────────────────────────────
421
+ ```
422
+
423
+ Use ✅ for completed stages, ⏭️ for skipped, ❌ for failed.
424
+
425
+ **Always emit this summary** — even when `/build` was invoked directly (not
426
+ from `/speccy`). It serves as a compact status line for any multi-stage build,
427
+ regardless of how it was triggered.
428
+
402
429
  ---
403
430
 
404
431
  ## Rollback
@@ -1,5 +1,5 @@
1
1
  {
2
- "generated": "2026-03-24T07:52:19.071Z",
2
+ "generated": "2026-03-24T08:38:36.091Z",
3
3
  "count": 10,
4
4
  "skills": [
5
5
  {
@@ -16,7 +16,7 @@
16
16
  "name": "build",
17
17
  "directory": "build",
18
18
  "description": "Context-isolated feature development pipeline. Takes a detailed design/plan as argument and executes the full feature-dev lifecycle (explore, question, architect, implement, review, ship) inside subagents so the primary conversation stays compact. Use when you have a well-defined plan and want autonomous execution with minimal context window consumption.",
19
- "lines": 411,
19
+ "lines": 438,
20
20
  "hasScripts": false,
21
21
  "hasReferences": true,
22
22
  "hasAssets": false,
@@ -86,7 +86,7 @@
86
86
  "name": "speccy",
87
87
  "directory": "speccy",
88
88
  "description": "Deep-dive interview skill for creating comprehensive specifications. Reviews existing code and docs, then interviews the user through multiple rounds of targeted questions covering technical implementation, UI/UX, concerns, and tradeoffs. Produces a structured spec in specs/. Use when starting a new feature, system, or major change that needs a spec.",
89
- "lines": 272,
89
+ "lines": 260,
90
90
  "hasScripts": false,
91
91
  "hasReferences": true,
92
92
  "hasAssets": false,
@@ -236,30 +236,18 @@ Then **immediately** ask the user via AskUserQuestion:
236
236
 
237
237
  Question: "Spec written to {spec file path}. Ready to build?"
238
238
  Options:
239
- - "Clear context & build (Recommended)" — clear the conversation first, then run `/build`
240
- - "Build now" — invoke `/build` immediately in the current context
239
+ - "Build now (Recommended)" — invoke `/build` immediately
241
240
  - "Review first" — stop here so the user can review the spec before building
242
241
  - "Done" — stop here, no build
243
242
 
244
- If the user selects **"Clear context & build"**:
245
- 1. Run `/clear` to clear the conversation context
246
- 2. Then invoke `/build {spec file path}`:
247
- ```
248
- Skill(skill: "build", args: "{spec file path}")
249
- ```
250
- `/build` reads the spec file via Plan Resolution and executes the full
251
- pipeline with maximum context window available.
252
-
253
243
  If the user selects **"Build now"**:
254
244
  1. Invoke `/build {spec file path}` directly:
255
245
  ```
256
246
  Skill(skill: "build", args: "{spec file path}")
257
247
  ```
258
248
  `/build` reads the spec file via Plan Resolution and executes the full
259
- pipeline. The current conversation context is preserved.
260
-
261
- In both cases, **do not** attempt to implement the spec yourself — always
262
- delegate to `/build`.
249
+ pipeline. **Do not** attempt to implement the spec yourself — always
250
+ delegate to `/build`.
263
251
 
264
252
  If the user selects **"Review first"** or **"Done"**, stop and display:
265
253
  ```