agent-skill-manager 2.8.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.
- package/README.md +9 -5
- package/dist/agent-skill-manager.js +249 -183
- package/dist/chunk-7DMA7RUC.js +19 -0
- package/dist/{chunk-NGQYBLQE.js → chunk-APSM2WG3.js} +1 -1
- package/dist/chunk-GHPE6SB3.js +3 -0
- package/dist/config-FRM3YOMA.js +2 -0
- package/dist/{lock-MDX7A2DF.js → lock-6S53S4SC.js} +1 -1
- package/dist/{src-S3FQI2MC.js → src-H2QOCGTV.js} +1 -1
- package/package.json +1 -1
- package/dist/chunk-54DE5T53.js +0 -19
- package/dist/chunk-6PA2GSCN.js +0 -3
- package/dist/config-7PXPKO4K.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
|
-
|
|
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.
|
|
@@ -1204,10 +1204,14 @@ agent-skill-manager/
|
|
|
1204
1204
|
|
|
1205
1205
|
### Dependencies
|
|
1206
1206
|
|
|
1207
|
-
| Library
|
|
1208
|
-
|
|
|
1209
|
-
| [
|
|
1210
|
-
| [
|
|
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 |
|
|
1211
1215
|
|
|
1212
1216
|
---
|
|
1213
1217
|
|