@aiiware/aii 0.11.14 → 0.12.1

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 +23 -1
  2. package/bin/aii +631 -622
  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.14 · <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 |
@@ -215,6 +216,26 @@ Responses now stream live — you see the agent's reply building in real time, j
215
216
 
216
217
  Start a conversation in Telegram, continue it from the CLI — or vice versa.
217
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
+
218
239
  ### Skills System
219
240
 
220
241
  Extensible instruction packages you can install and invoke:
@@ -318,6 +339,7 @@ Environment variables also work: `ANTHROPIC_API_KEY`, `OPENAI_API_KEY`, `DEEPSEE
318
339
  | `aii mcp <action>` | MCP server management |
319
340
  | `aii telegram <action>` | Telegram bot management |
320
341
  | `aii sessions <action>` | Session management |
342
+ | `aii soul <action>` | Soul (personality) management |
321
343
  | `aii worktree <action>` | Git worktree management |
322
344
  | `aii prompt <action>` | Prompt library |
323
345
  | `aii doctor` | Health diagnostics |