agent-skill-manager 2.7.0 → 2.8.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 (44) hide show
  1. package/README.md +34 -0
  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 +213 -211
  34. package/dist/chunk-54DE5T53.js +19 -0
  35. package/dist/chunk-6PA2GSCN.js +3 -0
  36. package/dist/chunk-NGQYBLQE.js +3 -0
  37. package/dist/{config-55HAAFSH.js → config-7PXPKO4K.js} +1 -1
  38. package/dist/lock-MDX7A2DF.js +2 -0
  39. package/dist/{src-VA7JX53D.js → src-S3FQI2MC.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/lock-SOHBB4N3.js +0 -2
package/README.md CHANGED
@@ -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>