agent-skill-manager 2.17.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 (36) hide show
  1. package/README.md +16 -2
  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/ayghri_i-have-adhd.json +185 -0
  10. package/data/skill-index/blader_humanizer.json +185 -0
  11. package/data/skill-index/cathrynlavery_diagram-design.json +185 -0
  12. package/data/skill-index/charlie947_answer-first.json +185 -0
  13. package/data/skill-index/charlie947_voiceprint.json +185 -0
  14. package/data/skill-index/google-labs-code_design.md.json +891 -0
  15. package/data/skill-index/hardikpandya_stop-slop.json +185 -0
  16. package/data/skill-index/mattpocock_skills.json +482 -114
  17. package/data/skill-index/multica-ai_andrej-karpathy-skills.json +185 -0
  18. package/data/skill-index/nextlevelbuilder_ui-ux-pro-max-skill.json +44 -44
  19. package/data/skill-index/obra_superpowers.json +49 -49
  20. package/data/skill-index/pbakaus_impeccable.json +185 -0
  21. package/data/skill-index/tt-a1i_archify.json +185 -0
  22. package/data/skill-index/zarazhangrui_frontend-slides.json +185 -0
  23. package/data/skill-index-resources.json +136 -10
  24. package/dist/agent-skill-manager.js +283 -239
  25. package/dist/chunk-54VC5E5G.js +23 -0
  26. package/dist/chunk-ESKBKSXS.js +2 -0
  27. package/dist/{chunk-LS24FFOX.js → chunk-VGQYV246.js} +2 -2
  28. package/dist/{chunk-LH2C3PE7.js → chunk-ZAOVB3X2.js} +1 -1
  29. package/dist/config-PQRMSV7F.js +2 -0
  30. package/dist/{lock-NN2MADX7.js → lock-RVOMV2LT.js} +1 -1
  31. package/dist/spawn-JDSII5L3.js +2 -0
  32. package/dist/src-SP66WR5V.js +119 -0
  33. package/package.json +1 -1
  34. package/dist/chunk-BQ4RW237.js +0 -20
  35. package/dist/config-AZYQEQOQ.js +0 -2
  36. package/dist/src-BD3KFE5H.js +0 -119
package/README.md CHANGED
@@ -72,6 +72,7 @@ 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 |
@@ -132,8 +133,10 @@ Node.js 22+ required. Optional TUI: run `asm` with no arguments.
132
133
  | Live dev via symlink | `asm link ./my-skill -p claude` |
133
134
  | Publish to registry | `asm publish ./my-skill --yes` |
134
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` |
135
138
 
136
- 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=`).
137
140
 
138
141
  ## Attention budget
139
142
 
@@ -554,6 +557,7 @@ Multiple `asm` binaries on `PATH` can shadow a fresh upgrade.
554
557
  | ------------------------------- | ----------------------------------------- | ----------------------------------------- |
555
558
  | `asm list` | List all discovered skills |
556
559
  | `asm search <query>` | Search by name/description/provider |
560
+ | `asm tag add\|remove` | Edit local tags on an installed skill |
557
561
  | `asm inspect <skill-name>` | Show detailed info for a skill |
558
562
  | `asm get <skill>` | Print a skill's body, install nothing |
559
563
  | `asm install <source>` | Install from GitHub or registry |
@@ -609,6 +613,7 @@ Multiple `asm` binaries on `PATH` can shadow a fresh upgrade.
609
613
  --machine Stable machine-readable JSON envelope (v1)
610
614
  -s, --scope <scope> global, project, or both
611
615
  -p, --tool <name> Filter by tool (list, search)
616
+ --tag <tag[,tag]> Filter by all tags; repeatable (list, search)
612
617
  --sort <field> name, version, or location
613
618
  --flat Show one row per tool instance (list, search)
614
619
  --model-invocable Only skills the model can invoke
@@ -638,6 +643,15 @@ asm list --model-invocable --user-invocable
638
643
 
639
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`).
640
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
+
641
655
  ```bash
642
656
  asm search "code review" --json
643
657
  ```
@@ -1073,7 +1087,7 @@ asm/
1073
1087
  | [Security](SECURITY.md) | Vulnerability reporting |
1074
1088
  | [Code of Conduct](CODE_OF_CONDUCT.md) | Community guidelines |
1075
1089
 
1076
- **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=`).
1077
1091
 
1078
1092
  </details>
1079
1093