@aiiware/aii 0.13.5 → 0.13.6

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 +4 -5
  2. package/bin/aii +348 -347
  3. 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.4 · <strong>Node.js:</strong> >= 18
12
+ <strong>npm:</strong> <code>@aiiware/aii</code> · <strong>Version:</strong> 0.13.6 · <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`. Feedback appears in a dedicated toast zone — not mixed into agent output. Notes are consumed one per iteration with visual lifecycle tracking.
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
 
@@ -214,12 +214,11 @@ aii loop --budget 1.00 --duration 8h "refactor the auth module"
214
214
  | `/stop` | Finish current iteration, then exit cleanly |
215
215
  | `/stats` | Live view of tokens, cost, iterations, elapsed time |
216
216
  | `/note <text>` | Queue guidance — consumed one per iteration with visual feedback |
217
+ | `/now <text>` | Inject an urgent note immediately — the agent sees it at the next tool call boundary |
217
218
 
218
219
  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
220
 
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.
221
+ **`/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
222
 
224
223
  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
224