@aiiware/aii 0.13.13 → 0.14.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.
- package/README.md +35 -2
- package/bin/aii +560 -533
- 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
|
+
<strong>npm:</strong> <code>@aiiware/aii</code> · <strong>Version:</strong> 0.14.0 · <strong>Node.js:</strong> >= 18
|
|
13
13
|
</p>
|
|
14
14
|
|
|
15
15
|
---
|
|
@@ -170,6 +170,7 @@ During interactive sessions, type `/` to see all commands. Highlights:
|
|
|
170
170
|
| `/worktree create` | Isolated workspace for experiments |
|
|
171
171
|
| `/mcp install` | Add MCP server from catalog |
|
|
172
172
|
| `/mcp reconnect` | Reconnect failed MCP servers |
|
|
173
|
+
| `/persona [action]` | Manage workspace personas (install, use, list, status) |
|
|
173
174
|
| `/skills` | List and manage skill packages |
|
|
174
175
|
| `/sessions` | Browse and resume past sessions |
|
|
175
176
|
| `/exit` | End session with summary |
|
|
@@ -287,6 +288,34 @@ Your preference persists across sessions and channels.
|
|
|
287
288
|
|
|
288
289
|
**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 🪼".
|
|
289
290
|
|
|
291
|
+
### Personas
|
|
292
|
+
|
|
293
|
+
Bundle soul, skills, hooks, instructions, and theme into a single installable package — one command to load a complete AI engineering identity.
|
|
294
|
+
|
|
295
|
+
```bash
|
|
296
|
+
# Install a persona
|
|
297
|
+
aii persona install github:aiiware/aii-personas/full-stack-engineer
|
|
298
|
+
|
|
299
|
+
# Activate it
|
|
300
|
+
aii persona use aiiware/full-stack-engineer
|
|
301
|
+
|
|
302
|
+
# Switch roles instantly
|
|
303
|
+
aii persona use aiiware/code-reviewer
|
|
304
|
+
aii persona use aiiware/mentor
|
|
305
|
+
|
|
306
|
+
# Check what's active
|
|
307
|
+
aii persona status
|
|
308
|
+
|
|
309
|
+
# Deactivate
|
|
310
|
+
aii persona use --none
|
|
311
|
+
```
|
|
312
|
+
|
|
313
|
+
**Official personas:** [github.com/aiiware/aii-personas](https://github.com/aiiware/aii-personas)
|
|
314
|
+
|
|
315
|
+
Or during a session: `/persona use aiiware/full-stack-engineer`, `/persona list`, `/persona status`
|
|
316
|
+
|
|
317
|
+
Create your own — just a directory with a `persona.json` manifest and skill/soul files. See the [personas repo](https://github.com/aiiware/aii-personas) for examples.
|
|
318
|
+
|
|
290
319
|
### Theme System
|
|
291
320
|
|
|
292
321
|
7 built-in color themes — switch with `/theme <name>` or `aii config set theme <name>`:
|
|
@@ -404,9 +433,12 @@ Environment variables also work: `ANTHROPIC_API_KEY`, `OPENAI_API_KEY`, `DEEPSEE
|
|
|
404
433
|
| `aii mcp <action>` | MCP server management |
|
|
405
434
|
| `aii telegram <action>` | Telegram bot management |
|
|
406
435
|
| `aii sessions <action>` | Session management |
|
|
436
|
+
| `aii persona <action>` | Workspace persona management |
|
|
437
|
+
| `aii skill <action>` | Skill management (list, info, install) |
|
|
407
438
|
| `aii soul <action>` | Soul (personality) management |
|
|
408
439
|
| `aii worktree <action>` | Git worktree management |
|
|
409
440
|
| `aii prompt <action>` | Prompt library |
|
|
441
|
+
| `aii upgrade` | Self-update to latest version |
|
|
410
442
|
| `aii doctor` | Health diagnostics |
|
|
411
443
|
| `aii help` | Show help |
|
|
412
444
|
| `aii version` | Show version |
|
|
@@ -438,7 +470,8 @@ Run `aii doctor` for automated diagnostics.
|
|
|
438
470
|
|
|
439
471
|
| Problem | Fix |
|
|
440
472
|
|---------|-----|
|
|
441
|
-
| `aii` not found | `
|
|
473
|
+
| `aii` not found | `curl -fsSL https://aiiware.com/install.sh \| bash` |
|
|
474
|
+
| Update to latest | `aii upgrade` |
|
|
442
475
|
| Server won't start | Make sure Docker is running |
|
|
443
476
|
| API key error | `aii config apikey <provider> <key>` or `aii config init` |
|
|
444
477
|
| Wrong model | `aii config model <name>` |
|