@aiiware/aii 0.13.1 → 0.13.3

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 +6 -2
  2. package/bin/aii +493 -492
  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.1 · <strong>Node.js:</strong> >= 18
12
+ <strong>npm:</strong> <code>@aiiware/aii</code> · <strong>Version:</strong> 0.13.3 · <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 `/stop`, `/stats`, and `/note` — the status bar tracks progress in real time.
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` — the status bar tracks progress in real time.
84
84
 
85
85
  ---
86
86
 
@@ -209,10 +209,14 @@ aii loop --budget 1.00 --duration 8h "refactor the auth module"
209
209
 
210
210
  | Command | What It Does |
211
211
  |---------|-------------|
212
+ | `/pause [duration]` | Pause after the current tool call (e.g., `/pause 5m`, `/pause 2h`) |
213
+ | `/resume` | Resume a paused loop |
212
214
  | `/stop` | Finish current iteration, then exit cleanly |
213
215
  | `/stats` | Live view of tokens, cost, iterations, elapsed time |
214
216
  | `/note <text>` | Guide the agent's next iteration |
215
217
 
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
+
216
220
  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.
217
221
 
218
222
  ### Telegram Integration