agentinit 1.20.0 → 1.20.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 CHANGED
@@ -1,3 +1,11 @@
1
+ ## [1.20.1](https://github.com/agentinit/agentinit/compare/v1.20.0...v1.20.1) (2026-04-25)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * harden skill source replay and scan enforcement ([cf0efa1](https://github.com/agentinit/agentinit/commit/cf0efa17009515e1a5835b7a9c81b675a84bc91c))
7
+ * **skills:** preserve prefixes across installs and updates ([6a0c7b3](https://github.com/agentinit/agentinit/commit/6a0c7b3f4c16bf9ee8cb60a3a94b852755f412fa))
8
+
1
9
  # [1.20.0](https://github.com/agentinit/agentinit/compare/v1.19.0...v1.20.0) (2026-04-22)
2
10
 
3
11
 
package/README.md CHANGED
@@ -171,7 +171,7 @@ agentinit rules add --global --agent claude --template git,write_tests
171
171
 
172
172
  ### `agentinit skills`
173
173
 
174
- Install, list, update, and remove reusable agent skills from marketplaces, local paths, or GitHub repositories.
174
+ Install, list, update, and remove reusable agent skills from marketplaces, local paths, or hosted Git repositories.
175
175
 
176
176
  **Examples:**
177
177
  ```bash
@@ -188,6 +188,12 @@ agentinit skills add ./skills
188
188
 
189
189
  # Install a skill stored in a repository subdirectory
190
190
  agentinit skills add owner/repo/path/to/skill
191
+ agentinit skills add gitlab:group/repo//path/to/skill
192
+ agentinit skills add bitbucket:workspace/repo/path/to/skill
193
+
194
+ # Install from GitLab or Bitbucket
195
+ agentinit skills add gitlab:group/repo
196
+ agentinit skills add bitbucket:workspace/repo
191
197
 
192
198
  # Install marketplace-hosted skills explicitly
193
199
  agentinit skills add claude/skill-creator
@@ -208,9 +214,17 @@ agentinit skills add owner/repo --global --agent agents
208
214
  # Force copied installs instead of canonical symlink installs
209
215
  agentinit skills add ./skills --copy
210
216
 
217
+ # Prefix installed skill names for grouping
218
+ agentinit skills add owner/repo --prefix marketing-
219
+
211
220
  # Install every bundled plugin from a multi-plugin Claude bundle
212
221
  agentinit skills add owner/repo --all
213
222
 
223
+ # Control security scanning
224
+ agentinit skills add owner/repo
225
+ agentinit skills add owner/repo --no-scan
226
+ agentinit skills add owner/repo --allow-risky
227
+
214
228
  # Review and clean up installed skills
215
229
  agentinit skills list
216
230
  agentinit skills list --agent agents
@@ -221,9 +235,9 @@ agentinit skills remove openai-docs
221
235
 
222
236
  If a GitHub or local Claude bundle contains multiple plugins, `agentinit skills add` prompts you to choose one or more bundled plugins to inspect or install. Press `Space` to select, `A` to select or deselect all, and `Enter` to confirm. Use `--all` to skip the prompt and install or inspect every bundled plugin. In non-interactive `--yes` mode, ambiguous multi-plugin bundles still fail unless `--all` is provided.
223
237
 
224
- Skills are installed into a canonical store by default (`.agents/skills/` for project, `~/.agents/skills/` for global), with agent-specific paths symlinked automatically. Bare skill names resolve from your configured default marketplace, falling back to the public catalog at `vercel-labs/agent-skills`. Use `./name` for local paths, `owner/repo` for GitHub repos, or `--from <marketplace>` for explicit marketplace sources.
238
+ Skills are installed into a canonical store by default (`.agents/skills/` for project, `~/.agents/skills/` for global), with agent-specific paths symlinked automatically. Bare skill names resolve from your configured default marketplace, falling back to the public catalog at `vercel-labs/agent-skills`. Use `./name` for local paths, `owner/repo` for GitHub repos, `gitlab:group/repo` for GitLab repos, `gitlab:group/repo//path/to/skill` for GitLab subdirectories, `bitbucket:workspace/repo` for Bitbucket, or `--from <marketplace>` for explicit marketplace sources.
225
239
 
226
- When you re-run `agentinit skills add`, AgentInit now compares the installed skill payload with the source before overwriting anything. Unchanged skills are reported as already up to date. If an installed skill has changed, interactive runs ask for confirmation before replacing it, while `--yes` applies the update automatically.
240
+ When you re-run `agentinit skills add`, AgentInit compares the installed skill payload with the source before overwriting anything. Unchanged skills are reported as already up to date. If an installed skill has changed, interactive runs ask for confirmation before replacing it, while `--yes` applies the update automatically. Use `--prefix <text>` to prepend installed skill names for grouping, or press `P` during the interactive skill picker to set it on the fly. Installs are security-scanned by default; risky helper scripts are blocked, while risky Markdown guidance is surfaced as a warning. Use `--no-scan` to skip scanning or `--allow-risky` to proceed when high-risk executable patterns are detected.
227
241
 
228
242
  `agentinit skills update [name]` replays tracked project-scoped installs from their original source in the current project. Use `agentinit skills update <name> --everywhere` to update that skill across every tracked target, including global installs.
229
243