agentinit 1.17.0 → 1.17.2
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/CHANGELOG.md +14 -0
- package/README.md +4 -0
- package/dist/cli.js +379 -96
- package/dist/commands/plugins.d.ts.map +1 -1
- package/dist/commands/plugins.js +251 -59
- package/dist/commands/plugins.js.map +1 -1
- package/dist/commands/skills.d.ts.map +1 -1
- package/dist/commands/skills.js +94 -15
- package/dist/commands/skills.js.map +1 -1
- package/dist/core/pluginManager.d.ts +21 -3
- package/dist/core/pluginManager.d.ts.map +1 -1
- package/dist/core/pluginManager.js +24 -3
- package/dist/core/pluginManager.js.map +1 -1
- package/dist/core/skillsManager.d.ts +2 -0
- package/dist/core/skillsManager.d.ts.map +1 -1
- package/dist/core/skillsManager.js +7 -2
- package/dist/core/skillsManager.js.map +1 -1
- package/dist/types/skills.d.ts +1 -0
- package/dist/types/skills.d.ts.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [1.17.2](https://github.com/agentinit/agentinit/compare/v1.17.1...v1.17.2) (2026-04-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* handle multi-bundle plugin selection safely ([840b75d](https://github.com/agentinit/agentinit/commit/840b75d765defe9118f4cb79fa402a7310171396))
|
|
7
|
+
|
|
8
|
+
## [1.17.1](https://github.com/agentinit/agentinit/compare/v1.17.0...v1.17.1) (2026-04-02)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* preserve multi-plugin bundle selection ([08e17d3](https://github.com/agentinit/agentinit/commit/08e17d3fd91049d22d846ffb54375f751f43b8b9))
|
|
14
|
+
|
|
1
15
|
# [1.17.0](https://github.com/agentinit/agentinit/compare/v1.16.2...v1.17.0) (2026-04-02)
|
|
2
16
|
|
|
3
17
|
|
package/README.md
CHANGED
|
@@ -214,6 +214,8 @@ agentinit skills list --agent agents
|
|
|
214
214
|
agentinit skills remove openai-docs
|
|
215
215
|
```
|
|
216
216
|
|
|
217
|
+
If a GitHub or local Claude bundle contains multiple plugins, `agentinit skills add` prompts you to choose one or more bundled plugins to inspect or install. Press `Space` to select and `Enter` to confirm. In non-interactive `--yes` mode, ambiguous multi-plugin bundles fail instead of prompting.
|
|
218
|
+
|
|
217
219
|
Skills are installed into a canonical store by default (`.agents/skills/` for project, `~/.agents/skills/` for global), with agent-specific paths symlinked automatically. Bare skill names resolve from your configured default marketplace, falling back to the public catalog at `vercel-labs/agent-skills`. Use `./name` for local paths, `owner/repo` for GitHub repos, or `--from <marketplace>` for explicit marketplace sources.
|
|
218
220
|
|
|
219
221
|
### `agentinit plugins`
|
|
@@ -250,6 +252,8 @@ agentinit plugins remove code-review
|
|
|
250
252
|
|
|
251
253
|
Bare plugin names resolve through your configured default marketplace. Built-in marketplaces include `claude` and `openai`; add custom ones with `agentinit config marketplaces add`. For Claude-format plugins, native bundles are installed into `~/.claude/plugins` alongside portable skill and MCP installs.
|
|
252
254
|
|
|
255
|
+
If a GitHub or local Claude bundle contains multiple plugins, `agentinit plugins install` prompts you to choose one or more bundled plugins to inspect or install. Press `Space` to select and `Enter` to confirm. In non-interactive `--yes` mode, ambiguous multi-plugin bundles fail instead of prompting.
|
|
256
|
+
|
|
253
257
|
### `agentinit config`
|
|
254
258
|
|
|
255
259
|
Manage user-level marketplace and trust settings in `~/.agentinit/config.json`.
|