agentinit 1.17.1 → 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 +7 -0
- package/README.md +2 -2
- package/dist/cli.js +256 -176
- package/dist/commands/plugins.d.ts.map +1 -1
- package/dist/commands/plugins.js +201 -132
- package/dist/commands/plugins.js.map +1 -1
- package/dist/commands/skills.d.ts.map +1 -1
- package/dist/commands/skills.js +49 -34
- package/dist/commands/skills.js.map +1 -1
- package/dist/core/pluginManager.d.ts +2 -0
- package/dist/core/pluginManager.d.ts.map +1 -1
- package/dist/core/pluginManager.js +7 -1
- package/dist/core/pluginManager.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
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
|
+
|
|
1
8
|
## [1.17.1](https://github.com/agentinit/agentinit/compare/v1.17.0...v1.17.1) (2026-04-02)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -214,7 +214,7 @@ 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
|
|
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
218
|
|
|
219
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.
|
|
220
220
|
|
|
@@ -252,7 +252,7 @@ agentinit plugins remove code-review
|
|
|
252
252
|
|
|
253
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.
|
|
254
254
|
|
|
255
|
-
If a GitHub or local Claude bundle contains multiple plugins, `agentinit plugins install` prompts you to choose
|
|
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
256
|
|
|
257
257
|
### `agentinit config`
|
|
258
258
|
|