@aiiware/aii 0.20.2 → 0.20.4
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 +19 -9
- package/bin/aii +696 -687
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,13 +16,13 @@ An autonomous AI assistant that lives in your terminal. Ask it anything — it r
|
|
|
16
16
|
|
|
17
17
|
## Quick Start
|
|
18
18
|
|
|
19
|
-
###
|
|
19
|
+
### Install (one command)
|
|
20
20
|
|
|
21
21
|
```bash
|
|
22
22
|
curl -fsSL https://aiiware.com/install.sh | bash
|
|
23
23
|
```
|
|
24
24
|
|
|
25
|
-
Installs
|
|
25
|
+
Installs Node.js and the Aii CLI — no Docker required to get started. (Prefer npm? `npm install -g @aiiware/aii`.)
|
|
26
26
|
|
|
27
27
|
<p align="center">
|
|
28
28
|
<a href="https://youtu.be/LKIfLpYUeJc">
|
|
@@ -32,16 +32,25 @@ Installs everything — Node.js, Aii CLI, Docker, and the AI server. No prerequi
|
|
|
32
32
|
<em>Full end-to-end install on a clean Linux machine</em>
|
|
33
33
|
</p>
|
|
34
34
|
|
|
35
|
-
###
|
|
35
|
+
### Start free — no Docker, no API key
|
|
36
36
|
|
|
37
37
|
```bash
|
|
38
|
-
|
|
39
|
-
aii
|
|
38
|
+
aii cloud login
|
|
39
|
+
aii "what can you do?"
|
|
40
40
|
```
|
|
41
41
|
|
|
42
|
-
(
|
|
42
|
+
Sign in with Google or GitHub and your first answer lands in seconds — free on Aii Cloud (a daily free budget, no card required). Point it at a project and it reads your files, runs the tools it needs, and gets to work.
|
|
43
43
|
|
|
44
|
-
|
|
44
|
+
### Go unlimited — your own key, your own budget
|
|
45
|
+
|
|
46
|
+
Prefer no daily limit and full local control? Point Aii at your own provider key and it runs a local AI server (via Docker) that your provider bills directly — no Aii limit.
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
aii config apikey anthropic <your-key>
|
|
50
|
+
aii "refactor this module and run the tests"
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
Supported providers include Anthropic, OpenAI, Google, and more. No key yet? Just run `aii "…"` and the setup wizard walks you through provider, model, and key. This is the home for heavy, sustained use.
|
|
45
54
|
|
|
46
55
|
---
|
|
47
56
|
|
|
@@ -312,14 +321,15 @@ Extensible instruction packages you can install and invoke:
|
|
|
312
321
|
|
|
313
322
|
```bash
|
|
314
323
|
/skills # List all skills
|
|
315
|
-
/skills install owner/repo
|
|
324
|
+
/skills install owner/repo # Install a community skill repo
|
|
325
|
+
/skills install owner/repo/skill-name # Install a specific skill
|
|
316
326
|
/aii how do loops work? # Built-in: self-serve help
|
|
317
327
|
/commit # Built-in: AI git commit
|
|
318
328
|
/review-pr # Built-in: PR review
|
|
319
329
|
/explain this function # Built-in: code explainer
|
|
320
330
|
```
|
|
321
331
|
|
|
322
|
-
Install accepts GitHub
|
|
332
|
+
Install accepts GitHub refs in any format — a bare `owner/repo` (Aii finds the skill, whether it's at the repo root or in a subdirectory, e.g. `aii skill install tt-a1i/archify`), explicit repo paths, blob URLs, and tree URLs. Every install pins the commit SHA, fetches binaries intact, and shows a trust preview (name, license, script payload) before anything is written — pass `--yes` to skip the prompt in scripts. Create your own skills in `.aii/skills/<name>/SKILL.md` with YAML frontmatter.
|
|
323
333
|
|
|
324
334
|
### Project Instructions (AGENTS.md)
|
|
325
335
|
|