@vizzor/cli 0.3.4 → 0.4.0
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 +34 -1
- package/dist/index.js +6363 -5476
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -205,6 +205,7 @@ vizzor config init # Initialize config
|
|
|
205
205
|
vizzor config set <key> <value> # Set config value
|
|
206
206
|
vizzor config show # Show config
|
|
207
207
|
vizzor bot start [options] # Start Discord/Telegram bots
|
|
208
|
+
vizzor bot validate # Check bot token configuration
|
|
208
209
|
```
|
|
209
210
|
|
|
210
211
|
### TUI Slash Commands
|
|
@@ -236,6 +237,29 @@ vizzor bot start [options] # Start Discord/Telegram bots
|
|
|
236
237
|
|
|
237
238
|
**Price Ticker:** Arrow keys to navigate, **Enter** to trigger full AI prediction for any token, **Tab** to toggle focus.
|
|
238
239
|
|
|
240
|
+
### Discord Bot
|
|
241
|
+
|
|
242
|
+
| Command | Description |
|
|
243
|
+
|---------|-------------|
|
|
244
|
+
| `/scan <address>` | Token security + risk scan |
|
|
245
|
+
| `/trends` | Trending tokens + market data |
|
|
246
|
+
| `/track <wallet>` | Wallet forensics |
|
|
247
|
+
| `/ico` | Upcoming launches and rounds |
|
|
248
|
+
| `/audit <contract>` | Contract audit |
|
|
249
|
+
| `/price <symbol>` | Live price check |
|
|
250
|
+
| `/predict <symbol>` | AI prediction with signals |
|
|
251
|
+
| `/wallet <address>` | ETH wallet balance |
|
|
252
|
+
| `/agent_create` | Create a trading agent |
|
|
253
|
+
| `/agent_list` | List all agents |
|
|
254
|
+
| `/agent_start` | Start an agent |
|
|
255
|
+
| `/agent_stop` | Stop an agent |
|
|
256
|
+
| `/agent_status` | Agent status & decisions |
|
|
257
|
+
| `/agent_delete` | Delete an agent |
|
|
258
|
+
| `/help` | Show all commands |
|
|
259
|
+
| *@mention* | AI-powered chat with live data |
|
|
260
|
+
|
|
261
|
+
**Setup**: Enable the `MESSAGE_CONTENT` privileged intent in the [Discord Developer Portal](https://discord.com/developers/applications) for @mention AI chat.
|
|
262
|
+
|
|
239
263
|
### Telegram Bot
|
|
240
264
|
|
|
241
265
|
| Command | Description |
|
|
@@ -245,7 +269,16 @@ vizzor bot start [options] # Start Discord/Telegram bots
|
|
|
245
269
|
| `/track <wallet>` | Wallet forensics |
|
|
246
270
|
| `/ico` | Upcoming launches and rounds |
|
|
247
271
|
| `/audit <contract>` | Contract audit |
|
|
248
|
-
|
|
|
272
|
+
| `/price <symbol>` | Live price check |
|
|
273
|
+
| `/predict <symbol>` | AI prediction with signals |
|
|
274
|
+
| `/wallet <address>` | ETH wallet balance |
|
|
275
|
+
| `/agent_create` | Create a trading agent |
|
|
276
|
+
| `/agent_list` | List all agents |
|
|
277
|
+
| `/agent_start` | Start an agent |
|
|
278
|
+
| `/agent_stop` | Stop an agent |
|
|
279
|
+
| `/agent_status` | Agent status & decisions |
|
|
280
|
+
| `/agent_delete` | Delete an agent |
|
|
281
|
+
| *Any text* | AI-powered chat with live data |
|
|
249
282
|
|
|
250
283
|
---
|
|
251
284
|
|