@aiiware/aii 0.13.3 → 0.13.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.
- package/README.md +7 -3
- package/bin/aii +501 -501
- 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.4 · <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 `/note
|
|
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 `/note`. Feedback appears in a dedicated toast zone — not mixed into agent output. Notes are consumed one per iteration with visual lifecycle tracking.
|
|
84
84
|
|
|
85
85
|
---
|
|
86
86
|
|
|
@@ -213,10 +213,14 @@ aii loop --budget 1.00 --duration 8h "refactor the auth module"
|
|
|
213
213
|
| `/resume` | Resume a paused loop |
|
|
214
214
|
| `/stop` | Finish current iteration, then exit cleanly |
|
|
215
215
|
| `/stats` | Live view of tokens, cost, iterations, elapsed time |
|
|
216
|
-
| `/note <text>` |
|
|
216
|
+
| `/note <text>` | Queue guidance — consumed one per iteration with visual feedback |
|
|
217
217
|
|
|
218
218
|
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
219
|
|
|
220
|
+
**Toast notifications** — Pause, resume, and queued note messages appear in a dedicated Zone 4 below the processing indicator, keeping the conversation area clean. Non-persistent toasts auto-clear after 10 seconds; persistent toasts (queued/processing notes) stay until the lifecycle completes.
|
|
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.
|
|
223
|
+
|
|
220
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.
|
|
221
225
|
|
|
222
226
|
### Telegram Integration
|