@aiiware/aii 0.11.13 → 0.12.0

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 +25 -1
  2. package/bin/aii +574 -572
  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.11.11 · <strong>Node.js:</strong> >= 18
12
+ <strong>npm:</strong> <code>@aiiware/aii</code> · <strong>Version:</strong> 0.12.0 · <strong>Node.js:</strong> >= 18
13
13
  </p>
14
14
 
15
15
  ---
@@ -133,6 +133,7 @@ During interactive sessions, type `/` to see all commands. Highlights:
133
133
  | `/help` | Show all commands |
134
134
  | `/model [name]` | View or switch model |
135
135
  | `/provider [name]` | View or switch provider |
136
+ | `/soul [name]` | View or switch soul (personality) |
136
137
  | `/auto` | Toggle auto-approve mode |
137
138
  | `/plan` | Toggle plan mode (read-only) |
138
139
  | `/diff` | See all file changes this session |
@@ -211,8 +212,30 @@ aii telegram start mybot # Start listening
211
212
  aii telegram list # Manage bots
212
213
  ```
213
214
 
215
+ Responses now stream live — you see the agent's reply building in real time, just like in the terminal. No more waiting for the full response.
216
+
214
217
  Start a conversation in Telegram, continue it from the CLI — or vice versa.
215
218
 
219
+ ### Soul System
220
+
221
+ Each agent has a personality — called a **soul** — that shapes how it communicates. Built on [SoulSpec v0.4](https://soulspec.org).
222
+
223
+ ```bash
224
+ aii soul help # See available souls
225
+ aii soul switch chill # Switch personality
226
+ ```
227
+
228
+ Or during a session: `/soul chill`
229
+
230
+ **Built-in souls:**
231
+
232
+ | Soul | Style |
233
+ |------|-------|
234
+ | **warm** | Conversational and clear (default) |
235
+ | **chill** | Direct and efficient |
236
+
237
+ Your preference persists across sessions and channels.
238
+
216
239
  ### Skills System
217
240
 
218
241
  Extensible instruction packages you can install and invoke:
@@ -316,6 +339,7 @@ Environment variables also work: `ANTHROPIC_API_KEY`, `OPENAI_API_KEY`, `DEEPSEE
316
339
  | `aii mcp <action>` | MCP server management |
317
340
  | `aii telegram <action>` | Telegram bot management |
318
341
  | `aii sessions <action>` | Session management |
342
+ | `aii soul <action>` | Soul (personality) management |
319
343
  | `aii worktree <action>` | Git worktree management |
320
344
  | `aii prompt <action>` | Prompt library |
321
345
  | `aii doctor` | Health diagnostics |