agentinit 1.9.0 → 1.11.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 +14 -0
- package/README.md +14 -1
- package/dist/cli.js +24932 -24436
- 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 +230 -33
- 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,17 @@
|
|
|
1
|
+
# [1.11.0](https://github.com/agentinit/agentinit/compare/v1.10.0...v1.11.0) (2026-03-29)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **skills:** prompt for install scope before agent selection ([6b75f27](https://github.com/agentinit/agentinit/commit/6b75f272e657f958de9a28c85d0635f9ccdbe431))
|
|
7
|
+
|
|
8
|
+
# [1.10.0](https://github.com/agentinit/agentinit/compare/v1.9.0...v1.10.0) (2026-03-29)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **marketplace:** default bare plugin installs to agentinit ([71a888f](https://github.com/agentinit/agentinit/commit/71a888f67950a465445c16bb32b2a5a387a46cbe))
|
|
14
|
+
|
|
1
15
|
# [1.9.0](https://github.com/agentinit/agentinit/compare/v1.8.1...v1.9.0) (2026-03-29)
|
|
2
16
|
|
|
3
17
|
|
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
|
|
|
@@ -185,8 +192,14 @@ agentinit skills list
|
|
|
185
192
|
agentinit skills remove openai-docs
|
|
186
193
|
```
|
|
187
194
|
|
|
195
|
+
If you run `skills add` without `--agent` or `--yes`, AgentInit prompts for install scope first (`project` or `global`), then prompts for the agent skill directories to target. If no project agent files are detected, it still lets you choose project agent directories manually and points you to `agentinit init` for future auto-detection.
|
|
196
|
+
|
|
188
197
|
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
198
|
|
|
199
|
+
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.
|
|
200
|
+
|
|
201
|
+
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.
|
|
202
|
+
|
|
190
203
|
### `agentinit plugins`
|
|
191
204
|
|
|
192
205
|
Install, inspect, search, and remove portable plugins from explicit marketplace sources, GitHub repositories, or local paths.
|