@aiiware/aii 0.13.11 → 0.13.13
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 +27 -4
- package/bin/aii +390 -360
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,19 +16,42 @@ An autonomous AI assistant that lives in your terminal. Ask it anything — it r
|
|
|
16
16
|
|
|
17
17
|
## Quick Start
|
|
18
18
|
|
|
19
|
+
### One-command install (recommended)
|
|
20
|
+
|
|
19
21
|
```bash
|
|
20
|
-
|
|
21
|
-
|
|
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
|
-
|
|
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
|
|