nyxora 1.5.5 → 1.5.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/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
- [![Version](https://img.shields.io/badge/version-1.5.5-blue.svg)](https://github.com/perasyudha/Nyxora)
4
+ [![Version](https://img.shields.io/badge/version-1.5.7-blue.svg)](https://github.com/perasyudha/Nyxora)
5
5
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
6
6
  [![Security: Production-Grade](https://img.shields.io/badge/Security-Production--Grade-blue.svg)](#️-advanced-security-threat-model)
7
7
  [![Execution: Cryptographic Approval](https://img.shields.io/badge/Execution-Cryptographic--Approval-orange.svg)](#️-advanced-security-threat-model)
8
8
  [![Privacy: Local-Only Keys](https://img.shields.io/badge/Privacy-Local--Only--Keys-success.svg)](#️-advanced-security-threat-model)
9
9
 
10
- Nyxora (v1.5.5) 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.
10
+ Nyxora (v1.5.7) 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.5)
18
+ ### Advanced Security Architecture (v1.5.7)
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.5 Monorepo architecture, launching Nyxora is completely automated via the internal `launcher.ts` orchestrator.
60
+ With the new v1.5.7 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
@@ -1,3 +1,7 @@
1
1
  #!/usr/bin/env node
2
+ const path = require('path');
3
+ process.env.TS_NODE_SKIP_IGNORE = "true";
4
+ process.env.TS_NODE_TRANSPILE_ONLY = "true";
5
+ process.env.TS_NODE_PROJECT = path.join(__dirname, '../tsconfig.json');
2
6
  require('ts-node/register');
3
7
  require('../launcher.ts');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nyxora",
3
- "version": "1.5.5",
3
+ "version": "1.5.7",
4
4
  "workspaces": [
5
5
  "packages/*"
6
6
  ],
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nyxora/core",
3
- "version": "1.5.5",
3
+ "version": "1.5.7",
4
4
  "private": true,
5
5
  "main": "src/gateway/server.ts",
6
6
  "dependencies": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "dashboard",
3
3
  "private": true,
4
- "version": "1.5.5",
4
+ "version": "1.5.7",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "dev": "vite",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nyxora/policy",
3
- "version": "1.5.5",
3
+ "version": "1.5.7",
4
4
  "private": true,
5
5
  "main": "src/server.ts",
6
6
  "dependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nyxora/signer",
3
- "version": "1.5.5",
3
+ "version": "1.5.7",
4
4
  "private": true,
5
5
  "main": "src/server.ts",
6
6
  "dependencies": {