@slamb2k/mad-skills 2.0.43 → 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.
- package/.claude-plugin/plugin.json +1 -1
- package/package.json +1 -1
- package/skills/build/SKILL.md +17 -4
- package/skills/manifest.json +3 -3
- package/skills/speccy/SKILL.md +10 -21
package/package.json
CHANGED
package/skills/build/SKILL.md
CHANGED
|
@@ -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
|
-
|
|
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
|
|
230
|
-
|
|
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
|
-
|
|
244
|
+
If the architecture has no independent groups, launch **one general-purpose
|
|
245
|
+
subagent**:
|
|
233
246
|
|
|
234
247
|
```
|
|
235
248
|
Task(
|
package/skills/manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generated": "2026-03-
|
|
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":
|
|
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":
|
|
89
|
+
"lines": 249,
|
|
90
90
|
"hasScripts": false,
|
|
91
91
|
"hasReferences": true,
|
|
92
92
|
"hasAssets": false,
|
package/skills/speccy/SKILL.md
CHANGED
|
@@ -232,28 +232,17 @@ After the spec is created, report to the user:
|
|
|
232
232
|
└─────────────────────────────────────────────────
|
|
233
233
|
```
|
|
234
234
|
|
|
235
|
-
Then
|
|
235
|
+
Then display the build command:
|
|
236
236
|
|
|
237
|
-
Question: "Spec written to {spec file path}. Ready to build?"
|
|
238
|
-
Options:
|
|
239
|
-
- "Build now (Recommended)" — invoke `/build` immediately
|
|
240
|
-
- "Review first" — stop here so the user can review the spec before building
|
|
241
|
-
- "Done" — stop here, no build
|
|
242
|
-
|
|
243
|
-
If the user selects **"Build now"**:
|
|
244
|
-
1. Invoke `/build {spec file path}` directly:
|
|
245
|
-
```
|
|
246
|
-
Skill(skill: "build", args: "{spec file path}")
|
|
247
|
-
```
|
|
248
|
-
`/build` reads the spec file via Plan Resolution and executes the full
|
|
249
|
-
pipeline. **Do not** attempt to implement the spec yourself — always
|
|
250
|
-
delegate to `/build`.
|
|
251
|
-
|
|
252
|
-
If the user selects **"Review first"** or **"Done"**, stop and display:
|
|
253
237
|
```
|
|
254
|
-
⚡ To
|
|
238
|
+
⚡ To implement, run: /build {spec file path}
|
|
255
239
|
```
|
|
256
240
|
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
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`.
|