@aiiware/aii 0.12.2 → 0.12.4
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.
- package/README.md +14 -8
- package/bin/aii +606 -606
- 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.12.
|
|
12
|
+
<strong>npm:</strong> <code>@aiiware/aii</code> · <strong>Version:</strong> 0.12.3 · <strong>Node.js:</strong> >= 18
|
|
13
13
|
</p>
|
|
14
14
|
|
|
15
15
|
---
|
|
@@ -133,7 +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 (
|
|
136
|
+
| `/soul [name]` | View or switch soul (thinker, doer, coder) |
|
|
137
137
|
| `/auto` | Toggle auto-approve mode |
|
|
138
138
|
| `/plan` | Toggle plan mode (read-only) |
|
|
139
139
|
| `/diff` | See all file changes this session |
|
|
@@ -144,6 +144,7 @@ During interactive sessions, type `/` to see all commands. Highlights:
|
|
|
144
144
|
| `/review-pr` | AI-powered PR review |
|
|
145
145
|
| `/worktree create` | Isolated workspace for experiments |
|
|
146
146
|
| `/mcp install` | Add MCP server from catalog |
|
|
147
|
+
| `/mcp reconnect` | Reconnect failed MCP servers |
|
|
147
148
|
| `/skills` | List and manage skill packages |
|
|
148
149
|
| `/sessions` | Browse and resume past sessions |
|
|
149
150
|
| `/exit` | End session with summary |
|
|
@@ -222,20 +223,23 @@ Each agent has a personality — called a **soul** — that shapes how it commun
|
|
|
222
223
|
|
|
223
224
|
```bash
|
|
224
225
|
aii soul help # See available souls
|
|
225
|
-
aii soul switch
|
|
226
|
+
aii soul switch doer # Switch personality
|
|
226
227
|
```
|
|
227
228
|
|
|
228
|
-
Or during a session: `/soul
|
|
229
|
+
Or during a session: `/soul doer`
|
|
229
230
|
|
|
230
231
|
**Built-in souls:**
|
|
231
232
|
|
|
232
|
-
| Soul | Style |
|
|
233
|
-
|
|
234
|
-
| **
|
|
235
|
-
| **
|
|
233
|
+
| Soul | Display Name | Style |
|
|
234
|
+
|------|-------------|-------|
|
|
235
|
+
| **thinker** | Aii Thinker 🪼 | Patient and collaborative — thinks out loud, walks through reasoning (default) |
|
|
236
|
+
| **doer** | Aii Doer 🪼 | Direct and efficient — leads with the answer, every sentence earns its place |
|
|
237
|
+
| **coder** | Aii Coder 🪼 | Pair-programming partner — reads your codebase, references specific lines |
|
|
236
238
|
|
|
237
239
|
Your preference persists across sessions and channels.
|
|
238
240
|
|
|
241
|
+
**Custom souls:** Create your own in `.aii/soul/` with `SOUL.md`, `STYLE.md`, `IDENTITY.md`, and an optional `soul.json` manifest. Custom souls introduce themselves as "{Name}, powered by Aii 🪼".
|
|
242
|
+
|
|
239
243
|
### Skills System
|
|
240
244
|
|
|
241
245
|
Extensible instruction packages you can install and invoke:
|
|
@@ -284,6 +288,8 @@ aii mcp list-tools github # Discover tools
|
|
|
284
288
|
aii mcp test github # Connectivity test
|
|
285
289
|
```
|
|
286
290
|
|
|
291
|
+
MCP servers connect in the background during session start — no waiting on first use. If a server drops, use `/mcp reconnect <server>` or `/mcp reconnect all` to restore it without restarting your session.
|
|
292
|
+
|
|
287
293
|
### Server Sessions
|
|
288
294
|
|
|
289
295
|
Conversations persist across restarts and channels:
|