@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.
- package/.claude-plugin/plugin.json +1 -1
- package/package.json +1 -1
- package/skills/manifest.json +2 -2
- package/skills/speccy/SKILL.md +17 -5
package/package.json
CHANGED
package/skills/manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generated": "2026-03-
|
|
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":
|
|
89
|
+
"lines": 253,
|
|
90
90
|
"hasScripts": false,
|
|
91
91
|
"hasReferences": true,
|
|
92
92
|
"hasAssets": false,
|
package/skills/speccy/SKILL.md
CHANGED
|
@@ -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
|
-
- "
|
|
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
|
|
235
|
+
1. Invoke `/build {spec file path}` directly:
|
|
226
236
|
```
|
|
227
237
|
Skill(skill: "build", args: "{spec file path}")
|
|
228
238
|
```
|
|
229
|
-
|
|
230
|
-
pipeline.
|
|
231
|
-
|
|
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
|
```
|