@aiiware/aii 0.12.10 → 0.12.12
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 +12 -2
- package/bin/aii +525 -525
- 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.11 · <strong>Node.js:</strong> >= 18
|
|
13
13
|
</p>
|
|
14
14
|
|
|
15
15
|
---
|
|
@@ -215,7 +215,7 @@ aii telegram start mybot # Start listening
|
|
|
215
215
|
aii telegram list # Manage bots
|
|
216
216
|
```
|
|
217
217
|
|
|
218
|
-
Responses
|
|
218
|
+
Responses stream live — you see the agent's reply building in real time, just like in the terminal.
|
|
219
219
|
|
|
220
220
|
Start a conversation in Telegram, continue it from the CLI — or vice versa.
|
|
221
221
|
|
|
@@ -242,6 +242,14 @@ Your preference persists across sessions and channels.
|
|
|
242
242
|
|
|
243
243
|
**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 🪼".
|
|
244
244
|
|
|
245
|
+
### Theme System
|
|
246
|
+
|
|
247
|
+
7 built-in color themes — switch with `/theme <name>` or `aii config set theme <name>`:
|
|
248
|
+
|
|
249
|
+
**classic** (default), **brand**, **teal**, **indigo**, **forest**, **amber**, **grayscale**
|
|
250
|
+
|
|
251
|
+
Your preference persists across sessions.
|
|
252
|
+
|
|
245
253
|
### Skills System
|
|
246
254
|
|
|
247
255
|
Extensible instruction packages you can install and invoke:
|
|
@@ -254,6 +262,8 @@ Extensible instruction packages you can install and invoke:
|
|
|
254
262
|
/<custom-skill> [args] # Any user-invocable skill
|
|
255
263
|
```
|
|
256
264
|
|
|
265
|
+
Install accepts GitHub URLs in any format — repo paths, blob URLs, and bare repo URLs all work.
|
|
266
|
+
|
|
257
267
|
Create skills in `.aii/skills/<name>/SKILL.md` with YAML frontmatter.
|
|
258
268
|
|
|
259
269
|
### Project Instructions (AGENTS.md)
|