@aiiware/aii 0.13.14 → 0.14.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.
- package/README.md +37 -3
- package/bin/aii +565 -535
- 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.1 · <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,37 @@ 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 from GitHub
|
|
297
|
+
aii persona install github:aiiware/aii-personas/aiiware-full-stack-engineer
|
|
298
|
+
|
|
299
|
+
# Install from GitLab
|
|
300
|
+
aii persona install gitlab:aiiware/aii-personas/aiiware-full-stack-engineer
|
|
301
|
+
|
|
302
|
+
# Activate it
|
|
303
|
+
aii persona use aiiware/full-stack-engineer
|
|
304
|
+
|
|
305
|
+
# Switch roles instantly
|
|
306
|
+
aii persona use aiiware/code-reviewer
|
|
307
|
+
aii persona use aiiware/mentor
|
|
308
|
+
|
|
309
|
+
# Check what's active
|
|
310
|
+
aii persona status
|
|
311
|
+
|
|
312
|
+
# Deactivate
|
|
313
|
+
aii persona use --none
|
|
314
|
+
```
|
|
315
|
+
|
|
316
|
+
**Official personas:** [github.com/aiiware/aii-personas](https://github.com/aiiware/aii-personas)
|
|
317
|
+
|
|
318
|
+
Or during a session: `/persona use aiiware/full-stack-engineer`, `/persona list`, `/persona status`
|
|
319
|
+
|
|
320
|
+
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.
|
|
321
|
+
|
|
290
322
|
### Theme System
|
|
291
323
|
|
|
292
324
|
7 built-in color themes — switch with `/theme <name>` or `aii config set theme <name>`:
|
|
@@ -404,10 +436,12 @@ Environment variables also work: `ANTHROPIC_API_KEY`, `OPENAI_API_KEY`, `DEEPSEE
|
|
|
404
436
|
| `aii mcp <action>` | MCP server management |
|
|
405
437
|
| `aii telegram <action>` | Telegram bot management |
|
|
406
438
|
| `aii sessions <action>` | Session management |
|
|
439
|
+
| `aii persona <action>` | Workspace persona management |
|
|
440
|
+
| `aii skill <action>` | Skill management (list, info, install) |
|
|
407
441
|
| `aii soul <action>` | Soul (personality) management |
|
|
408
442
|
| `aii worktree <action>` | Git worktree management |
|
|
409
443
|
| `aii prompt <action>` | Prompt library |
|
|
410
|
-
| `aii
|
|
444
|
+
| `aii upgrade` | Self-update to latest version |
|
|
411
445
|
| `aii doctor` | Health diagnostics |
|
|
412
446
|
| `aii help` | Show help |
|
|
413
447
|
| `aii version` | Show version |
|
|
@@ -440,7 +474,7 @@ Run `aii doctor` for automated diagnostics.
|
|
|
440
474
|
| Problem | Fix |
|
|
441
475
|
|---------|-----|
|
|
442
476
|
| `aii` not found | `curl -fsSL https://aiiware.com/install.sh \| bash` |
|
|
443
|
-
| Update to latest | `aii
|
|
477
|
+
| Update to latest | `aii upgrade` |
|
|
444
478
|
| Server won't start | Make sure Docker is running |
|
|
445
479
|
| API key error | `aii config apikey <provider> <key>` or `aii config init` |
|
|
446
480
|
| Wrong model | `aii config model <name>` |
|