@aiiware/aii 0.13.6 → 0.13.7
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/README.md +4 -1
- package/bin/aii +460 -295
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ An autonomous AI assistant that lives in your terminal. Ask it anything — it r
|
|
|
9
9
|
</p>
|
|
10
10
|
|
|
11
11
|
<p align="center">
|
|
12
|
-
<strong>npm:</strong> <code>@aiiware/aii</code> · <strong>Version:</strong> 0.13.
|
|
12
|
+
<strong>npm:</strong> <code>@aiiware/aii</code> · <strong>Version:</strong> 0.13.7 · <strong>Node.js:</strong> >= 18
|
|
13
13
|
</p>
|
|
14
14
|
|
|
15
15
|
---
|
|
@@ -141,6 +141,7 @@ During interactive sessions, type `/` to see all commands. Highlights:
|
|
|
141
141
|
| `/undo` | Revert the last file change |
|
|
142
142
|
| `/stats` | Session stats — tokens, cost, duration |
|
|
143
143
|
| `/context` | Context window usage; `/context clear` to summarize |
|
|
144
|
+
| `/aii [question]` | Ask about Aii features, commands, and usage |
|
|
144
145
|
| `/commit` | AI-powered git commit |
|
|
145
146
|
| `/review-pr` | AI-powered PR review |
|
|
146
147
|
| `/worktree create` | Isolated workspace for experiments |
|
|
@@ -274,8 +275,10 @@ Extensible instruction packages you can install and invoke:
|
|
|
274
275
|
```bash
|
|
275
276
|
/skills # List all skills
|
|
276
277
|
/skills install owner/repo/skill-name # Install from GitHub
|
|
278
|
+
/aii how do loops work? # Built-in: self-serve help
|
|
277
279
|
/commit # Built-in: AI git commit
|
|
278
280
|
/review-pr # Built-in: PR review
|
|
281
|
+
/explain this function # Built-in: code explainer
|
|
279
282
|
/<custom-skill> [args] # Any user-invocable skill
|
|
280
283
|
```
|
|
281
284
|
|