@slamb2k/mad-skills 2.0.16 → 2.0.17
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/README.md +27 -20
- package/package.json +1 -1
- package/skills/manifest.json +1 -1
package/README.md
CHANGED
|
@@ -412,29 +412,36 @@ Three methods are available. The table below shows what each delivers:
|
|
|
412
412
|
|
|
413
413
|
### Plugin (recommended)
|
|
414
414
|
|
|
415
|
+
Installs skills, agents, and session hooks from the GitHub repo into
|
|
416
|
+
`~/.claude/plugins/`. Updates automatically. Claude Code only.
|
|
417
|
+
|
|
418
|
+
**Step 1 — Register the marketplace (one-time):**
|
|
419
|
+
|
|
420
|
+
From the CLI:
|
|
421
|
+
```bash
|
|
422
|
+
claude plugin marketplace add slamb2k/mad-skills
|
|
415
423
|
```
|
|
416
|
-
|
|
424
|
+
|
|
425
|
+
Or add manually to `~/.claude/settings.json`:
|
|
426
|
+
```json
|
|
427
|
+
"extraKnownMarketplaces": {
|
|
428
|
+
"slamb2k": {
|
|
429
|
+
"source": { "source": "github", "repo": "slamb2k/mad-skills" }
|
|
430
|
+
}
|
|
431
|
+
}
|
|
432
|
+
```
|
|
433
|
+
|
|
434
|
+
**Step 2 — Install the plugin:**
|
|
435
|
+
|
|
436
|
+
From the CLI:
|
|
437
|
+
```bash
|
|
438
|
+
claude plugin install mad-skills@slamb2k
|
|
417
439
|
```
|
|
418
440
|
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
> **Option A** — CLI (outside Claude Code):
|
|
424
|
-
> ```bash
|
|
425
|
-
> claude plugin marketplace add slamb2k/mad-skills
|
|
426
|
-
> ```
|
|
427
|
-
>
|
|
428
|
-
> **Option B** — Manual (add to `~/.claude/settings.json`):
|
|
429
|
-
> ```json
|
|
430
|
-
> "extraKnownMarketplaces": {
|
|
431
|
-
> "slamb2k": {
|
|
432
|
-
> "source": { "source": "github", "repo": "slamb2k/mad-skills" }
|
|
433
|
-
> }
|
|
434
|
-
> }
|
|
435
|
-
> ```
|
|
436
|
-
>
|
|
437
|
-
> Then install the plugin inside Claude Code with `/plugin install mad-skills@slamb2k`, or from the CLI with `claude plugin install mad-skills@slamb2k`.
|
|
441
|
+
Or inside Claude Code:
|
|
442
|
+
```
|
|
443
|
+
/plugin install mad-skills@slamb2k
|
|
444
|
+
```
|
|
438
445
|
|
|
439
446
|
### npx skills
|
|
440
447
|
|
package/package.json
CHANGED
package/skills/manifest.json
CHANGED