@slamb2k/mad-skills 2.0.22 → 2.0.24
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/hooks/session-guard.cjs +2 -2
- package/package.json +1 -1
- package/skills/build/SKILL.md +2 -2
- package/skills/dock/SKILL.md +1 -1
- package/skills/keel/SKILL.md +1 -1
- package/skills/manifest.json +1 -1
- package/skills/rig/SKILL.md +1 -1
- package/skills/ship/SKILL.md +1 -1
- package/skills/speccy/SKILL.md +1 -1
package/hooks/session-guard.cjs
CHANGED
|
@@ -23,7 +23,7 @@ const { join } = require('path');
|
|
|
23
23
|
const config = require('./lib/config.cjs');
|
|
24
24
|
const state = require('./lib/state.cjs');
|
|
25
25
|
const { OutputBuilder } = require('./lib/output.cjs');
|
|
26
|
-
const { getBanner
|
|
26
|
+
const { getBanner } = require('./lib/banner.cjs');
|
|
27
27
|
const { checkGit } = require('./lib/git-checks.cjs');
|
|
28
28
|
const { checkTaskList } = require('./lib/task-checks.cjs');
|
|
29
29
|
const { checkStaleness } = require('./lib/staleness.cjs');
|
|
@@ -174,7 +174,7 @@ function checkBrace(projectDir, output) {
|
|
|
174
174
|
output.add('[SESSION GUARD] \u2139\uFE0F CLAUDE.md exists but no project scaffold detected.');
|
|
175
175
|
output.add('[SESSION GUARD] BRACE_DISMISS: If the user selects "Don\'t ask again", run: node <path-to-session-guard.cjs> dismiss-brace');
|
|
176
176
|
output.addQuestion(
|
|
177
|
-
'This project has a CLAUDE.md but no project scaffold (specs/,
|
|
177
|
+
'This project has a CLAUDE.md but no project scaffold (specs/, context/). Want to set it up?',
|
|
178
178
|
'single_select',
|
|
179
179
|
[
|
|
180
180
|
'"Set up with /brace" \u2014 add project scaffold structure',
|
package/package.json
CHANGED
package/skills/build/SKILL.md
CHANGED
|
@@ -84,8 +84,8 @@ Before starting, check all dependencies in this table:
|
|
|
84
84
|
|
|
85
85
|
| Dependency | Type | Check | Required | Resolution | Detail |
|
|
86
86
|
|-----------|------|-------|----------|------------|--------|
|
|
87
|
-
| ship | skill |
|
|
88
|
-
| prime | skill |
|
|
87
|
+
| ship | skill | `~/.claude/skills/ship/SKILL.md` or `~/.claude/plugins/marketplaces/slamb2k/skills/ship/SKILL.md` | yes | stop | Install with: npx skills add slamb2k/mad-skills --skill ship |
|
|
88
|
+
| prime | skill | `~/.claude/skills/prime/SKILL.md` or `~/.claude/plugins/marketplaces/slamb2k/skills/prime/SKILL.md` | no | fallback | Context loading; falls back to manual CLAUDE.md/goals scan |
|
|
89
89
|
| feature-dev:code-explorer | agent | — | no | fallback | Uses general-purpose agent |
|
|
90
90
|
| feature-dev:code-architect | agent | — | no | fallback | Uses general-purpose agent |
|
|
91
91
|
| feature-dev:code-reviewer | agent | — | no | fallback | Uses general-purpose agent |
|
package/skills/dock/SKILL.md
CHANGED
|
@@ -89,7 +89,7 @@ Before starting, check dependencies:
|
|
|
89
89
|
|-----------|------|-------|----------|------------|--------|
|
|
90
90
|
| docker | cli | `docker --version` | no | ask | Needed for local build verification; skip verify phase if absent |
|
|
91
91
|
| git | cli | `git --version` | yes | stop | Install from https://git-scm.com |
|
|
92
|
-
| sync | skill |
|
|
92
|
+
| sync | skill | `~/.claude/skills/sync/SKILL.md` or `~/.claude/plugins/marketplaces/slamb2k/skills/sync/SKILL.md` | no | fallback | Repo sync; falls back to manual git pull |
|
|
93
93
|
|
|
94
94
|
For each row:
|
|
95
95
|
1. Run the Check command
|
package/skills/keel/SKILL.md
CHANGED
|
@@ -75,7 +75,7 @@ Before starting, check dependencies:
|
|
|
75
75
|
| Dependency | Type | Check | Required | Resolution | Detail |
|
|
76
76
|
|-----------|------|-------|----------|------------|--------|
|
|
77
77
|
| git | cli | `git --version` | yes | stop | Install from https://git-scm.com |
|
|
78
|
-
| sync | skill |
|
|
78
|
+
| sync | skill | `~/.claude/skills/sync/SKILL.md` or `~/.claude/plugins/marketplaces/slamb2k/skills/sync/SKILL.md` | no | fallback | Repo sync; falls back to manual git pull |
|
|
79
79
|
| terraform | cli | `terraform --version` | no | fallback | Detected if user wants Terraform; suggest install from https://terraform.io |
|
|
80
80
|
| az | cli | `az --version` | no | fallback | Needed for Bicep; suggest install from https://aka.ms/install-azure-cli |
|
|
81
81
|
| pulumi | cli | `pulumi version` | no | fallback | Detected if user wants Pulumi; suggest install from https://pulumi.com |
|
package/skills/manifest.json
CHANGED
package/skills/rig/SKILL.md
CHANGED
|
@@ -75,7 +75,7 @@ Before starting, check all dependencies in this table:
|
|
|
75
75
|
| Dependency | Type | Check | Required | Resolution | Detail |
|
|
76
76
|
|-----------|------|-------|----------|------------|--------|
|
|
77
77
|
| git | cli | `git --version` | yes | stop | Install from https://git-scm.com |
|
|
78
|
-
| sync | skill |
|
|
78
|
+
| sync | skill | `~/.claude/skills/sync/SKILL.md` or `~/.claude/plugins/marketplaces/slamb2k/skills/sync/SKILL.md` | no | fallback | Repo sync; falls back to manual git pull |
|
|
79
79
|
| lefthook | npm | `npx lefthook --help` | yes | install | `npm install -g lefthook` |
|
|
80
80
|
| gh | cli | `gh --version` | yes | url | https://cli.github.com |
|
|
81
81
|
|
package/skills/ship/SKILL.md
CHANGED
|
@@ -129,7 +129,7 @@ Task(
|
|
|
129
129
|
subagent_type: "Bash",
|
|
130
130
|
model: "haiku",
|
|
131
131
|
description: "Sync with default branch",
|
|
132
|
-
prompt: "Follow ~/.claude/skills/sync/SKILL.md subagent prompt. Return SYNC_REPORT."
|
|
132
|
+
prompt: "Follow ~/.claude/skills/sync/SKILL.md or ~/.claude/plugins/marketplaces/slamb2k/skills/sync/SKILL.md subagent prompt. Return SYNC_REPORT."
|
|
133
133
|
)
|
|
134
134
|
```
|
|
135
135
|
|
package/skills/speccy/SKILL.md
CHANGED
|
@@ -72,7 +72,7 @@ Before starting, check all dependencies in this table:
|
|
|
72
72
|
| Dependency | Type | Check | Required | Resolution | Detail |
|
|
73
73
|
|-----------|------|-------|----------|------------|--------|
|
|
74
74
|
| create-specification | skill | `~/.claude/skills/create-specification/SKILL.md` or `~/.agents/skills/create-specification/SKILL.md` | yes | ask | This skill is needed to format the final spec. Install with: `npx skills add slamb2k/mad-skills --skill create-specification` |
|
|
75
|
-
| prime | skill |
|
|
75
|
+
| prime | skill | `~/.claude/skills/prime/SKILL.md` or `~/.claude/plugins/marketplaces/slamb2k/skills/prime/SKILL.md` | no | fallback | Context loading; falls back to manual project scan |
|
|
76
76
|
|
|
77
77
|
For each row, in order:
|
|
78
78
|
1. Test file existence (check both paths for symlinked skills)
|