@aiiware/aii 0.20.3 → 0.20.4

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.
Files changed (3) hide show
  1. package/README.md +3 -2
  2. package/bin/aii +686 -682
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -321,14 +321,15 @@ Extensible instruction packages you can install and invoke:
321
321
 
322
322
  ```bash
323
323
  /skills # List all skills
324
- /skills install owner/repo/skill-name # Install from GitHub
324
+ /skills install owner/repo # Install a community skill repo
325
+ /skills install owner/repo/skill-name # Install a specific skill
325
326
  /aii how do loops work? # Built-in: self-serve help
326
327
  /commit # Built-in: AI git commit
327
328
  /review-pr # Built-in: PR review
328
329
  /explain this function # Built-in: code explainer
329
330
  ```
330
331
 
331
- Install accepts GitHub URLs in any format — repo paths, blob URLs, and bare repo URLs all work. Create skills in `.aii/skills/<name>/SKILL.md` with YAML frontmatter.
332
+ Install accepts GitHub refs in any format — a bare `owner/repo` (Aii finds the skill, whether it's at the repo root or in a subdirectory, e.g. `aii skill install tt-a1i/archify`), explicit repo paths, blob URLs, and tree URLs. Every install pins the commit SHA, fetches binaries intact, and shows a trust preview (name, license, script payload) before anything is written — pass `--yes` to skip the prompt in scripts. Create your own skills in `.aii/skills/<name>/SKILL.md` with YAML frontmatter.
332
333
 
333
334
  ### Project Instructions (AGENTS.md)
334
335