nyxora 1.5.5 → 1.5.6
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
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
# Nyxora Agent 🤖
|
|
2
2
|
**Production-Grade Secure AI Execution Framework for Web3 Agents.**
|
|
3
3
|
|
|
4
|
-
[](https://github.com/perasyudha/Nyxora)
|
|
5
5
|
[](https://opensource.org/licenses/MIT)
|
|
6
6
|
[](#️-advanced-security-threat-model)
|
|
7
7
|
[](#️-advanced-security-threat-model)
|
|
8
8
|
[](#️-advanced-security-threat-model)
|
|
9
9
|
|
|
10
|
-
Nyxora (v1.5.
|
|
10
|
+
Nyxora (v1.5.6) is a **secure, non-custodial runtime infrastructure for autonomous onchain agents** built with a robust Monorepo architecture (Node.js & React). Designed for autonomous workflows with a premium Glassmorphism UI dashboard and strict client-side key isolation.
|
|
11
11
|
|
|
12
12
|
It operates under an institutional-grade **Cryptographically Bound Human-in-the-Loop** execution model, ensuring that Remote AIs (LLMs) never have unilateral access to your funds.
|
|
13
13
|
|
|
@@ -15,7 +15,7 @@ It operates under an institutional-grade **Cryptographically Bound Human-in-the-
|
|
|
15
15
|
|
|
16
16
|
## 🔥 Key Features
|
|
17
17
|
|
|
18
|
-
### Advanced Security Architecture (v1.5.
|
|
18
|
+
### Advanced Security Architecture (v1.5.6)
|
|
19
19
|
* **3-Tier IPC Architecture**: Nyxora is split into isolated processes: **Core** (LLM Runtime), **Policy Engine** (Guardrails on port 3001), and **Signer Vault** (Isolated Key Manager on Unix Sockets).
|
|
20
20
|
* **Cryptographically Bound Approval**: Policy changes and transactions requested by the AI are drafted as hashes (`sha256`). Approval via the UI requires a challenge nonce, preventing Man-in-the-Middle (MITM) attacks.
|
|
21
21
|
* **Immutable Policy Guardrails**: Transaction limits (e.g. `max_usd_per_tx`) are strictly enforced by the Policy Engine. The LLM has zero write-access to bypass these rules.
|
|
@@ -57,7 +57,7 @@ To dive deeper into the technical details of our Zero-Knowledge security archite
|
|
|
57
57
|
## 🚀 Quick Start & Installation
|
|
58
58
|
|
|
59
59
|
### Local Development & Execution
|
|
60
|
-
With the new v1.5.
|
|
60
|
+
With the new v1.5.6 Monorepo architecture, launching Nyxora is completely automated via the internal `launcher.ts` orchestrator.
|
|
61
61
|
|
|
62
62
|
```bash
|
|
63
63
|
git clone https://github.com/perasyudha/Nyxora.git
|
|
@@ -65,6 +65,8 @@ cd Nyxora
|
|
|
65
65
|
|
|
66
66
|
# 1. Install Dependencies
|
|
67
67
|
npm install
|
|
68
|
+
npx ts-node -T packages/core/src/gateway/cli.ts setup
|
|
69
|
+
|
|
68
70
|
|
|
69
71
|
# 2. Build the Dashboard UI
|
|
70
72
|
npm run build
|
package/bin/nyxora.js
CHANGED
package/package.json
CHANGED