@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.
- package/.claude-plugin/plugin.json +1 -1
- package/package.json +1 -1
- package/skills/build/SKILL.md +27 -0
- package/skills/manifest.json +3 -3
- package/skills/speccy/SKILL.md +3 -15
package/package.json
CHANGED
package/skills/build/SKILL.md
CHANGED
|
@@ -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
|
package/skills/manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generated": "2026-03-
|
|
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":
|
|
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":
|
|
89
|
+
"lines": 260,
|
|
90
90
|
"hasScripts": false,
|
|
91
91
|
"hasReferences": true,
|
|
92
92
|
"hasAssets": false,
|
package/skills/speccy/SKILL.md
CHANGED
|
@@ -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
|
-
- "
|
|
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.
|
|
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
|
```
|