agentinit 1.12.1 → 1.13.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 CHANGED
@@ -1,3 +1,10 @@
1
+ # [1.13.0](https://github.com/agentinit/agentinit/compare/v1.12.1...v1.13.0) (2026-03-31)
2
+
3
+
4
+ ### Features
5
+
6
+ * **plugins:** install Claude-native plugin payloads ([24c0188](https://github.com/agentinit/agentinit/commit/24c0188f5e2f148b53937975bbfcbc83064dc7e8))
7
+
1
8
  ## [1.12.1](https://github.com/agentinit/agentinit/compare/v1.12.0...v1.12.1) (2026-03-31)
2
9
 
3
10
 
@@ -68,12 +75,19 @@
68
75
 
69
76
  ## Unreleased
70
77
 
78
+ ### Features
79
+
80
+ * support the `openai` marketplace for skills and plugin installs
81
+ * warn and fall back to unverified GitHub repos for marketplace misses like `openai/codex-plugin-cc`
82
+ * install Claude Code-native plugin payloads during `plugins install` when Claude-only components are detected and Claude Code is targeted
83
+
71
84
  ### Bug Fixes
72
85
 
73
86
  * fix plugin scope handling for global MCP installs/removals and targeted removals
74
87
  * preserve revert semantics for canonical project skills and keep `skills remove` project-scoped by default
75
88
  * prevent `skills remove` from deleting shared native skill paths that are still used by another agent
76
89
  * update docs and onboarding to the `mcp add|verify`, `rules add`, and `skills add` command model
90
+ * parse Claude Code marketplace bundle repos like `openai/codex-plugin-cc` when installing portable skills or plugins
77
91
 
78
92
  # [1.7.0](https://github.com/agentinit/agentinit/compare/v1.6.0...v1.7.0) (2025-10-17)
79
93
 
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
- - Only `claude` is implemented today, mapped to Anthropic's `claude-plugins-official` marketplace.
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 installs the native plugin payload for `claude` only, warns that those parts are Claude-only, and 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