agentinit 1.14.0 → 1.15.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.15.0](https://github.com/agentinit/agentinit/compare/v1.14.0...v1.15.0) (2026-04-01)
2
+
3
+
4
+ ### Features
5
+
6
+ * **config:** add user marketplaces and verified repos ([d902824](https://github.com/agentinit/agentinit/commit/d902824db3e7bc8c8c3577d31bd73c44e3da767d))
7
+
1
8
  # [1.14.0](https://github.com/agentinit/agentinit/compare/v1.13.4...v1.14.0) (2026-03-31)
2
9
 
3
10
 
package/README.md CHANGED
@@ -11,7 +11,7 @@ AgentInit transforms AI agent configuration from a fragmented, manual process in
11
11
  - **🔄 Bidirectional Sync**: Keep agent configurations in sync across Claude, Cursor, Windsurf, and more
12
12
  - **📦 MCP Management**: Configure, inspect, and verify Model Context Protocol servers
13
13
  - **📋 Rules Templates**: Apply coding best practices with predefined rule templates (Git, testing, docs, linting)
14
- - **🔌 Plugin Marketplace**: Install portable skills and MCP bundles from explicit marketplace sources
14
+ - **🔌 Plugin Marketplace**: Install portable skills and MCP bundles from built-in or custom marketplaces
15
15
  - **⚙️ Project Templates**: Pre-built templates for web apps, CLI tools, libraries, and more
16
16
  - **🎯 Stack-Aware Guidance**: Customized instructions based on your technology stack
17
17
 
@@ -178,7 +178,9 @@ Install, list, and remove reusable agent skills from marketplaces, local paths,
178
178
  # Inspect a source before installing
179
179
  agentinit skills add owner/repo --list
180
180
 
181
- # Install a public skill from the default catalog (`vercel-labs/agent-skills`)
181
+ # Install a bare skill name
182
+ # Uses your configured default marketplace when one is set,
183
+ # otherwise falls back to the public catalog (`vercel-labs/agent-skills`)
182
184
  agentinit skills add vercel-react-best-practices
183
185
 
184
186
  # Install all discovered skills for detected agents using canonical storage
@@ -215,11 +217,11 @@ Hermes follows the same model: project skills come from `.agents/skills/`, globa
215
217
 
216
218
  Some agents share the same native skills directory. For example, Claude Code and Claude Desktop both use `~/.claude/skills/`, so `skills remove --agent ...` will skip deleting that shared path while another agent still depends on it.
217
219
 
218
- Bare skill names default to the public skills catalog used by the open agent skills ecosystem: `vercel-labs/agent-skills`. Use `./name` for a local path, `owner/repo` for an explicit GitHub repository, or `--from <marketplace>` / `<marketplace>/<name>` for marketplace-backed sources.
220
+ Bare skill names resolve from your configured default marketplace when one is set. Without a configured default, AgentInit falls back to the public skills catalog used by the open agent skills ecosystem: `vercel-labs/agent-skills`. Use `./name` for a local path, `owner/repo` for an explicit GitHub repository, or `--from <marketplace>` / `<marketplace>/<name>` for marketplace-backed sources.
219
221
 
220
222
  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.
221
223
 
222
- If a marketplace lookup misses and the source still looks like a GitHub repository, AgentInit warns and tries the matching GitHub repo directly as a fallback. Allowlisted repos like `openai/codex-plugin-cc` are marked as verified; other fallback repos remain explicitly unverified.
224
+ If a marketplace lookup misses and the source still looks like a GitHub repository, AgentInit warns and tries the matching GitHub repo directly as a fallback. Built-in verified repos like `openai/codex-plugin-cc` are marked as verified, and you can add your own exact `owner/repo` entries with `agentinit config verified-repos add ...`. Other fallback repos remain explicitly unverified.
223
225
 
224
226
  ### `agentinit plugins`
225
227
 
@@ -231,9 +233,16 @@ Install, inspect, search, and remove portable plugins from explicit marketplace
231
233
  agentinit plugins search --from claude
232
234
  agentinit plugins search code-review --from claude
233
235
 
236
+ # Search through your configured default marketplace
237
+ agentinit plugins search code-review
238
+
234
239
  # Install from a marketplace explicitly
235
240
  agentinit plugins install claude/code-review
236
241
  agentinit plugins install code-review --from claude
242
+
243
+ # Bare plugin names resolve through your configured default marketplace
244
+ # when one is set, otherwise through the first available marketplace
245
+ agentinit plugins install code-review
237
246
  agentinit plugins install openai/codex-plugin-cc
238
247
 
239
248
  # Install from GitHub or a local path
@@ -247,14 +256,41 @@ agentinit plugins remove code-review
247
256
  ```
248
257
 
249
258
  **Marketplace Rules:**
250
- - Marketplace installs are explicit by design. Bare names like `agentinit plugins install code-review` are rejected.
251
259
  - Use `<marketplace>/<plugin>` or `--from <marketplace>` when installing from a marketplace.
252
- - `plugins search` also requires `--from <marketplace>`.
260
+ - Bare plugin installs like `agentinit plugins install code-review` resolve through your configured default marketplace when one is set. Without a configured default, AgentInit falls back to the first available marketplace (`agentinit` by default).
261
+ - `plugins search` uses your configured default marketplace when one is set. Without a configured default, it still requires `--from <marketplace>`.
253
262
  - Implemented marketplaces today include `claude` (Anthropic's Claude plugin marketplace) and `openai` (the OpenAI Codex skills catalog).
254
- - If a marketplace lookup misses but the source still looks like `owner/repo`, AgentInit warns and tries that GitHub repository directly.
263
+ - You can add your own marketplaces with `agentinit config marketplaces add <identifier> <repo-url>`.
264
+ - If a marketplace lookup misses but the source still looks like `owner/repo`, AgentInit warns and tries that GitHub repository directly. Exact repos added with `agentinit config verified-repos add <owner/repo>` are labeled as verified during that fallback.
255
265
  - 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`.
256
266
  - Claude-native plugin payloads are user-scoped and stored under `~/.claude/plugins`, even when the AgentInit install itself is project-scoped.
257
267
 
268
+ ### `agentinit config`
269
+
270
+ Manage user-level marketplace and trust settings in `~/.agentinit/config.json`.
271
+
272
+ **Examples:**
273
+ ```bash
274
+ # Review built-in and custom marketplaces
275
+ agentinit config marketplaces list
276
+
277
+ # Add a custom marketplace and make it the default
278
+ agentinit config marketplaces add acme https://github.com/acme/marketplace.git --name "Acme Marketplace" --default
279
+
280
+ # Switch the default marketplace to a built-in registry
281
+ agentinit config marketplaces default claude
282
+ agentinit config marketplaces clear-default
283
+
284
+ # Manage exact verified GitHub fallback repos
285
+ agentinit config verified-repos list
286
+ agentinit config verified-repos add acme/private-plugin
287
+ agentinit config verified-repos remove acme/private-plugin
288
+ ```
289
+
290
+ Custom marketplaces use the standard AgentInit repository layout: `skills`, `mcps`, and `rules`.
291
+
292
+ Verified GitHub repos must be exact `owner/repo` entries. They only affect how AgentInit labels marketplace-to-GitHub fallback sources; they do not bypass install parsing or other safety checks.
293
+
258
294
  ### `agentinit revert`
259
295
 
260
296
  Revert files and backups managed by `agentinit apply` or `agentinit sync`.