agent-skill-manager 2.7.0 → 2.9.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 (45) hide show
  1. package/README.md +43 -5
  2. package/data/skill-index/Affitor_affiliate-skills.json +1764 -160
  3. package/data/skill-index/Eronred_aso-skills.json +1365 -121
  4. package/data/skill-index/GPTomics_bioSkills.json +22236 -10797
  5. package/data/skill-index/Galaxy-Dawn_claude-scholar.json +2346 -232
  6. package/data/skill-index/Imbad0202_academic-research-skills.json +314 -42
  7. package/data/skill-index/K-Dense-AI_claude-scientific-skills.json +3634 -447
  8. package/data/skill-index/Leonxlnx_taste-skill.json +429 -37
  9. package/data/skill-index/Master-cai_Research-Paper-Writing-Skills.json +6 -5
  10. package/data/skill-index/MiniMax-AI_skills.json +804 -70
  11. package/data/skill-index/Paramchoudhary_ResumeSkills.json +465 -61
  12. package/data/skill-index/affaan-m_everything-claude-code.json +13583 -3818
  13. package/data/skill-index/alirezarezvani_claude-skills.json +22302 -6760
  14. package/data/skill-index/anthropics_skills.json +531 -55
  15. package/data/skill-index/antonbabenko_terraform-skill.json +12 -11
  16. package/data/skill-index/bytedance_deer-flow.json +676 -68
  17. package/data/skill-index/coreyhaines31_marketingskills.json +2005 -760
  18. package/data/skill-index/entireio_skills.json +151 -23
  19. package/data/skill-index/github_awesome-copilot.json +7409 -3541
  20. package/data/skill-index/google_skills.json +1000 -149
  21. package/data/skill-index/heygen-com_hyperframes.json +743 -41
  22. package/data/skill-index/himself65_finance-skills.json +1169 -94
  23. package/data/skill-index/kemiljk_fluid-design.json +6 -5
  24. package/data/skill-index/kepano_obsidian-skills.json +126 -16
  25. package/data/skill-index/luongnv89_skills.json +1210 -94
  26. package/data/skill-index/mattpocock_skills.json +838 -105
  27. package/data/skill-index/nextlevelbuilder_ui-ux-pro-max-skill.json +414 -22
  28. package/data/skill-index/obra_superpowers.json +375 -43
  29. package/data/skill-index/romainsimon_paperasse.json +377 -21
  30. package/data/skill-index/sickn33_antigravity-awesome-skills.json +11342 -5578
  31. package/data/skill-index/slavingia_skills.json +387 -31
  32. package/data/skill-index/warpdotdev_oz-skills.json +474 -46
  33. package/dist/agent-skill-manager.js +279 -211
  34. package/dist/chunk-7DMA7RUC.js +19 -0
  35. package/dist/chunk-APSM2WG3.js +3 -0
  36. package/dist/chunk-GHPE6SB3.js +3 -0
  37. package/dist/config-FRM3YOMA.js +2 -0
  38. package/dist/lock-6S53S4SC.js +2 -0
  39. package/dist/{src-VA7JX53D.js → src-H2QOCGTV.js} +1 -1
  40. package/package.json +4 -2
  41. package/dist/chunk-GOI5LV72.js +0 -3
  42. package/dist/chunk-HG3RG5GM.js +0 -19
  43. package/dist/chunk-PVEAYTE2.js +0 -3
  44. package/dist/config-55HAAFSH.js +0 -2
  45. package/dist/lock-SOHBB4N3.js +0 -2
package/README.md CHANGED
@@ -513,7 +513,7 @@ Need a tool not listed? Add a custom provider entry to the config.
513
513
  Yes. `asm` is MIT licensed and free forever. No accounts, no telemetry, no paywalls.
514
514
 
515
515
  **Is it actively maintained?**
516
- v2.6.2 shipped on May 7, 2026. The project has had 41 releases. Check the [changelog](docs/CHANGELOG.md) for the full history.
516
+ Yes actively developed with frequent tagged releases (44 and counting, latest v2.9.0). Check the [changelog](docs/CHANGELOG.md) for the full history.
517
517
 
518
518
  **Which AI agents does it support?**
519
519
  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.
@@ -585,6 +585,13 @@ asm
585
585
  | `asm index search <query>` | Search indexed skills |
586
586
  | `asm index list` | List indexed repositories |
587
587
  | `asm index remove <owner/repo>` | Remove a repo from the index |
588
+ | `asm bundle list` | List saved or pre-defined bundles (`--predefined`) |
589
+ | `asm bundle install <name>` | Install every skill in a bundle in one pass |
590
+ | `asm bundle create <name>` | Create a bundle from installed skills |
591
+ | `asm bundle show <name>` | Show bundle details and skill list |
592
+ | `asm bundle modify <name>` | Add/remove skills or update bundle metadata |
593
+ | `asm bundle export <name>` | Export a bundle to a JSON file |
594
+ | `asm bundle remove <name>` | Remove a saved bundle |
588
595
  | `asm config show` | Print current config |
589
596
  | `asm config path` | Print config file path |
590
597
  | `asm config reset` | Reset config to defaults |
@@ -699,6 +706,33 @@ asm index ingest github:anthropics/skills
699
706
  asm index search "frontend design" --json
700
707
  ```
701
708
 
709
+ **Skill bundles** — install a curated set of skills in one command. Pre-defined bundles ship with ASM for common workflows (frontend, devops, iOS release, content writing). Browse them at [luongnv.com/asm/bundles](https://luongnv.com/asm/bundles/) or list them locally:
710
+
711
+ ```bash
712
+ asm bundle list --predefined
713
+ ```
714
+
715
+ Install every skill in a pre-defined bundle:
716
+
717
+ ```bash
718
+ asm bundle install frontend-dev
719
+ ```
720
+
721
+ Install from a bundle file (custom or shared):
722
+
723
+ ```bash
724
+ asm bundle install ./my-bundle.json
725
+ ```
726
+
727
+ Build a custom bundle from your installed skills, then export it to share:
728
+
729
+ ```bash
730
+ asm bundle create my-workflow
731
+ asm bundle export my-workflow ./my-workflow.json
732
+ ```
733
+
734
+ A bundle is a JSON file with a `name`, `description`, `author`, and a list of `skills` (each with `name` + `installUrl`). The schema is validated on install — see `src/utils/types.ts` (`BundleManifest`). You can also assemble a custom bundle visually on the website's [/bundles](https://luongnv.com/asm/bundles/) page and export it as JSON.
735
+
702
736
  </details>
703
737
 
704
738
  <details>
@@ -1170,10 +1204,14 @@ agent-skill-manager/
1170
1204
 
1171
1205
  ### Dependencies
1172
1206
 
1173
- | Library | Description |
1174
- | ----------------------------------------------------- | -------------------------------------------------------------------------------------------------- |
1175
- | [@opentui/core](https://github.com/anomalyco/opentui) | TypeScript library on a native Zig core for building terminal user interfaces — powers the asm TUI |
1176
- | [yaml](https://github.com/eemeli/yaml) | JavaScript parser and stringifier for YAML used to parse SKILL.md frontmatter |
1207
+ | Library | Description |
1208
+ | ------------------------------------------------------- | ------------------------------------------------------------------------------- |
1209
+ | [ink](https://github.com/vadimdemedes/ink) | React renderer for interactive command-line apps — powers the asm TUI |
1210
+ | [@inkjs/ui](https://github.com/vadimdemedes/ink-ui) | Prebuilt ink components (inputs, spinners, lists) used across the TUI views |
1211
+ | [react](https://github.com/facebook/react) | UI library backing the ink TUI components and the web catalog |
1212
+ | [react-dom](https://github.com/facebook/react) | React DOM renderer for the browser-based skill catalog |
1213
+ | [react-window](https://github.com/bvaughn/react-window) | Windowed list virtualization for the browser-based skill catalog |
1214
+ | [yaml](https://github.com/eemeli/yaml) | JavaScript parser and stringifier for YAML — used to parse SKILL.md frontmatter |
1177
1215
 
1178
1216
  ---
1179
1217