@aiiware/aii 0.13.12 → 0.13.14

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 +31 -6
  2. package/bin/aii +352 -350
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -9,26 +9,49 @@ 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.13.10 · <strong>Node.js:</strong> >= 18
12
+ <strong>npm:</strong> <code>@aiiware/aii</code> · <strong>Version:</strong> 0.13.14 · <strong>Node.js:</strong> >= 18
13
13
  </p>
14
14
 
15
15
  ---
16
16
 
17
17
  ## Quick Start
18
18
 
19
+ ### One-command install (recommended)
20
+
19
21
  ```bash
20
- # 1. Install
21
- npm install -g @aiiware/aii
22
+ curl -fsSL https://aiiware.com/install.sh | bash
23
+ ```
24
+
25
+ Installs everything — Node.js, Aii CLI, Docker, and the AI server. No prerequisites.
26
+
27
+ <p align="center">
28
+ <a href="https://youtu.be/LKIfLpYUeJc">
29
+ <img src="https://img.youtube.com/vi/LKIfLpYUeJc/maxresdefault.jpg" width="600" alt="Aii CLI Install Demo" />
30
+ </a>
31
+ <br/>
32
+ <em>Full end-to-end install on a clean Linux machine</em>
33
+ </p>
22
34
 
23
- # 2. Go
35
+ ### Or via npm
36
+
37
+ ```bash
38
+ npm install -g @aiiware/aii
24
39
  aii -D hi there!
25
40
  ```
26
41
 
42
+ <p align="center">
43
+ <a href="https://youtu.be/Y98DqkgdWdQ">
44
+ <img src="https://img.youtube.com/vi/Y98DqkgdWdQ/maxresdefault.jpg" width="600" alt="Aii CLI npm Install Demo" />
45
+ </a>
46
+ <br/>
47
+ <em>npm install demo</em>
48
+ </p>
49
+
27
50
  On first run, Aii auto-launches a setup wizard to configure your AI provider, model, and API key. After setup completes, your command executes automatically.
28
51
 
29
52
  Already know your provider? You can also configure directly: `aii config apikey <provider> <key>`
30
53
 
31
- > **Requirements:** Node.js 18+ and Docker
54
+ > **Requirements:** Node.js 18+ and Docker (both auto-installed if missing)
32
55
 
33
56
  ---
34
57
 
@@ -384,6 +407,7 @@ Environment variables also work: `ANTHROPIC_API_KEY`, `OPENAI_API_KEY`, `DEEPSEE
384
407
  | `aii soul <action>` | Soul (personality) management |
385
408
  | `aii worktree <action>` | Git worktree management |
386
409
  | `aii prompt <action>` | Prompt library |
410
+ | `aii install` | Self-update to latest version |
387
411
  | `aii doctor` | Health diagnostics |
388
412
  | `aii help` | Show help |
389
413
  | `aii version` | Show version |
@@ -415,7 +439,8 @@ Run `aii doctor` for automated diagnostics.
415
439
 
416
440
  | Problem | Fix |
417
441
  |---------|-----|
418
- | `aii` not found | `npm install -g @aiiware/aii`, restart terminal |
442
+ | `aii` not found | `curl -fsSL https://aiiware.com/install.sh \| bash` |
443
+ | Update to latest | `aii install` |
419
444
  | Server won't start | Make sure Docker is running |
420
445
  | API key error | `aii config apikey <provider> <key>` or `aii config init` |
421
446
  | Wrong model | `aii config model <name>` |