agent-skill-manager 1.15.1 → 1.17.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.backup.md +1 -1
- package/README.md +22 -1
- package/dist/agent-skill-manager.js +160 -135
- package/dist/{chunk-zzvkjwrx.js → chunk-75kgtp8z.js} +13 -11
- package/dist/{chunk-6t9cpddh.js → chunk-n7f2ekqj.js} +1 -1
- package/dist/{chunk-etgg42ff.js → chunk-t6myftbf.js} +2 -2
- package/package.json +1 -1
package/README.backup.md
CHANGED
|
@@ -168,7 +168,7 @@ Need a tool not listed? Add a custom provider entry to the config.
|
|
|
168
168
|
Yes. `asm` is MIT licensed and free forever. No accounts, no telemetry, no paywalls.
|
|
169
169
|
|
|
170
170
|
**Is it actively maintained?**
|
|
171
|
-
v1.
|
|
171
|
+
v1.17.0 shipped on March 26, 2026. The project has had 26 releases. Check the [changelog](docs/CHANGELOG.md) for the full history.
|
|
172
172
|
|
|
173
173
|
**Which AI agents does it support?**
|
|
174
174
|
17 providers built-in: Claude Code, Codex, OpenClaw, Cursor, Windsurf, Cline, Roo Code, Continue, GitHub Copilot, Aider, OpenCode, Zed, Augment, Amp, Gemini CLI, Google Antigravity, and a generic Agents provider. The first 4 are enabled by default; enable the rest via `asm config edit`. You can also add any custom agent that stores skills as directories with a `SKILL.md` file.
|
package/README.md
CHANGED
|
@@ -360,7 +360,7 @@ Need a tool not listed? Add a custom provider entry to the config.
|
|
|
360
360
|
Yes. `asm` is MIT licensed and free forever. No accounts, no telemetry, no paywalls.
|
|
361
361
|
|
|
362
362
|
**Is it actively maintained?**
|
|
363
|
-
v1.
|
|
363
|
+
v1.17.0 shipped on March 26, 2026. The project has had 26 releases. Check the [changelog](docs/CHANGELOG.md) for the full history.
|
|
364
364
|
|
|
365
365
|
**Which AI agents does it support?**
|
|
366
366
|
17 providers built-in: Claude Code, Codex, OpenClaw, Cursor, Windsurf, Cline, Roo Code, Continue, GitHub Copilot, Aider, OpenCode, Zed, Augment, Amp, Gemini CLI, Google Antigravity, and a generic Agents provider. All 17 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.
|
|
@@ -974,6 +974,27 @@ agent-skill-manager/
|
|
|
974
974
|
|
|
975
975
|
---
|
|
976
976
|
|
|
977
|
+
<!-- NOTE: The single source of truth for acknowledgements data is website/data/acknowledgements.json.
|
|
978
|
+
When updating contributors or dependencies, edit that JSON file first, then sync this section and website/index.html. -->
|
|
979
|
+
|
|
980
|
+
## Acknowledgements
|
|
981
|
+
|
|
982
|
+
### Contributors
|
|
983
|
+
|
|
984
|
+
| Contributor | PRs |
|
|
985
|
+
| ------------------------------------------ | ---------------------------------------------------------------------------------------------------------------- |
|
|
986
|
+
| [@luongnv89](https://github.com/luongnv89) | [38 merged PRs](https://github.com/luongnv89/agent-skill-manager/pulls?q=is%3Apr+is%3Amerged+author%3Aluongnv89) |
|
|
987
|
+
| [@Mordris](https://github.com/Mordris) | [#111](https://github.com/luongnv89/agent-skill-manager/pull/111) |
|
|
988
|
+
|
|
989
|
+
### Dependencies
|
|
990
|
+
|
|
991
|
+
| Library | Description |
|
|
992
|
+
| ----------------------------------------------------- | -------------------------------------------------------------------------------------------------- |
|
|
993
|
+
| [@opentui/core](https://github.com/anomalyco/opentui) | TypeScript library on a native Zig core for building terminal user interfaces — powers the asm TUI |
|
|
994
|
+
| [yaml](https://github.com/eemeli/yaml) | JavaScript parser and stringifier for YAML — used to parse SKILL.md frontmatter |
|
|
995
|
+
|
|
996
|
+
---
|
|
997
|
+
|
|
977
998
|
## Roadmap
|
|
978
999
|
|
|
979
1000
|
Track our progress and upcoming features on the [project kanban board](https://github.com/users/luongnv89/projects/6). See [prd.md](prd.md) for the full product requirements and [tasks.md](tasks.md) for the sprint-based development plan.
|