@aiiware/aii 0.13.5 → 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 +7 -5
- package/bin/aii +561 -395
- 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
|
---
|
|
@@ -80,7 +80,7 @@ Or during a session: `/model anthropic:claude-sonnet-4`
|
|
|
80
80
|
aii loop "fix all failing tests" --verify "npm test" --budget 0.50
|
|
81
81
|
```
|
|
82
82
|
|
|
83
|
-
The agent loops with fresh context each iteration, stopping when your verification command passes, the budget is hit, or you press Esc. Steer it mid-run with `/pause`, `/resume`, `/stop`, `/stats`, and `/
|
|
83
|
+
The agent loops with fresh context each iteration, stopping when your verification command passes, the budget is hit, or you press Esc. Steer it mid-run with `/pause`, `/resume`, `/stop`, `/stats`, `/note`, and `/now`. Feedback appears in a dedicated toast zone — not mixed into agent output.
|
|
84
84
|
|
|
85
85
|
---
|
|
86
86
|
|
|
@@ -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 |
|
|
@@ -214,12 +215,11 @@ aii loop --budget 1.00 --duration 8h "refactor the auth module"
|
|
|
214
215
|
| `/stop` | Finish current iteration, then exit cleanly |
|
|
215
216
|
| `/stats` | Live view of tokens, cost, iterations, elapsed time |
|
|
216
217
|
| `/note <text>` | Queue guidance — consumed one per iteration with visual feedback |
|
|
218
|
+
| `/now <text>` | Inject an urgent note immediately — the agent sees it at the next tool call boundary |
|
|
217
219
|
|
|
218
220
|
Pause takes effect between tool calls — the agent finishes what it's doing, then waits. Timed pauses auto-resume after the duration. The status bar shows pause state with a countdown timer.
|
|
219
221
|
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
**One-by-one note consumption** — Notes queued via `/note` progress through a visible lifecycle: `Queued: "..."` → `Processing: "..."` → cleared. Each iteration consumes one note, keeping the agent focused.
|
|
222
|
+
**`/note` vs `/now`** — `/note` queues guidance for the next iteration. `/now` delivers it immediately within the current turn, so the agent can pivot without waiting. If the agent has no more tool calls left, `/now` falls back to the next iteration — your note is never lost.
|
|
223
223
|
|
|
224
224
|
The status bar updates in real time with iteration count, token usage, estimated cost, and tool calls — you always know what the loop is doing and what it's costing.
|
|
225
225
|
|
|
@@ -275,8 +275,10 @@ Extensible instruction packages you can install and invoke:
|
|
|
275
275
|
```bash
|
|
276
276
|
/skills # List all skills
|
|
277
277
|
/skills install owner/repo/skill-name # Install from GitHub
|
|
278
|
+
/aii how do loops work? # Built-in: self-serve help
|
|
278
279
|
/commit # Built-in: AI git commit
|
|
279
280
|
/review-pr # Built-in: PR review
|
|
281
|
+
/explain this function # Built-in: code explainer
|
|
280
282
|
/<custom-skill> [args] # Any user-invocable skill
|
|
281
283
|
```
|
|
282
284
|
|