nyxora 1.0.6 → 1.0.8
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 +45 -22
- package/config.yaml +4 -0
- package/dashboard/dist/assets/{index-DDP-JdBL.js → index-BJ1Hl0fx.js} +1 -1
- package/dashboard/dist/index.html +1 -1
- package/dist/agent/reasoning.js +11 -2
- package/dist/config/parser.js +12 -2
- package/dist/gateway/cli.js +59 -45
- package/dist/gateway/setup.js +170 -0
- package/dist/gateway/telegram.js +3 -1
- package/dist/web3/config.js +7 -2
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ With a beautiful, real-time dashboard inspired by modern control centers, Nyxora
|
|
|
7
7
|
## Features ✨
|
|
8
8
|
|
|
9
9
|
### 🧠 Core Agent Capabilities
|
|
10
|
-
* **Multi-LLM Support**: Seamlessly switch between Google Gemini, OpenAI, or local Ollama models dynamically.
|
|
10
|
+
* **Multi-LLM Support**: Seamlessly switch between Google Gemini, OpenAI, OpenRouter (unlimited models!), or local Ollama models dynamically.
|
|
11
11
|
* **Round-Robin API Rotation**: Add up to 10 API keys via the dashboard. The system will auto-rotate them to prevent rate-limiting and token drain.
|
|
12
12
|
* **Deep Personalization**: Feed the agent custom rules via `user.md` and define its core persona via `IDENTITY.md`.
|
|
13
13
|
* **Multi-Lingual Auto-Sync**: The agent natively detects your language and replies in the exact same language automatically.
|
|
@@ -26,36 +26,59 @@ With a beautiful, real-time dashboard inspired by modern control centers, Nyxora
|
|
|
26
26
|
### 📱 Telegram Integration
|
|
27
27
|
* Take your agent anywhere! Connect Nyxora to a Telegram Bot to execute trades, check prices, and chat on the go.
|
|
28
28
|
|
|
29
|
-
## Quick Start 🚀
|
|
29
|
+
## Quick Start 🚀 (Global Install)
|
|
30
30
|
|
|
31
|
-
|
|
32
|
-
Clone the repository and install dependencies for both the backend and the dashboard:
|
|
31
|
+
Nyxora is now available on NPM! You can install it as a global CLI tool on your operating system.
|
|
33
32
|
|
|
33
|
+
### 1. Installation
|
|
34
|
+
Open your terminal (Command Prompt, PowerShell, or Linux Terminal) and run:
|
|
34
35
|
```bash
|
|
35
|
-
|
|
36
|
-
cd Nyxora
|
|
37
|
-
npm install
|
|
38
|
-
cd dashboard && npm install && cd ..
|
|
36
|
+
npm install -g nyxora
|
|
39
37
|
```
|
|
40
38
|
|
|
41
|
-
### 2.
|
|
42
|
-
|
|
39
|
+
### 2. Launching Nyxora
|
|
40
|
+
No need to navigate to any specific folder! Just type:
|
|
43
41
|
```bash
|
|
44
|
-
|
|
42
|
+
nyxora
|
|
45
43
|
```
|
|
46
|
-
|
|
44
|
+
On first launch, Nyxora will greet you with an **Interactive Setup Wizard**. This CLI wizard will guide you to securely configure your LLM providers, API keys, and Web3 Wallet.
|
|
47
45
|
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
46
|
+
Nyxora will automatically:
|
|
47
|
+
1. Initialize a secure vault in your `~/.nyxora/` directory.
|
|
48
|
+
2. Store your Wallet Private Key securely in `~/.nyxora/.env`.
|
|
49
|
+
3. Store operational data (API Keys, RPCs) in `~/.nyxora/config.yaml`.
|
|
50
|
+
4. Start the local server and open the Web Dashboard automatically!
|
|
51
|
+
|
|
52
|
+
> 💡 **Tip:** You can invoke the setup wizard at any time to update your keys by running `nyxora setup`.
|
|
53
|
+
|
|
54
|
+
### 3. Configuration
|
|
55
|
+
When the dashboard opens, you can modify any operational parameters in the **Settings** tab. The dashboard allows you to type custom model names, switch RPCs, and rotate your API keys effortlessly.
|
|
56
|
+
|
|
57
|
+
## Local Development (For Contributors) 🏗️
|
|
58
|
+
|
|
59
|
+
If you want to modify Nyxora's code, build new skills, or contribute:
|
|
60
|
+
|
|
61
|
+
1. Clone the repo:
|
|
62
|
+
```bash
|
|
63
|
+
git clone https://github.com/perasyudha/Nyxora.git
|
|
64
|
+
cd Nyxora
|
|
65
|
+
```
|
|
66
|
+
2. Install dependencies:
|
|
67
|
+
```bash
|
|
68
|
+
npm install
|
|
69
|
+
cd dashboard && npm install && cd ..
|
|
70
|
+
```
|
|
71
|
+
3. Run the development build:
|
|
72
|
+
```bash
|
|
73
|
+
npm run build && npm run start
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
*To deploy your own branch to NPM, bump the version and run `npm run deploy`!*
|
|
54
77
|
|
|
55
|
-
## Architecture
|
|
56
|
-
* **Backend**: Node.js, Express, Viem (Web3), node-telegram-bot-api, OpenAI API
|
|
57
|
-
* **Frontend**: React, Vite,
|
|
58
|
-
* **Data**: Local
|
|
78
|
+
## Architecture
|
|
79
|
+
* **Backend**: Node.js, Express, Viem (Web3), node-telegram-bot-api, OpenAI API.
|
|
80
|
+
* **Frontend**: React, Vite, Vanilla CSS, Web Speech API (TTS/STT).
|
|
81
|
+
* **Data**: Local `~/.nyxora/config.yaml` and `~/.nyxora/memory.json`.
|
|
59
82
|
|
|
60
83
|
## License
|
|
61
84
|
MIT License
|