agentinit 1.12.1 → 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 +22 -0
- package/README.md +11 -1
- package/dist/cli.js +1050 -12659
- package/dist/commands/plugins.d.ts.map +1 -1
- package/dist/commands/plugins.js +239 -79
- package/dist/commands/plugins.js.map +1 -1
- package/dist/commands/skills.d.ts.map +1 -1
- package/dist/commands/skills.js +93 -88
- package/dist/commands/skills.js.map +1 -1
- package/dist/core/marketplaceRegistry.d.ts.map +1 -1
- package/dist/core/marketplaceRegistry.js +7 -0
- package/dist/core/marketplaceRegistry.js.map +1 -1
- package/dist/core/pluginManager.d.ts +39 -1
- package/dist/core/pluginManager.d.ts.map +1 -1
- package/dist/core/pluginManager.js +472 -41
- package/dist/core/pluginManager.js.map +1 -1
- package/dist/core/skillsManager.d.ts +1 -0
- package/dist/core/skillsManager.d.ts.map +1 -1
- package/dist/core/skillsManager.js +35 -6
- package/dist/core/skillsManager.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 +23 -0
- package/dist/types/plugins.d.ts.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
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
|
+
|
|
8
|
+
# [1.13.0](https://github.com/agentinit/agentinit/compare/v1.12.1...v1.13.0) (2026-03-31)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **plugins:** install Claude-native plugin payloads ([24c0188](https://github.com/agentinit/agentinit/commit/24c0188f5e2f148b53937975bbfcbc83064dc7e8))
|
|
14
|
+
|
|
1
15
|
## [1.12.1](https://github.com/agentinit/agentinit/compare/v1.12.0...v1.12.1) (2026-03-31)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -68,12 +82,20 @@
|
|
|
68
82
|
|
|
69
83
|
## Unreleased
|
|
70
84
|
|
|
85
|
+
### Features
|
|
86
|
+
|
|
87
|
+
* support the `openai` marketplace for skills and plugin installs
|
|
88
|
+
* warn and fall back to unverified GitHub repos for marketplace misses like `openai/codex-plugin-cc`
|
|
89
|
+
* install Claude Code-native plugin payloads during `plugins install` when Claude-only components are detected and Claude Code is targeted
|
|
90
|
+
|
|
71
91
|
### Bug Fixes
|
|
72
92
|
|
|
73
93
|
* fix plugin scope handling for global MCP installs/removals and targeted removals
|
|
74
94
|
* preserve revert semantics for canonical project skills and keep `skills remove` project-scoped by default
|
|
75
95
|
* prevent `skills remove` from deleting shared native skill paths that are still used by another agent
|
|
76
96
|
* update docs and onboarding to the `mcp add|verify`, `rules add`, and `skills add` command model
|
|
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
|
|
77
99
|
|
|
78
100
|
# [1.7.0](https://github.com/agentinit/agentinit/compare/v1.6.0...v1.7.0) (2025-10-17)
|
|
79
101
|
|
package/README.md
CHANGED
|
@@ -180,6 +180,10 @@ agentinit skills add ./skills
|
|
|
180
180
|
# Install marketplace-hosted skills explicitly
|
|
181
181
|
agentinit skills add claude/skill-creator
|
|
182
182
|
agentinit skills add skill-creator --from claude
|
|
183
|
+
agentinit skills add openai/gh-address-comments
|
|
184
|
+
|
|
185
|
+
# Repo-shaped marketplace misses warn and fall back to GitHub
|
|
186
|
+
agentinit skills add openai/codex-plugin-cc
|
|
183
187
|
|
|
184
188
|
# Install selected skills globally for a specific agent
|
|
185
189
|
agentinit skills add owner/repo --global --agent claude --skill openai-docs
|
|
@@ -202,6 +206,8 @@ Bare skill names default to the public skills catalog used by the open agent ski
|
|
|
202
206
|
|
|
203
207
|
Marketplace-backed `skills add` installs only the discovered skills. If a marketplace source also contains MCP servers or other portable components, AgentInit warns and points you to `agentinit plugins install ...` for the full install.
|
|
204
208
|
|
|
209
|
+
If a marketplace lookup misses and the source still looks like a GitHub repository, AgentInit warns and tries the matching GitHub repo directly as an unverified fallback. This covers repos like `openai/codex-plugin-cc` that are not part of the curated OpenAI skills catalog.
|
|
210
|
+
|
|
205
211
|
### `agentinit plugins`
|
|
206
212
|
|
|
207
213
|
Install, inspect, search, and remove portable plugins from explicit marketplace sources, GitHub repositories, or local paths.
|
|
@@ -215,6 +221,7 @@ agentinit plugins search code-review --from claude
|
|
|
215
221
|
# Install from a marketplace explicitly
|
|
216
222
|
agentinit plugins install claude/code-review
|
|
217
223
|
agentinit plugins install code-review --from claude
|
|
224
|
+
agentinit plugins install openai/codex-plugin-cc
|
|
218
225
|
|
|
219
226
|
# Install from GitHub or a local path
|
|
220
227
|
agentinit plugins install owner/repo
|
|
@@ -230,7 +237,10 @@ agentinit plugins remove code-review
|
|
|
230
237
|
- Marketplace installs are explicit by design. Bare names like `agentinit plugins install code-review` are rejected.
|
|
231
238
|
- Use `<marketplace>/<plugin>` or `--from <marketplace>` when installing from a marketplace.
|
|
232
239
|
- `plugins search` also requires `--from <marketplace>`.
|
|
233
|
-
-
|
|
240
|
+
- Implemented marketplaces today include `claude` (Anthropic's Claude plugin marketplace) and `openai` (the OpenAI Codex skills catalog).
|
|
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 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
|
+
- Claude-native plugin payloads are user-scoped and stored under `~/.claude/plugins`, even when the AgentInit install itself is project-scoped.
|
|
234
244
|
|
|
235
245
|
### `agentinit revert`
|
|
236
246
|
|