agentinit 1.17.1 → 1.18.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/CHANGELOG.md +15 -0
- package/README.md +8 -2
- package/dist/cli.js +307 -207
- package/dist/commands/plugins.d.ts.map +1 -1
- package/dist/commands/plugins.js +194 -145
- package/dist/commands/plugins.js.map +1 -1
- package/dist/commands/skills.d.ts.map +1 -1
- package/dist/commands/skills.js +43 -48
- 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/dist/utils/promptUtils.d.ts +26 -0
- package/dist/utils/promptUtils.d.ts.map +1 -0
- package/dist/utils/promptUtils.js +65 -0
- package/dist/utils/promptUtils.js.map +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [1.18.0](https://github.com/agentinit/agentinit/compare/v1.17.2...v1.18.0) (2026-04-04)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **cli:** support selecting all bundled plugins ([2e533d7](https://github.com/agentinit/agentinit/commit/2e533d7bea4d6fd4c0c2a74982b169e80d9192bd))
|
|
7
|
+
|
|
8
|
+
## [1.17.2](https://github.com/agentinit/agentinit/compare/v1.17.1...v1.17.2) (2026-04-02)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* handle multi-bundle plugin selection safely ([840b75d](https://github.com/agentinit/agentinit/commit/840b75d765defe9118f4cb79fa402a7310171396))
|
|
14
|
+
|
|
1
15
|
## [1.17.1](https://github.com/agentinit/agentinit/compare/v1.17.0...v1.17.1) (2026-04-02)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -177,6 +191,7 @@
|
|
|
177
191
|
* fix plugin scope handling for global MCP installs/removals and targeted removals
|
|
178
192
|
* preserve revert semantics for canonical project skills and keep `skills remove` project-scoped by default
|
|
179
193
|
* prevent `skills remove` from deleting shared native skill paths that are still used by another agent
|
|
194
|
+
* support `--all` when listing or installing from multi-plugin Claude bundles and document the updated multiselect shortcut
|
|
180
195
|
* update docs and onboarding to the `mcp add|verify`, `rules add`, and `skills add` command model
|
|
181
196
|
* parse Claude Code marketplace bundle repos like `openai/codex-plugin-cc` when installing portable skills or plugins
|
|
182
197
|
* keep interactive plugin target defaults on all detected agents, warn clearly when Claude-native payloads are skipped, and reuse the previewed remote source during install
|
package/README.md
CHANGED
|
@@ -208,13 +208,16 @@ agentinit skills add owner/repo --global --agent agents
|
|
|
208
208
|
# Force copied installs instead of canonical symlink installs
|
|
209
209
|
agentinit skills add ./skills --copy
|
|
210
210
|
|
|
211
|
+
# Install every bundled plugin from a multi-plugin Claude bundle
|
|
212
|
+
agentinit skills add owner/repo --all
|
|
213
|
+
|
|
211
214
|
# Review and clean up installed skills
|
|
212
215
|
agentinit skills list
|
|
213
216
|
agentinit skills list --agent agents
|
|
214
217
|
agentinit skills remove openai-docs
|
|
215
218
|
```
|
|
216
219
|
|
|
217
|
-
If a GitHub or local Claude bundle contains multiple plugins, `agentinit skills add` prompts you to choose
|
|
220
|
+
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, `A` to select or deselect all, and `Enter` to confirm. Use `--all` to skip the prompt and install or inspect every bundled plugin. In non-interactive `--yes` mode, ambiguous multi-plugin bundles still fail unless `--all` is provided.
|
|
218
221
|
|
|
219
222
|
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
223
|
|
|
@@ -245,6 +248,9 @@ agentinit plugins install owner/repo
|
|
|
245
248
|
agentinit plugins install ./plugins/code-review
|
|
246
249
|
agentinit plugins install ./plugins/code-review --copy-skills
|
|
247
250
|
|
|
251
|
+
# Install every bundled plugin from a multi-plugin Claude bundle
|
|
252
|
+
agentinit plugins install owner/repo --all
|
|
253
|
+
|
|
248
254
|
# Inspect and remove installed plugins
|
|
249
255
|
agentinit plugins list
|
|
250
256
|
agentinit plugins remove code-review
|
|
@@ -252,7 +258,7 @@ agentinit plugins remove code-review
|
|
|
252
258
|
|
|
253
259
|
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
260
|
|
|
255
|
-
If a GitHub or local Claude bundle contains multiple plugins, `agentinit plugins install` prompts you to choose
|
|
261
|
+
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, `A` to select or deselect all, and `Enter` to confirm. Use `--all` to skip the prompt and install or inspect every bundled plugin. In non-interactive `--yes` mode, ambiguous multi-plugin bundles still fail unless `--all` is provided.
|
|
256
262
|
|
|
257
263
|
### `agentinit config`
|
|
258
264
|
|