@slamb2k/mad-skills 2.0.42 → 2.0.44

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.44",
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.44",
4
4
  "description": "Claude Code skills collection — full lifecycle development tools",
5
5
  "type": "module",
6
6
  "repository": {
@@ -107,7 +107,17 @@ For each row, in order:
107
107
  manually scanning CLAUDE.md and specs/ directory.
108
108
  3. Detect project type using `references/project-detection.md` to populate
109
109
  **PROJECT_CONFIG** (language, test_runner, test_setup)
110
- 3. Check for outstanding items from previous work:
110
+ 4. **Create task list** ALWAYS create tasks upfront for all stages using
111
+ `TaskCreate`. This provides visible progress tracking throughout the build:
112
+ - Task: "Stage 1: Explore codebase"
113
+ - Task: "Stage 2: Clarifying questions" (if not `--skip-questions`)
114
+ - Task: "Stage 3: Architecture design"
115
+ - Task: "Stage 4: Implementation"
116
+ - Task: "Stage 5: Code review" (if not `--skip-review`)
117
+ - Task: "Stage 7: Verify"
118
+ - Task: "Stage 9: Ship" (if not `--no-ship`)
119
+ Mark each task `in_progress` when starting and `completed` when done.
120
+ 5. Check for outstanding items from previous work:
111
121
  - Query persistent tasks via `TaskList` for incomplete items
112
122
  - Search CLAUDE.md for a "Known Issues" or "Open Questions" section
113
123
  - Search memory (if available) for recent unresolved items
@@ -226,10 +236,13 @@ If rejected, incorporate feedback and re-run.
226
236
 
227
237
  ## Stage 4: Implementation
228
238
 
229
- If `--parallel-impl` and ARCH_REPORT has independent `parallel_groups`,
230
- launch **multiple general-purpose subagents in parallel**.
239
+ If ARCH_REPORT identifies independent `parallel_groups`, launch **multiple
240
+ general-purpose subagents in parallel** — one per group. Do NOT wait for
241
+ `--parallel-impl` flag; parallel execution is the **default** when the
242
+ architecture supports it. The flag is retained only as an explicit override.
231
243
 
232
- Otherwise launch **one general-purpose subagent**:
244
+ If the architecture has no independent groups, launch **one general-purpose
245
+ subagent**:
233
246
 
234
247
  ```
235
248
  Task(
@@ -399,6 +412,33 @@ Invoke the `/ship` skill:
399
412
 
400
413
  If any stage failed, report the failure point and what was accomplished.
401
414
 
415
+ ### Pipeline Summary
416
+
417
+ When `/build` was invoked as part of a chained pipeline (e.g., from `/speccy`),
418
+ emit a concise **Pipeline Summary** after the Final Report. This gives an
419
+ at-a-glance view of the entire end-to-end process:
420
+
421
+ ```
422
+ ┌─ Pipeline Summary ─────────────────────────────
423
+
424
+ │ {icon} Spec {spec file or "inline plan"}
425
+ │ {icon} Explore {files identified count}
426
+ │ {icon} Questions {answered or "skipped"}
427
+ │ {icon} Architect {approach one-liner}
428
+ │ {icon} Implement {files changed summary}
429
+ │ {icon} Review {findings summary}
430
+ │ {icon} Verify {test result}
431
+ │ {icon} Ship {PR link} → {merge commit}
432
+
433
+ └─────────────────────────────────────────────────
434
+ ```
435
+
436
+ Use ✅ for completed stages, ⏭️ for skipped, ❌ for failed.
437
+
438
+ **Always emit this summary** — even when `/build` was invoked directly (not
439
+ from `/speccy`). It serves as a compact status line for any multi-stage build,
440
+ regardless of how it was triggered.
441
+
402
442
  ---
403
443
 
404
444
  ## Rollback
@@ -1,5 +1,5 @@
1
1
  {
2
- "generated": "2026-03-24T07:52:19.071Z",
2
+ "generated": "2026-03-24T15:07:20.484Z",
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": 451,
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": 249,
90
90
  "hasScripts": false,
91
91
  "hasReferences": true,
92
92
  "hasAssets": false,
@@ -232,40 +232,17 @@ After the spec is created, report to the user:
232
232
  └─────────────────────────────────────────────────
233
233
  ```
234
234
 
235
- Then **immediately** ask the user via AskUserQuestion:
236
-
237
- Question: "Spec written to {spec file path}. Ready to build?"
238
- Options:
239
- - "Clear context & build (Recommended)" — clear the conversation first, then run `/build`
240
- - "Build now" — invoke `/build` immediately in the current context
241
- - "Review first" — stop here so the user can review the spec before building
242
- - "Done" — stop here, no build
243
-
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.
235
+ Then display the build command:
252
236
 
253
- If the user selects **"Build now"**:
254
- 1. Invoke `/build {spec file path}` directly:
255
- ```
256
- Skill(skill: "build", args: "{spec file path}")
257
- ```
258
- `/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`.
263
-
264
- If the user selects **"Review first"** or **"Done"**, stop and display:
265
237
  ```
266
- ⚡ To build later, run: /build {spec file path}
238
+ ⚡ To implement, run: /build {spec file path}
267
239
  ```
268
240
 
269
- **IMPORTANT:** After generating the spec, do NOT enter plan mode, do NOT
270
- start implementing directly, and do NOT offer to execute the plan yourself.
271
- The only path to implementation is through `/build`.
241
+ The spec file persists on disk, so the user can `/clear` the conversation
242
+ to free context before running `/build`. This is the recommended flow for
243
+ large specs clearing context gives `/build` maximum working room.
244
+
245
+ **IMPORTANT:** After generating the spec, STOP. Do NOT enter plan mode,
246
+ do NOT start implementing directly, do NOT invoke `/build` yourself, and
247
+ do NOT offer to execute the plan. The spec file is the handoff artifact —
248
+ the user controls when and how to invoke `/build`.