agentinit 1.13.0 → 1.13.1
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 +8 -0
- package/README.md +1 -1
- package/dist/cli.js +537 -12526
- package/dist/commands/plugins.d.ts.map +1 -1
- package/dist/commands/plugins.js +229 -82
- package/dist/commands/plugins.js.map +1 -1
- package/dist/core/pluginManager.d.ts +12 -1
- package/dist/core/pluginManager.d.ts.map +1 -1
- package/dist/core/pluginManager.js +126 -51
- package/dist/core/pluginManager.js.map +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/plugins.d.ts +10 -0
- package/dist/types/plugins.d.ts.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.13.1](https://github.com/agentinit/agentinit/compare/v1.13.0...v1.13.1) (2026-03-31)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **plugins:** keep default targets and reuse preview context ([0ae11ae](https://github.com/agentinit/agentinit/commit/0ae11aee3fc0c40f2eec0b8b9c6f6a4e45ed949a))
|
|
7
|
+
|
|
1
8
|
# [1.13.0](https://github.com/agentinit/agentinit/compare/v1.12.1...v1.13.0) (2026-03-31)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -88,6 +95,7 @@
|
|
|
88
95
|
* prevent `skills remove` from deleting shared native skill paths that are still used by another agent
|
|
89
96
|
* update docs and onboarding to the `mcp add|verify`, `rules add`, and `skills add` command model
|
|
90
97
|
* parse Claude Code marketplace bundle repos like `openai/codex-plugin-cc` when installing portable skills or plugins
|
|
98
|
+
* 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
|
|
91
99
|
|
|
92
100
|
# [1.7.0](https://github.com/agentinit/agentinit/compare/v1.6.0...v1.7.0) (2025-10-17)
|
|
93
101
|
|
package/README.md
CHANGED
|
@@ -239,7 +239,7 @@ agentinit plugins remove code-review
|
|
|
239
239
|
- `plugins search` also requires `--from <marketplace>`.
|
|
240
240
|
- Implemented marketplaces today include `claude` (Anthropic's Claude plugin marketplace) and `openai` (the OpenAI Codex skills catalog).
|
|
241
241
|
- If a marketplace lookup misses but the source still looks like `owner/repo`, AgentInit warns and tries that GitHub repository directly.
|
|
242
|
-
- For Claude-format plugins, `plugins install` still installs portable skills and MCP servers for the selected agents. If Claude Code-native components are also present, AgentInit
|
|
242
|
+
- For Claude-format plugins, `plugins install` still installs portable skills and MCP servers for the selected agents. If Claude Code-native components are also present, AgentInit previews that compatibility before target selection. The native plugin payload installs only when `claude` is one of the selected targets; otherwise AgentInit warns that the Claude-only parts were skipped. When the native payload is installed, AgentInit reminds you to run `/reload-plugins`.
|
|
243
243
|
- Claude-native plugin payloads are user-scoped and stored under `~/.claude/plugins`, even when the AgentInit install itself is project-scoped.
|
|
244
244
|
|
|
245
245
|
### `agentinit revert`
|