@slamb2k/mad-skills 2.0.36 → 2.0.37

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.36",
4
+ "version": "2.0.37",
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.36",
3
+ "version": "2.0.37",
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-17T01:20:17.972Z",
2
+ "generated": "2026-03-17T02:08:37.271Z",
3
3
  "count": 10,
4
4
  "skills": [
5
5
  {
@@ -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": 241,
89
+ "lines": 253,
90
90
  "hasScripts": false,
91
91
  "hasReferences": true,
92
92
  "hasAssets": false,
@@ -217,18 +217,30 @@ Then **immediately** ask the user via AskUserQuestion:
217
217
 
218
218
  Question: "Spec written to {spec file path}. Ready to build?"
219
219
  Options:
220
- - "Build now (Recommended)" — invoke `/build` with the spec file
220
+ - "Clear context & build (Recommended)" — clear the conversation first, then run `/build`
221
+ - "Build now" — invoke `/build` immediately in the current context
221
222
  - "Review first" — stop here so the user can review the spec before building
222
223
  - "Done" — stop here, no build
223
224
 
225
+ If the user selects **"Clear context & build"**:
226
+ 1. Run `/clear` to clear the conversation context
227
+ 2. Then invoke `/build {spec file path}`:
228
+ ```
229
+ Skill(skill: "build", args: "{spec file path}")
230
+ ```
231
+ `/build` reads the spec file via Plan Resolution and executes the full
232
+ pipeline with maximum context window available.
233
+
224
234
  If the user selects **"Build now"**:
225
- 1. Invoke `/build` using the Skill tool:
235
+ 1. Invoke `/build {spec file path}` directly:
226
236
  ```
227
237
  Skill(skill: "build", args: "{spec file path}")
228
238
  ```
229
- 2. `/build` will read the spec file via Plan Resolution and execute the full
230
- pipeline. **Do not** attempt to implement the spec yourself — always
231
- delegate to `/build`.
239
+ `/build` reads the spec file via Plan Resolution and executes the full
240
+ pipeline. The current conversation context is preserved.
241
+
242
+ In both cases, **do not** attempt to implement the spec yourself — always
243
+ delegate to `/build`.
232
244
 
233
245
  If the user selects **"Review first"** or **"Done"**, stop and display:
234
246
  ```