agentinit 1.16.0 → 1.16.2
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 +16 -2
- package/README.md +5 -2
- package/dist/cli.js +438 -96
- package/dist/core/pluginManager.d.ts +11 -0
- package/dist/core/pluginManager.d.ts.map +1 -1
- package/dist/core/pluginManager.js +274 -9
- package/dist/core/pluginManager.js.map +1 -1
- package/dist/core/skillsManager.d.ts +5 -0
- package/dist/core/skillsManager.d.ts.map +1 -1
- package/dist/core/skillsManager.js +173 -74
- package/dist/core/skillsManager.js.map +1 -1
- package/dist/types/skills.d.ts +1 -0
- package/dist/types/skills.d.ts.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [1.16.2](https://github.com/agentinit/agentinit/compare/v1.16.1...v1.16.2) (2026-04-01)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **skills:** harden GitHub subpath resolution ([ca353ad](https://github.com/agentinit/agentinit/commit/ca353ad46c93180b2cc0e86f89a6ea2ee53b9504))
|
|
7
|
+
|
|
8
|
+
## [1.16.1](https://github.com/agentinit/agentinit/compare/v1.16.0...v1.16.1) (2026-04-01)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* align Claude native plugin installs with marketplace behavior ([bdfa280](https://github.com/agentinit/agentinit/commit/bdfa2801a9ad933727fd72327cd9b121dfe0a543))
|
|
14
|
+
|
|
1
15
|
# [1.16.0](https://github.com/agentinit/agentinit/compare/v1.15.1...v1.16.0) (2026-04-01)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -142,7 +156,7 @@
|
|
|
142
156
|
* add OpenClaw as a skills target with shared project installs via `.agents/skills/` and dedicated global installs via `~/.openclaw/skills/`
|
|
143
157
|
* add Hermes as a skills target with shared project installs via `.agents/skills/` and dedicated global installs via `~/.hermes/skills/`
|
|
144
158
|
* warn and fall back to GitHub repos for marketplace misses, marking allowlisted repos like `openai/codex-plugin-cc` as verified
|
|
145
|
-
* install Claude Code-native plugin payloads during `plugins install` when Claude-only components are detected and Claude Code is targeted
|
|
159
|
+
* install Claude Code-native plugin payloads during `plugins install` when Claude-only components are detected and Claude Code is targeted, registering native marketplace metadata under `~/.claude/plugins`
|
|
146
160
|
|
|
147
161
|
### Bug Fixes
|
|
148
162
|
|
|
@@ -152,7 +166,7 @@
|
|
|
152
166
|
* update docs and onboarding to the `mcp add|verify`, `rules add`, and `skills add` command model
|
|
153
167
|
* parse Claude Code marketplace bundle repos like `openai/codex-plugin-cc` when installing portable skills or plugins
|
|
154
168
|
* 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
|
|
155
|
-
* enable Claude-native plugin payloads in `~/.claude/settings.json`
|
|
169
|
+
* enable Claude-native plugin payloads in `~/.claude/settings.json`, register them in `known_marketplaces.json`, and migrate legacy `agentinit-*` Claude namespaces to native marketplace ids
|
|
156
170
|
|
|
157
171
|
# [1.7.0](https://github.com/agentinit/agentinit/compare/v1.6.0...v1.7.0) (2025-10-17)
|
|
158
172
|
|
package/README.md
CHANGED
|
@@ -186,6 +186,9 @@ agentinit skills add vercel-react-best-practices
|
|
|
186
186
|
# Install all discovered skills for detected agents using canonical storage
|
|
187
187
|
agentinit skills add ./skills
|
|
188
188
|
|
|
189
|
+
# Install a skill stored in a repository subdirectory
|
|
190
|
+
agentinit skills add owner/repo/path/to/skill
|
|
191
|
+
|
|
189
192
|
# Install marketplace-hosted skills explicitly
|
|
190
193
|
agentinit skills add claude/skill-creator
|
|
191
194
|
agentinit skills add skill-creator --from claude
|
|
@@ -217,7 +220,7 @@ Hermes follows the same model: project skills come from `.agents/skills/`, globa
|
|
|
217
220
|
|
|
218
221
|
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.
|
|
219
222
|
|
|
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.
|
|
223
|
+
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 root, `owner/repo/path/to/skill` for a repository subdirectory, or `--from <marketplace>` / `<marketplace>/<name>` for marketplace-backed sources. Three-or-more slash segments are treated as a GitHub repository plus subpath, even when the owner matches a marketplace id. GitHub `tree/...` URLs and `blob/.../SKILL.md` URLs resolve to the referenced skill directory.
|
|
221
224
|
|
|
222
225
|
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.
|
|
223
226
|
|
|
@@ -263,7 +266,7 @@ agentinit plugins remove code-review
|
|
|
263
266
|
- Implemented marketplaces today include `claude` (Anthropic's Claude plugin marketplace) and `openai` (the OpenAI Codex skills catalog).
|
|
264
267
|
- You can add your own marketplaces with `agentinit config marketplaces add <identifier> <repo-url>`.
|
|
265
268
|
- 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.
|
|
266
|
-
- For Claude-format plugins, `plugins install`
|
|
269
|
+
- For Claude-format plugins, `plugins install` installs portable skills and MCP servers for compatible selected agents. If a native Claude Code plugin bundle is also present, AgentInit installs that bundle into `~/.claude/plugins` when `claude` is selected, registers the corresponding Claude marketplace metadata, and skips portable skill fallback for any selected agents that share Claude Code's skills directory. Portable MCP installs still apply to other compatible agents.
|
|
267
270
|
- Claude-native plugin payloads are user-scoped and stored under `~/.claude/plugins`, even when the AgentInit install itself is project-scoped.
|
|
268
271
|
|
|
269
272
|
### `agentinit config`
|