agent-skill-manager 2.1.0 → 2.3.0
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/README.md +10 -1
- package/data/skill-index/Affitor_affiliate-skills.json +2757 -54
- package/data/skill-index/Eronred_aso-skills.json +1561 -31
- package/data/skill-index/GPTomics_bioSkills.json +22829 -440
- package/data/skill-index/Galaxy-Dawn_claude-scholar.json +2497 -49
- package/data/skill-index/Imbad0202_academic-research-skills.json +209 -5
- package/data/skill-index/K-Dense-AI_claude-scientific-skills.json +6969 -135
- package/data/skill-index/Leonxlnx_taste-skill.json +417 -9
- package/data/skill-index/Master-cai_Research-Paper-Writing-Skills.json +53 -2
- package/data/skill-index/MiniMax-AI_skills.json +1197 -24
- package/data/skill-index/affaan-m_everything-claude-code.json +23869 -460
- package/data/skill-index/alirezarezvani_claude-skills.json +26417 -509
- package/data/skill-index/anthropics_skills.json +937 -19
- package/data/skill-index/bytedance_deer-flow.json +1145 -23
- package/data/skill-index/coreyhaines31_marketingskills.json +1873 -37
- package/data/skill-index/github_awesome-copilot.json +22933 -442
- package/data/skill-index/heygen-com_hyperframes.json +261 -6
- package/data/skill-index/himself65_finance-skills.json +1093 -22
- package/data/skill-index/kemiljk_fluid-design.json +53 -2
- package/data/skill-index/kepano_obsidian-skills.json +261 -6
- package/data/skill-index/luongnv89_skills.json +1873 -37
- package/data/skill-index/mattpocock_skills.json +1093 -22
- package/data/skill-index/nextlevelbuilder_ui-ux-pro-max-skill.json +365 -8
- package/data/skill-index/obra_superpowers.json +729 -15
- package/data/skill-index/sickn33_antigravity-awesome-skills.json +230777 -4439
- package/data/skill-index/slavingia_skills.json +521 -11
- package/dist/agent-skill-manager.js +413 -383
- package/dist/chunk-76faq0t9.js +93 -0
- package/dist/{chunk-1becp2v6.js → chunk-83zxj8cj.js} +1 -1
- package/dist/{chunk-a26gjzjk.js → chunk-chw0sgjp.js} +1 -1
- package/dist/chunk-dtg819nd.js +19 -0
- package/package.json +1 -1
- package/dist/chunk-6mbpytcj.js +0 -15
- package/dist/chunk-x537ndd4.js +0 -92
package/README.md
CHANGED
|
@@ -525,7 +525,7 @@ Need a tool not listed? Add a custom provider entry to the config.
|
|
|
525
525
|
Yes. `asm` is MIT licensed and free forever. No accounts, no telemetry, no paywalls.
|
|
526
526
|
|
|
527
527
|
**Is it actively maintained?**
|
|
528
|
-
v2.
|
|
528
|
+
v2.3.0 shipped on April 21, 2026. The project has had 36 releases. Check the [changelog](docs/CHANGELOG.md) for the full history.
|
|
529
529
|
|
|
530
530
|
**Which AI agents does it support?**
|
|
531
531
|
18 providers built-in: Claude Code, Codex, OpenClaw, Cursor, Windsurf, Cline, Roo Code, Continue, GitHub Copilot, Aider, OpenCode, Zed, Augment, Amp, Gemini CLI, Google Antigravity, Hermes, and a generic Agents provider. All 18 are enabled by default; disable any you don't need via `asm config edit`. You can also add any custom agent that stores skills as directories with a `SKILL.md` file.
|
|
@@ -622,6 +622,15 @@ List all global skills sorted by provider location:
|
|
|
622
622
|
asm list --scope global --sort location
|
|
623
623
|
```
|
|
624
624
|
|
|
625
|
+
When you have many skills installed, `asm list` offers condensed views:
|
|
626
|
+
|
|
627
|
+
```bash
|
|
628
|
+
asm list --summary # counts by tool/scope/effort only
|
|
629
|
+
asm list --compact # one line per skill
|
|
630
|
+
asm list --group-by tool # group rows under tool headers
|
|
631
|
+
asm list --limit 20 # show only the first 20 rows
|
|
632
|
+
```
|
|
633
|
+
|
|
625
634
|
Search for skills and output JSON:
|
|
626
635
|
|
|
627
636
|
```bash
|