navada-edge-cli 2.2.0 → 2.2.2

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 CHANGED
@@ -6,6 +6,32 @@ An AI-powered terminal agent for the **NAVADA Edge Network**. Full computer acce
6
6
  npm install -g navada-edge-cli
7
7
  ```
8
8
 
9
+ ## Executive Summary
10
+
11
+ **NAVADA Edge CLI** is a production-grade terminal tool that gives developers and infrastructure teams an AI agent with full system access, connected to a distributed computing network.
12
+
13
+ **The problem:** Managing distributed infrastructure across multiple cloud providers, on-prem servers, and services requires jumping between terminals, dashboards, and APIs. AI assistants answer questions but can't execute.
14
+
15
+ **The solution:** One CLI that talks naturally, executes commands locally and remotely, and unifies access to your entire infrastructure through a conversational AI agent with 13 built-in tools.
16
+
17
+ **Key differentiators:**
18
+ - **Conversational AI agent** — type naturally, the agent uses tools to execute (not just answer)
19
+ - **Full computer access** — shell, files, processes on your local machine
20
+ - **Distributed network** — 4 physical nodes connected via Tailscale VPN, managed from one terminal
21
+ - **Two sub-agents** — Lucas CTO (infrastructure) and Claude CoS (communications + automation)
22
+ - **Cloud-native** — Cloudflare (R2, Flux AI, Stream, DNS), Azure (n8n), private Docker registry
23
+ - **5 AI models** — Claude Sonnet 4, GPT-4o, Qwen Coder (FREE), YOLO v8, Flux (FREE)
24
+ - **45+ slash commands** — direct access when you need precision
25
+ - **4 themes** — dark, crow (achromatic), matrix, light
26
+ - **Mobile access** — HTTP server with web UI, accessible from phone
27
+ - **Cross-platform** — Windows, macOS, Linux
28
+ - **Docker ready** — run as a container with `docker run -it navada-edge-cli`
29
+ - **Zero config to start** — install, login with any API key, start talking
30
+
31
+ **Who it's for:** DevOps engineers, infrastructure teams, AI developers, and anyone who manages distributed systems and wants an AI copilot in their terminal.
32
+
33
+ **Pricing:** The CLI is free and open source (MIT). AI features require your own API key (Anthropic, OpenAI, or HuggingFace — Qwen is free). Network features require access to a NAVADA Edge Network instance.
34
+
9
35
  ```
10
36
  ╭─────────────────────────────────────────────────────────╮
11
37
  │ ███╗ ██╗ █████╗ ██╗ ██╗ █████╗ ██████╗ █████╗ │
package/lib/registry.js CHANGED
@@ -59,7 +59,38 @@ async function execute(input) {
59
59
  return;
60
60
  }
61
61
 
62
- // No slash — treat as natural language route to AI agent
62
+ // No slash — check if first word is a known command anyway
63
+ const firstWord = trimmed.split(/\s+/)[0].toLowerCase();
64
+ const restArgs = trimmed.split(/\s+/).slice(1);
65
+
66
+ // Check built-in commands (login, setup, status, etc.)
67
+ if (commands[firstWord]) {
68
+ try {
69
+ await commands[firstWord].handler(restArgs);
70
+ } catch (e) {
71
+ const ui = require('./ui');
72
+ console.log(ui.error(e.message));
73
+ }
74
+ return;
75
+ }
76
+
77
+ // Check user aliases
78
+ const userAliases = config.getAliases();
79
+ if (userAliases[firstWord]) {
80
+ const expanded = userAliases[firstWord].split(/\s+/);
81
+ const aliasCmd = commands[expanded[0]];
82
+ if (aliasCmd) {
83
+ try {
84
+ await aliasCmd.handler([...expanded.slice(1), ...restArgs]);
85
+ } catch (e) {
86
+ const ui = require('./ui');
87
+ console.log(ui.error(e.message));
88
+ }
89
+ return;
90
+ }
91
+ }
92
+
93
+ // Not a command — treat as natural language → route to AI agent
63
94
  try {
64
95
  await commands['chat'].handler(trimmed.split(/\s+/));
65
96
  } catch (e) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "navada-edge-cli",
3
- "version": "2.2.0",
3
+ "version": "2.2.2",
4
4
  "description": "Interactive CLI for the NAVADA Edge Network — explore nodes, agents, Cloudflare, AI, Docker, and MCP from your terminal",
5
5
  "main": "lib/cli.js",
6
6
  "bin": {