aegiscode 3.4.4 → 4.0.3
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 +10 -42
- package/bin/cli.js +512 -501
- package/package.json +13 -4
- package/scripts/sharp-stub/index.js +9 -0
- package/scripts/sharp-stub/package.json +5 -0
- package/bin/aegis-cli-linux-x64 +0 -0
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
Multi-model terminal coding assistant. Works with Claude, OpenAI, DeepSeek, Groq, Gemini and Ollama. BYOK — your keys, your cost.
|
|
11
11
|
|
|
12
|
-
- **Private AI,
|
|
12
|
+
- **Private AI, BYOK** — run fully local with Ollama, no API key needed. A free aegiscloud.org account is still required to start the app (one-time Google login), but nothing you run locally leaves your machine.
|
|
13
13
|
- **A model that grows over time** — `/router` auto-picks the cheapest model that can handle each task and learns from every session, so cost drops while quality holds.
|
|
14
14
|
- **Many models, one answer** — `/council` votes and `/debate` makes them argue it out, so you get a reasoned consensus instead of one model's guess.
|
|
15
15
|
- **Cloud sync — $2/month** — keep cross-session semantic memory and sync every session across machines. Activate with a single code.
|
|
@@ -37,8 +37,8 @@ npm install -g aegiscode
|
|
|
37
37
|
Or from source:
|
|
38
38
|
|
|
39
39
|
```bash
|
|
40
|
-
git clone https://github.com/aegisinfo/
|
|
41
|
-
cd
|
|
40
|
+
git clone https://github.com/aegisinfo/aegiscodex-
|
|
41
|
+
cd aegiscodex-
|
|
42
42
|
bash install.sh
|
|
43
43
|
```
|
|
44
44
|
|
|
@@ -48,43 +48,11 @@ Either way, the command is `aegis`.
|
|
|
48
48
|
|
|
49
49
|
---
|
|
50
50
|
|
|
51
|
-
## Desktop GUI
|
|
52
|
-
|
|
53
|
-
aegiscode also ships as a native Electron desktop app — same AI engine, same memory, with a split-pane terminal + shell.
|
|
54
|
-
|
|
55
|
-
**Download (Linux / macOS / Windows):**
|
|
56
|
-
|
|
57
|
-
→ **[aegiscloud.org/aegiscode#download](https://aegiscloud.org/aegiscode#download)**
|
|
58
|
-
|
|
59
|
-
```bash
|
|
60
|
-
# Linux
|
|
61
|
-
wget https://dl.aegiscloud.org/aegiscode-gui.deb
|
|
62
|
-
sudo dpkg -i aegiscode-gui.deb
|
|
63
|
-
```
|
|
64
|
-
|
|
65
|
-
**Launch:**
|
|
66
|
-
|
|
67
|
-
```bash
|
|
68
|
-
aegis
|
|
69
|
-
```
|
|
70
|
-
|
|
71
|
-
**Tabs:**
|
|
72
|
-
|
|
73
|
-
| Tab | Description |
|
|
74
|
-
|-----|-------------|
|
|
75
|
-
| Terminal ⌨ | Full aegiscode session with true color and resize support |
|
|
76
|
-
| History ◷ | Browse and resume past sessions |
|
|
77
|
-
| Memory ⬡ | Search stored memory entries, view stats, manage subscription |
|
|
78
|
-
| Cloud ⬡ | Cloud sync status and API key |
|
|
79
|
-
| Settings ⚙ | Configure API key and model |
|
|
80
|
-
|
|
81
|
-
Memory and cloud sync are activated by pasting your API key in the Memory tab after subscribing at [aegiscloud.org](https://aegiscloud.org).
|
|
82
|
-
|
|
83
|
-
---
|
|
84
|
-
|
|
85
51
|
## First run
|
|
86
52
|
|
|
87
|
-
Run `aegis` —
|
|
53
|
+
Run `aegis` — the first thing it does is open your browser for a one-time login to your free aegiscloud.org account (Google sign-in). This is required even for fully local/Ollama-only use; once logged in, the session is cached and you won't see it again.
|
|
54
|
+
|
|
55
|
+
After login, if no API keys are configured, an interactive setup guide launches automatically:
|
|
88
56
|
|
|
89
57
|
```
|
|
90
58
|
◆ aegiscode — Setup
|
|
@@ -211,8 +179,8 @@ Full reference with copy-paste examples: **[aegiscloud.org/aegiscode/commands](h
|
|
|
211
179
|
| `/council <question>` | | Multi-model majority vote |
|
|
212
180
|
| `/debate <topic> [--rounds N]` | `/db` | Structured multi-model debate across rounds |
|
|
213
181
|
| `/research <question>` | | Multi-agent research |
|
|
214
|
-
| `/memory [activate\|stats\|clear]` | | Manage semantic memory |
|
|
215
|
-
| `/cloud [activate\|
|
|
182
|
+
| `/memory [activate\|stats\|load\|upload\|clear]` | | Manage semantic memory |
|
|
183
|
+
| `/cloud [status\|key <k>\|activate\|deactivate]` | | Manage AEGIS Cloud sync |
|
|
216
184
|
| `/billing` | | Show subscription and billing info |
|
|
217
185
|
| `/skills [refresh]` | `/sk` | List and manage loaded skills |
|
|
218
186
|
| `/hooks [status\|list]` | | View and manage hooks |
|
|
@@ -349,8 +317,8 @@ Skills are Markdown files (`SKILL.md`) that teach aegiscode a specialized capabi
|
|
|
349
317
|
|
|
350
318
|
```
|
|
351
319
|
/skills # list discovered skills
|
|
352
|
-
/
|
|
353
|
-
/
|
|
320
|
+
/skills <name> # show a skill's full details
|
|
321
|
+
/skills refresh # rescan skill directories
|
|
354
322
|
```
|
|
355
323
|
|
|
356
324
|
A `SKILL.md` is just frontmatter + instructions:
|