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 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
- ### 1. Installation
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
- git clone https://github.com/perasyudha/Nyxora.git
36
- cd Nyxora
37
- npm install
38
- cd dashboard && npm install && cd ..
36
+ npm install -g nyxora
39
37
  ```
40
38
 
41
- ### 2. Configuration
42
- Copy the `.env.example` file to `.env` and fill in your private keys.
39
+ ### 2. Launching Nyxora
40
+ No need to navigate to any specific folder! Just type:
43
41
  ```bash
44
- cp .env.example .env
42
+ nyxora
45
43
  ```
46
- > **⚠️ WARNING**: NEVER commit your `.env` file! It contains your wallet's private key, API keys, and Telegram Bot Token.
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
- ### 3. Run the Dashboard & Bot
49
- Nyxora runs a unified backend API, a Telegram Bot listener, and a Vite React frontend concurrently.
50
- ```bash
51
- npm run build && npm run dashboard
52
- ```
53
- This will automatically launch the UI in your default web browser at `http://localhost:5173`.
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 (compatible with Gemini & Ollama).
57
- * **Frontend**: React, Vite, Tailwind/Vanilla CSS, Web Speech API (TTS/STT).
58
- * **Data**: Local `config.yaml` for settings and `memory.json` for persistent agent conversations.
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
package/config.yaml CHANGED
@@ -5,6 +5,10 @@ llm:
5
5
  provider: gemini
6
6
  model: gemini-2.5-flash
7
7
  temperature: 0.2
8
+ credentials: {}
8
9
  memory:
9
10
  type: file
10
11
  path: ./memory.json
12
+ integrations:
13
+ telegram:
14
+ enabled: false