agent-skill-manager 2.15.0 → 2.18.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.
Files changed (37) hide show
  1. package/README.md +21 -4
  2. package/data/skill-index/ComposioHQ_awesome-claude-skills.json +153443 -0
  3. package/data/skill-index/Egonex-AI_Understand-Anything.json +2 -2
  4. package/data/skill-index/JuliusBrussee_caveman.json +3985 -0
  5. package/data/skill-index/Leonxlnx_taste-skill.json +47 -47
  6. package/data/skill-index/Nutlope_hallmark.json +185 -0
  7. package/data/skill-index/addyosmani_agent-skills.json +81 -81
  8. package/data/skill-index/anthropics_skills.json +69 -69
  9. package/data/skill-index/antithesishq_antithesis-skills.json +2567 -0
  10. package/data/skill-index/ayghri_i-have-adhd.json +185 -0
  11. package/data/skill-index/blader_humanizer.json +185 -0
  12. package/data/skill-index/cathrynlavery_diagram-design.json +185 -0
  13. package/data/skill-index/charlie947_answer-first.json +185 -0
  14. package/data/skill-index/charlie947_voiceprint.json +185 -0
  15. package/data/skill-index/google-labs-code_design.md.json +891 -0
  16. package/data/skill-index/hardikpandya_stop-slop.json +185 -0
  17. package/data/skill-index/mattpocock_skills.json +482 -114
  18. package/data/skill-index/multica-ai_andrej-karpathy-skills.json +185 -0
  19. package/data/skill-index/nextlevelbuilder_ui-ux-pro-max-skill.json +44 -44
  20. package/data/skill-index/obra_superpowers.json +49 -49
  21. package/data/skill-index/pbakaus_impeccable.json +185 -0
  22. package/data/skill-index/tt-a1i_archify.json +185 -0
  23. package/data/skill-index/zarazhangrui_frontend-slides.json +185 -0
  24. package/data/skill-index-resources.json +145 -10
  25. package/dist/agent-skill-manager.js +283 -239
  26. package/dist/chunk-54VC5E5G.js +23 -0
  27. package/dist/chunk-ESKBKSXS.js +2 -0
  28. package/dist/{chunk-LS24FFOX.js → chunk-VGQYV246.js} +2 -2
  29. package/dist/{chunk-LH2C3PE7.js → chunk-ZAOVB3X2.js} +1 -1
  30. package/dist/config-PQRMSV7F.js +2 -0
  31. package/dist/{lock-NN2MADX7.js → lock-RVOMV2LT.js} +1 -1
  32. package/dist/spawn-JDSII5L3.js +2 -0
  33. package/dist/src-SP66WR5V.js +119 -0
  34. package/package.json +1 -1
  35. package/dist/chunk-BQ4RW237.js +0 -20
  36. package/dist/config-AZYQEQOQ.js +0 -2
  37. package/dist/src-BD3KFE5H.js +0 -119
package/README.md CHANGED
@@ -37,7 +37,7 @@
37
37
 
38
38
  | | |
39
39
  | ------------------- | ------------------------------------------------------------------------------ |
40
- | **Catalog** | 4,394 skills from 54 repos — [browse online](https://luongnv.com/asm/#/skills) |
40
+ | **Catalog** | 4,672 skills from 58 repos — [browse online](https://luongnv.com/asm/#/skills) |
41
41
  | **Providers** | 19 agents (Claude, Codex, Cursor, Windsurf, Copilot, …) |
42
42
  | **Agent-ready CLI** | `--json`, `--yes`, `--machine` on list, search, install, audit, eval |
43
43
  | **Security** | Pre-install scan for shell exec, network access, credential exposure |
@@ -72,9 +72,11 @@ graph LR
72
72
  | Feature | What you get |
73
73
  | ------------------------ | -------------------------------------------------------------------- |
74
74
  | Cross-provider inventory | `asm list --json` — every skill, every agent, one response |
75
+ | Local skill tags | `asm tag add\|remove`; `asm list --tag` / `asm search --tag` (AND) |
75
76
  | One-command install | `asm install github:user/repo` or `asm install skill-name` |
76
77
  | Agent-parseable output | `--json` on list, search, inspect, install, audit |
77
78
  | Duplicate audit | `asm audit --yes` removes redundant skills non-interactively |
79
+ | Semantic overlap audit | `asm audit overlap` finds different-name skills doing the same job |
78
80
  | Attention budget | `asm stats --tokens` shows resident vs body token cost per tool |
79
81
  | Residency audit | `asm audit residency` ranks skills to demote out of resident context |
80
82
  | Reference tier | `asm get <skill>` delivers a body once, at zero residency |
@@ -122,6 +124,7 @@ Node.js 22+ required. Optional TUI: run `asm` with no arguments.
122
124
  | Skill metadata for agents | `asm inspect my-skill --json` |
123
125
  | Non-interactive install | `asm install code-review -p claude --yes --json` |
124
126
  | Remove duplicates | `asm audit --yes` |
127
+ | Find same-job near-duplicates | `asm audit overlap` |
125
128
  | See your context cost | `asm stats --tokens` |
126
129
  | Find skills to demote | `asm audit residency` |
127
130
  | Use a skill without residency | `asm get code-review` |
@@ -130,8 +133,10 @@ Node.js 22+ required. Optional TUI: run `asm` with no arguments.
130
133
  | Live dev via symlink | `asm link ./my-skill -p claude` |
131
134
  | Publish to registry | `asm publish ./my-skill --yes` |
132
135
  | Install a bundle | `asm bundle install frontend-dev --yes` |
136
+ | Tag an installed skill | `asm tag add code-review testing` |
137
+ | Filter inventory by tags | `asm list --tag cli,testing` |
133
138
 
134
- Full command reference, flags, and examples: [CLI Commands](#cli-commands). Catalog UI and bundles: [luongnv.com/asm](https://luongnv.com/asm/).
139
+ Full command reference, flags, and examples: [CLI Commands](#cli-commands). Catalog UI and bundles: [luongnv.com/asm](https://luongnv.com/asm/) (use **Tags** / `TagFilter`, AND match, `?tag=`).
135
140
 
136
141
  ## Attention budget
137
142
 
@@ -552,6 +557,7 @@ Multiple `asm` binaries on `PATH` can shadow a fresh upgrade.
552
557
  | ------------------------------- | ----------------------------------------- | ----------------------------------------- |
553
558
  | `asm list` | List all discovered skills |
554
559
  | `asm search <query>` | Search by name/description/provider |
560
+ | `asm tag add\|remove` | Edit local tags on an installed skill |
555
561
  | `asm inspect <skill-name>` | Show detailed info for a skill |
556
562
  | `asm get <skill>` | Print a skill's body, install nothing |
557
563
  | `asm install <source>` | Install from GitHub or registry |
@@ -584,6 +590,7 @@ Multiple `asm` binaries on `PATH` can shadow a fresh upgrade.
584
590
  | `asm index search <query>` | Search indexed skills |
585
591
  | `asm index list` | List indexed repos |
586
592
  | `asm index remove <owner/repo>` | Remove repo from index |
593
+ | `asm index overlap` | Find semantically overlapping skills in the index |
587
594
  | `asm bundle list` | List bundles (`--predefined`) |
588
595
  | `asm bundle install <name>` | Install every skill in a bundle |
589
596
  | `asm bundle create <name>` | Create bundle from installed skills |
@@ -606,6 +613,7 @@ Multiple `asm` binaries on `PATH` can shadow a fresh upgrade.
606
613
  --machine Stable machine-readable JSON envelope (v1)
607
614
  -s, --scope <scope> global, project, or both
608
615
  -p, --tool <name> Filter by tool (list, search)
616
+ --tag <tag[,tag]> Filter by all tags; repeatable (list, search)
609
617
  --sort <field> name, version, or location
610
618
  --flat Show one row per tool instance (list, search)
611
619
  --model-invocable Only skills the model can invoke
@@ -635,6 +643,15 @@ asm list --model-invocable --user-invocable
635
643
 
636
644
  Listings and `asm inspect` show invocability as `model`, `user`, or `both` (never collapsed). `--model-invocable` and `--user-invocable` are independent; both flags keep skills that match both (typically `both`).
637
645
 
646
+ ```bash
647
+ asm tag add code-review testing cli
648
+ asm tag remove code-review automation
649
+ asm list --tag cli --tag testing
650
+ asm search code --tag cli,testing
651
+ ```
652
+
653
+ Tags are local overlays (not written into `SKILL.md`). `--tag` requires every listed tag (AND). The catalog UI `TagFilter` uses the same AND matching and stores selections in `?tag=`.
654
+
638
655
  ```bash
639
656
  asm search "code review" --json
640
657
  ```
@@ -1070,7 +1087,7 @@ asm/
1070
1087
  | [Security](SECURITY.md) | Vulnerability reporting |
1071
1088
  | [Code of Conduct](CODE_OF_CONDUCT.md) | Community guidelines |
1072
1089
 
1073
- **Landing page:** [luongnv.com/asm](https://luongnv.com/asm/) — catalog, bundles, author/repo stats, filtered search.
1090
+ **Landing page:** [luongnv.com/asm](https://luongnv.com/asm/) — catalog, bundles, author/repo stats, filtered search, and catalog `TagFilter` (AND, `?tag=`).
1074
1091
 
1075
1092
  </details>
1076
1093
 
@@ -1100,7 +1117,7 @@ asm/
1100
1117
 
1101
1118
  ## Roadmap
1102
1119
 
1103
- [Project kanban](https://github.com/users/luongnv89/projects/6) · [prd.md](prd.md) · [tasks.md](tasks.md)
1120
+ [Project kanban](https://github.com/users/luongnv89/projects/6)
1104
1121
 
1105
1122
  ## Contributing
1106
1123