agent-skill-manager 1.13.1 → 1.15.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 +47 -1
- package/data/skill-index/Affitor_affiliate-skills.json +193 -49
- package/data/skill-index/Eronred_aso-skills.json +369 -0
- package/data/skill-index/GPTomics_bioSkills.json +5097 -0
- package/data/skill-index/Galaxy-Dawn_claude-scholar.json +573 -0
- package/data/skill-index/K-Dense-AI_claude-scientific-skills.json +1977 -0
- package/data/skill-index/Leonxlnx_taste-skill.json +29 -8
- package/data/skill-index/Master-cai_Research-Paper-Writing-Skills.json +21 -0
- package/data/skill-index/MiniMax-AI_skills.json +54 -12
- package/data/skill-index/affaan-m_everything-claude-code.json +951 -159
- package/data/skill-index/anthropics_skills.json +73 -19
- package/data/skill-index/bytedance_deer-flow.json +213 -0
- package/data/skill-index/coreyhaines31_marketingskills.json +133 -34
- package/data/skill-index/github_awesome-copilot.json +2978 -0
- package/data/skill-index/himself65_finance-skills.json +105 -0
- package/data/skill-index/kemiljk_fluid-design.json +21 -0
- package/data/skill-index/kepano_obsidian-skills.json +69 -0
- package/data/skill-index/luongnv89_skills.json +143 -38
- package/data/skill-index/mattpocock_skills.json +213 -0
- package/data/skill-index/nextlevelbuilder_ui-ux-pro-max-skill.json +29 -8
- package/data/skill-index/obra_superpowers.json +57 -15
- package/data/skill-index/sickn33_antigravity-awesome-skills.json +5285 -1301
- package/data/skill-index/slavingia_skills.json +117 -0
- package/data/skill-index-resources.json +109 -19
- package/dist/agent-skill-manager.js +178 -173
- package/dist/{chunk-t50w9h6a.js → chunk-257hhznr.js} +1 -1
- package/dist/{chunk-hkqn9wnw.js → chunk-q9kp1v01.js} +2 -2
- package/dist/chunk-vhkxjexp.js +3 -0
- package/package.json +2 -1
- package/data/skill-index/agentskills_agentskills.json +0 -8
- package/data/skill-index/msitarzewski_agency-agents.json +0 -8
- package/dist/chunk-b7betbzn.js +0 -3
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<picture>
|
|
3
3
|
<source media="(prefers-color-scheme: dark)" srcset="assets/logo/logo-full.svg" />
|
|
4
4
|
<source media="(prefers-color-scheme: light)" srcset="assets/logo/logo-black.svg" />
|
|
5
|
-
<img src="assets/logo/logo-full.svg" alt="
|
|
5
|
+
<img src="assets/logo/logo-full.svg" alt="asm" width="340" />
|
|
6
6
|
</picture>
|
|
7
7
|
</p>
|
|
8
8
|
|
|
@@ -24,10 +24,20 @@
|
|
|
24
24
|
|
|
25
25
|
<p align="center">
|
|
26
26
|
<a href="#get-started-in-30-seconds"><strong>Get Started in 30 Seconds →</strong></a>
|
|
27
|
+
|
|
|
28
|
+
<a href="https://luongnv.com/asm/"><strong>Browse 1,700+ Skills Online →</strong></a>
|
|
27
29
|
</p>
|
|
28
30
|
|
|
29
31
|
---
|
|
30
32
|
|
|
33
|
+
### 🌐 ASM Catalog — Browse Skills in Your Browser
|
|
34
|
+
|
|
35
|
+
Don't want to install anything yet? **[Explore the full skill catalog online →](https://luongnv.com/asm/)**
|
|
36
|
+
|
|
37
|
+
Search, filter by category or repo, and copy install commands — all from a single page. No signup, no backend, no tracking. Share filtered views via URL (e.g. `?q=code-review&cat=development`).
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
31
41
|
<p align="center">
|
|
32
42
|
<img src="assets/screenshots/tui.png" alt="agent-skill-manager TUI dashboard" width="800" />
|
|
33
43
|
</p>
|
|
@@ -207,6 +217,42 @@ Whether you're building skills for yourself or publishing them for the community
|
|
|
207
217
|
|
|
208
218
|
---
|
|
209
219
|
|
|
220
|
+
## Skill Verification
|
|
221
|
+
|
|
222
|
+
Skills indexed by `asm` are automatically evaluated against a set of verification criteria. Skills that pass all criteria receive a **verified** badge in the catalog and `"verified": true` in the index JSON. Skills that fail any criterion are still indexed but marked as unverified.
|
|
223
|
+
|
|
224
|
+
### Verification Criteria
|
|
225
|
+
|
|
226
|
+
A skill must satisfy **all four** of the following to be verified:
|
|
227
|
+
|
|
228
|
+
1. **Valid frontmatter** -- The SKILL.md file must contain YAML frontmatter with both a `name` and a `description` field. Empty or whitespace-only values fail this check.
|
|
229
|
+
|
|
230
|
+
2. **Meaningful body content** -- The markdown body (everything after the frontmatter block) must contain at least 20 characters of instruction text. A SKILL.md that is only frontmatter with no real guidance for the agent will fail.
|
|
231
|
+
|
|
232
|
+
3. **No malicious patterns** -- The full SKILL.md content is scanned for dangerous code patterns:
|
|
233
|
+
- `atob()` calls (runtime base64 decoding / obfuscation)
|
|
234
|
+
- Suspicious base64-encoded strings (40+ character base64 blocks with padding)
|
|
235
|
+
- Hex-escape sequences (4+ consecutive `\xNN` escapes)
|
|
236
|
+
- Hardcoded credentials (`API_KEY`, `SECRET_KEY`, or `PASSWORD` assignments)
|
|
237
|
+
|
|
238
|
+
4. **Proper structure** -- The skill directory must exist and contain a `SKILL.md` file that the ingestion pipeline can read.
|
|
239
|
+
|
|
240
|
+
### How to Reproduce Locally
|
|
241
|
+
|
|
242
|
+
You can verify your skill before publishing:
|
|
243
|
+
|
|
244
|
+
```bash
|
|
245
|
+
# Index your repo -- verification runs automatically during ingestion
|
|
246
|
+
asm index ingest github:your-user/your-repo
|
|
247
|
+
|
|
248
|
+
# Check the output JSON for the verified field
|
|
249
|
+
asm index search "your-skill" --json
|
|
250
|
+
```
|
|
251
|
+
|
|
252
|
+
Each indexed skill in the output JSON includes `"verified": true` or `"verified": false`. If verification fails, the ingestion debug log (set `ASM_DEBUG=1`) prints the specific reasons.
|
|
253
|
+
|
|
254
|
+
---
|
|
255
|
+
|
|
210
256
|
## Get Started in 30 Seconds
|
|
211
257
|
|
|
212
258
|
### npm (recommended)
|