@aiiware/aii 0.13.8 → 0.13.10

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 +10 -6
  2. package/bin/aii +473 -470
  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.7 · <strong>Node.js:</strong> >= 18
12
+ <strong>npm:</strong> <code>@aiiware/aii</code> · <strong>Version:</strong> 0.13.10 · <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`, `/note`, and `/now`. Feedback appears in a dedicated toast zone — not mixed into agent output.
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.
84
84
 
85
85
  ---
86
86
 
@@ -212,14 +212,18 @@ aii loop --budget 1.00 --duration 8h "refactor the auth module"
212
212
  |---------|-------------|
213
213
  | `/pause [duration]` | Pause after the current tool call (e.g., `/pause 5m`, `/pause 2h`) |
214
214
  | `/resume` | Resume a paused loop |
215
- | `/stop` | Finish current iteration, then exit cleanly |
215
+ | `/stop` | Finish current turn, then exit cleanly |
216
216
  | `/stats` | Live view of tokens, cost, iterations, elapsed time |
217
- | `/note <text>` | Queue guidanceconsumed 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
+ | `/note <text>` | Inject a note immediately the agent sees it at the next tool call boundary |
218
+ | Plain text + Enter | Queue guidanceconsumed one per iteration with visual feedback |
219
219
 
220
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.
221
221
 
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.
222
+ **`/note` vs plain text** — `/note` delivers your message immediately within the current turn, intercepting the next tool call so the agent can pivot without waiting. Plain text queues guidance for the next iteration — the agent sees it when the new iteration starts. If the agent has no more tool calls left, `/note` falls back to the next iteration — your note is never lost.
223
+
224
+ `/note` also works in **Normal mode** (interactive sessions) — type it while the agent is processing to steer it mid-turn.
225
+
226
+ > **Migration note:** `/now` still works as an alias in v0.13.10 but will be removed in a future version. Use `/note` instead — same behavior, clearer name.
223
227
 
224
228
  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
229