agentinit 1.14.0 → 1.15.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 +14 -0
- package/README.md +44 -7
- package/dist/cli.js +620 -200
- package/dist/cli.js.map +1 -1
- package/dist/commands/config.d.ts +2 -7
- package/dist/commands/config.d.ts.map +1 -1
- package/dist/commands/config.js +212 -3
- package/dist/commands/config.js.map +1 -1
- package/dist/commands/plugins.d.ts.map +1 -1
- package/dist/commands/plugins.js +5 -3
- package/dist/commands/plugins.js.map +1 -1
- package/dist/core/marketplaceRegistry.d.ts +3 -0
- package/dist/core/marketplaceRegistry.d.ts.map +1 -1
- package/dist/core/marketplaceRegistry.js +45 -2
- package/dist/core/marketplaceRegistry.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 +66 -32
- package/dist/core/pluginManager.js.map +1 -1
- package/dist/core/skillsManager.d.ts.map +1 -1
- package/dist/core/skillsManager.js +12 -1
- package/dist/core/skillsManager.js.map +1 -1
- package/dist/core/userConfig.d.ts +25 -0
- package/dist/core/userConfig.d.ts.map +1 -0
- package/dist/core/userConfig.js +156 -0
- package/dist/core/userConfig.js.map +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [1.15.1](https://github.com/agentinit/agentinit/compare/v1.15.0...v1.15.1) (2026-04-01)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **config:** refresh marketplace cache and fail on invalid ops ([9a9ed4f](https://github.com/agentinit/agentinit/commit/9a9ed4fde7d8ee967927a87dcb18ad406a9c16d1))
|
|
7
|
+
|
|
8
|
+
# [1.15.0](https://github.com/agentinit/agentinit/compare/v1.14.0...v1.15.0) (2026-04-01)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **config:** add user marketplaces and verified repos ([d902824](https://github.com/agentinit/agentinit/commit/d902824db3e7bc8c8c3577d31bd73c44e3da767d))
|
|
14
|
+
|
|
1
15
|
# [1.14.0](https://github.com/agentinit/agentinit/compare/v1.13.4...v1.14.0) (2026-03-31)
|
|
2
16
|
|
|
3
17
|
|
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
|
|
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
|
|
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.
|
|
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,42 @@ 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
|
|
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>`.
|
|
262
|
+
- `plugins search --category <category>` uses marketplace-specific categories. Examples: Claude uses `official` and `community`, AgentInit/custom marketplaces use `skills`, `mcps`, and `rules`, and OpenAI uses `curated`, `system`, and `experimental`.
|
|
253
263
|
- Implemented marketplaces today include `claude` (Anthropic's Claude plugin marketplace) and `openai` (the OpenAI Codex skills catalog).
|
|
254
|
-
-
|
|
264
|
+
- You can add your own marketplaces with `agentinit config marketplaces add <identifier> <repo-url>`.
|
|
265
|
+
- 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
266
|
- 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
267
|
- Claude-native plugin payloads are user-scoped and stored under `~/.claude/plugins`, even when the AgentInit install itself is project-scoped.
|
|
257
268
|
|
|
269
|
+
### `agentinit config`
|
|
270
|
+
|
|
271
|
+
Manage user-level marketplace and trust settings in `~/.agentinit/config.json`.
|
|
272
|
+
|
|
273
|
+
**Examples:**
|
|
274
|
+
```bash
|
|
275
|
+
# Review built-in and custom marketplaces
|
|
276
|
+
agentinit config marketplaces list
|
|
277
|
+
|
|
278
|
+
# Add a custom marketplace and make it the default
|
|
279
|
+
agentinit config marketplaces add acme https://github.com/acme/marketplace.git --name "Acme Marketplace" --default
|
|
280
|
+
|
|
281
|
+
# Switch the default marketplace to a built-in registry
|
|
282
|
+
agentinit config marketplaces default claude
|
|
283
|
+
agentinit config marketplaces clear-default
|
|
284
|
+
|
|
285
|
+
# Manage exact verified GitHub fallback repos
|
|
286
|
+
agentinit config verified-repos list
|
|
287
|
+
agentinit config verified-repos add acme/private-plugin
|
|
288
|
+
agentinit config verified-repos remove acme/private-plugin
|
|
289
|
+
```
|
|
290
|
+
|
|
291
|
+
Custom marketplaces use the standard AgentInit repository layout: `skills`, `mcps`, and `rules`.
|
|
292
|
+
|
|
293
|
+
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.
|
|
294
|
+
|
|
258
295
|
### `agentinit revert`
|
|
259
296
|
|
|
260
297
|
Revert files and backups managed by `agentinit apply` or `agentinit sync`.
|