agentinit 1.9.0 → 1.10.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 +7 -0
- package/README.md +12 -1
- package/dist/cli.js +25156 -24838
- package/dist/commands/plugins.d.ts.map +1 -1
- package/dist/commands/plugins.js +9 -2
- package/dist/commands/plugins.js.map +1 -1
- package/dist/commands/skills.d.ts.map +1 -1
- package/dist/commands/skills.js +33 -24
- package/dist/commands/skills.js.map +1 -1
- package/dist/core/marketplaceRegistry.d.ts +5 -0
- package/dist/core/marketplaceRegistry.d.ts.map +1 -0
- package/dist/core/marketplaceRegistry.js +23 -0
- package/dist/core/marketplaceRegistry.js.map +1 -0
- package/dist/core/pluginManager.d.ts +2 -0
- package/dist/core/pluginManager.d.ts.map +1 -1
- package/dist/core/pluginManager.js +68 -21
- package/dist/core/pluginManager.js.map +1 -1
- package/dist/core/skillsManager.d.ts +14 -1
- package/dist/core/skillsManager.d.ts.map +1 -1
- package/dist/core/skillsManager.js +175 -67
- package/dist/core/skillsManager.js.map +1 -1
- package/dist/types/skills.d.ts +5 -1
- package/dist/types/skills.d.ts.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [1.10.0](https://github.com/agentinit/agentinit/compare/v1.9.0...v1.10.0) (2026-03-29)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **marketplace:** default bare plugin installs to agentinit ([71a888f](https://github.com/agentinit/agentinit/commit/71a888f67950a465445c16bb32b2a5a387a46cbe))
|
|
7
|
+
|
|
1
8
|
# [1.9.0](https://github.com/agentinit/agentinit/compare/v1.8.1...v1.9.0) (2026-03-29)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -164,16 +164,23 @@ agentinit rules add --global --agent claude --template git,write_tests
|
|
|
164
164
|
|
|
165
165
|
### `agentinit skills`
|
|
166
166
|
|
|
167
|
-
Install, list, and remove reusable agent skills from local paths or GitHub repositories.
|
|
167
|
+
Install, list, and remove reusable agent skills from marketplaces, local paths, or GitHub repositories.
|
|
168
168
|
|
|
169
169
|
**Examples:**
|
|
170
170
|
```bash
|
|
171
171
|
# Inspect a source before installing
|
|
172
172
|
agentinit skills add owner/repo --list
|
|
173
173
|
|
|
174
|
+
# Install a public skill from the default catalog (`vercel-labs/agent-skills`)
|
|
175
|
+
agentinit skills add vercel-react-best-practices
|
|
176
|
+
|
|
174
177
|
# Install all discovered skills for detected agents using canonical storage
|
|
175
178
|
agentinit skills add ./skills
|
|
176
179
|
|
|
180
|
+
# Install marketplace-hosted skills explicitly
|
|
181
|
+
agentinit skills add claude/skill-creator
|
|
182
|
+
agentinit skills add skill-creator --from claude
|
|
183
|
+
|
|
177
184
|
# Install selected skills globally for a specific agent
|
|
178
185
|
agentinit skills add owner/repo --global --agent claude --skill openai-docs
|
|
179
186
|
|
|
@@ -187,6 +194,10 @@ agentinit skills remove openai-docs
|
|
|
187
194
|
|
|
188
195
|
Skills are installed into a canonical store by default: project installs use `.agents/skills/`, and global installs use `~/.agents/skills/`. Agent-specific paths are symlinked to that store when they differ. Use `--copy` or `--copy-skills` to force independent copies instead.
|
|
189
196
|
|
|
197
|
+
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.
|
|
198
|
+
|
|
199
|
+
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.
|
|
200
|
+
|
|
190
201
|
### `agentinit plugins`
|
|
191
202
|
|
|
192
203
|
Install, inspect, search, and remove portable plugins from explicit marketplace sources, GitHub repositories, or local paths.
|