@krishivpb60/aether-ai-cli 1.3.5 → 1.3.7
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/HIGHLIGHTS.md +10 -0
- package/README.md +17 -2
- package/package.json +1 -1
- package/src/ui/dashboard.html +1 -1
package/HIGHLIGHTS.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
# Aether CLI v1.3.7 Highlights
|
|
2
|
+
- **Readme Updates**:
|
|
3
|
+
- Updates documentation to display interactive Git TUI, Autopilot debug loop, and Web Telemetry Dashboard companion commands.
|
|
4
|
+
|
|
5
|
+
# Aether CLI v1.3.6 Highlights
|
|
6
|
+
- **DX Fixes & Upgrades (Git TUI, Autopilot, Dashboard)**:
|
|
7
|
+
- Fixes non-interactive Git TUI test hangs in git-initialized home directories.
|
|
8
|
+
- Fixes visual HUD telemetry version rendering.
|
|
9
|
+
- Updates project package-lock mappings.
|
|
10
|
+
|
|
1
11
|
# Aether CLI v1.3.5 Highlights
|
|
2
12
|
- **Visual Telemetry Dashboard HUD (`aether dashboard` / `aether telemetry`)**:
|
|
3
13
|
- Adds a local zero-dependency Web Server hosting a cyberpunk observability dashboard HUD.
|
package/README.md
CHANGED
|
@@ -29,6 +29,9 @@
|
|
|
29
29
|
- ⚡ **Single-Shot Queries** — Quick one-off questions directly from the CLI
|
|
30
30
|
- 🧠 **4 Reasoning Modes** — Synthesis, Research, Architect, Titan Fusion — each with unique system prompts
|
|
31
31
|
- 📎 **File Context Injection** — Attach code files, logs, or documents for context-aware AI responses
|
|
32
|
+
- 🤖 **Autopilot Debug Loop** — Automatically correct build/test failures using AI self-correcting feedback loop
|
|
33
|
+
- 🌿 **Interactive Git TUI** — Beautiful cyberpunk ASCII branch tree commit history & interactive file staging checkbox menu
|
|
34
|
+
- 📊 **Web HUD Dashboard** — Companion local zero-dependency telemetry dashboard displaying real-time latencies & provider status
|
|
32
35
|
- 🔄 **Failover Mesh** — Automatic failback across all configured providers
|
|
33
36
|
- 🔢 **Local Math Solver** — Evaluates mathematical expressions without an API call
|
|
34
37
|
- 🤖 **Krylo Companion** — Offline cyberpunk companion bot when no API keys are configured
|
|
@@ -189,8 +192,20 @@ Inside interactive chat mode, use these slash commands:
|
|
|
189
192
|
| `/cmd add <name> <template>` | Create a custom command shortcut |
|
|
190
193
|
| `/cmd remove <name>` | Delete a custom command |
|
|
191
194
|
| `/game` | Start the mainframe hacking mini-game |
|
|
192
|
-
| `/
|
|
193
|
-
| `/history-clear` | Clear saved chat history |
|
|
195
|
+
| `/history` | List, switch, and resume past interactive chat sessions |
|
|
196
|
+
| `/history-clear` | Clear saved persistent chat history |
|
|
197
|
+
| `/autopilot <mode\|debug [cmd]>` | View/switch autopilot safety level or run autonomous debug loop |
|
|
198
|
+
| `/git` | Launch interactive cyberpunk Git TUI and file stager checkbox menu |
|
|
199
|
+
| `/dashboard` | Spawn zero-dependency local web server and launch telemetry dashboard HUD |
|
|
200
|
+
| `/tokens` | View detailed session token usage and exchanges telemetry |
|
|
201
|
+
| `/update` | Force check for updates and update Aether CLI manually |
|
|
202
|
+
| `/review` | Run git diff and stream an AI code review |
|
|
203
|
+
| `/diagnose [cmd]` | Run build/tests and AI-debug any errors |
|
|
204
|
+
| `/explain <file>` | AI-explain the design and logic of a file |
|
|
205
|
+
| `/refactor <file>` | AI-refactor the code of a target file |
|
|
206
|
+
| `/bug <file>` | Scan a file to detect logical edge case failures |
|
|
207
|
+
| `/doc <file>` | Write documentation, inline comments, or JSDoc |
|
|
208
|
+
| `/translate <file> <lang>` | AI-translate file code into another target language |
|
|
194
209
|
| `/exit` | End session |
|
|
195
210
|
|
|
196
211
|
---
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@krishivpb60/aether-ai-cli",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.7",
|
|
4
4
|
"description": "Aether Core AI — A cyberpunk command-line AI assistant with multi-mode reasoning, 12-node failover mesh, file context injection, and offline fallbacks.",
|
|
5
5
|
"main": "src/cli.js",
|
|
6
6
|
"bin": {
|