@vizzor/cli 0.12.0 → 0.12.5

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
@@ -55,14 +55,19 @@ ETH at $2,112 | Bullish | Confidence: Medium-High
55
55
  **Any tradable crypto asset.** BTC, ETH, SOL, meme coins, new DEX launches, tokens by contract address — if it has a price, Vizzor can analyze it.
56
56
 
57
57
  - **Price predictions** — bull/bear/likely targets across 9 timeframes (5m to 3 months)
58
+ - **ChronoVisor engine** — mathematical prediction system using Bayesian inference, certainty-factor algebra, first-order logic rules, and meta-reasoning with 6 independent signal sources
58
59
  - **Microstructure analysis** — market structure, FVGs, VWAP, volume delta, liquidation map, order book depth, S/R zones, squeeze detection
59
60
  - **Token security audits** — honeypot detection, tax analysis, mint/blacklist flags, rug pull indicators
60
61
  - **On-chain forensics** — wallet analysis, whale tracking, holder concentration, token flow patterns
62
+ - **Blockchain fundamentals** — TVL, protocol revenue, developer activity, governance metrics, staking yields
61
63
  - **Derivatives positioning** — funding rates, open interest, long/short ratios from Binance Futures
64
+ - **Prediction markets** — integrates Gamma protocol data for market-implied probabilities
62
65
  - **Sentiment analysis** — Fear & Greed Index, news sentiment, buy/sell transaction ratios
63
66
  - **Trending discovery** — what tokens are moving right now across DexScreener and CoinGecko
64
67
  - **ICO tracking** — upcoming launches, fundraising rounds, investor data
68
+ - **Notifications & alerts** — price alerts, prediction tracking, interactive alerts panel with detail views
65
69
  - **Autonomous agents** — set-and-forget trading agents with paper/live execution
70
+ - **DeFi protocols** — Aave V3, Lido integrations with health monitoring and yield orchestration
66
71
 
67
72
  ---
68
73
 
@@ -204,8 +209,13 @@ Launch with `vizzor`. Interactive chat with live price ticker, streaming respons
204
209
  | `/track <wallet> [--chain <chain>]` | Wallet forensics |
205
210
  | `/trends` | Trending tokens + top gainers/losers |
206
211
  | `/audit <contract> [--chain <chain>]` | Smart contract audit |
207
- | `/add <symbol>` | Add token to live price ticker |
212
+ | `/add <symbol>` | Add token to live price ticker (any source: Binance, CoinGecko, DEX) |
208
213
  | `/remove <symbol>` | Remove token from ticker |
214
+ | `/alerts` | Interactive alerts panel — browse predictions, price alerts, notifications |
215
+ | `/alerts clear` | Mark all notifications as read |
216
+ | `/alerts hide` / `/alerts show` | Toggle alerts banner visibility |
217
+ | `/alerts purge [id\|all]` | Delete predictions, notifications, and alert rules |
218
+ | `/alerts delete <id\|all>` | Same as purge (alias) |
209
219
  | `/chain [<id>]` | Show/switch chain |
210
220
  | `/provider` | Show current AI provider |
211
221
  | `/provider <name>` | Switch to `anthropic`, `openai`, `gemini`, `ollama` |
@@ -214,10 +224,14 @@ Launch with `vizzor`. Interactive chat with live price ticker, streaming respons
214
224
  | `/agent start <name>` | Start agent |
215
225
  | `/agent stop <name>` | Stop agent |
216
226
  | `/agent status <name>` | Agent status + decisions |
227
+ | `/agent wallet <name>` | Show agent wallet balance |
228
+ | `/agent trades <name>` | Show agent trade history |
217
229
  | `/backtest` | Historical strategy backtest |
218
230
  | `/config` | Show config |
219
231
  | `/help` | Command reference |
220
232
 
233
+ **Alerts Panel:** Type `/alerts` to open the interactive panel. Use **Up/Down** to navigate predictions and alerts, **Enter** to view full details (entry price, confidence, outcome, signal snapshot), **Escape** to close.
234
+
221
235
  ### CLI Commands
222
236
 
223
237
  ```bash
@@ -306,6 +320,7 @@ Autonomous prediction agents that run a continuous **think → analyze → decid
306
320
  | **Momentum** | RSI + MACD + Bollinger + Funding | Short-term reversals |
307
321
  | **Trend-Following** | EMA Crossover + OBV + Fear & Greed | Swing trades |
308
322
  | **ML-Adaptive** | All TA + ML regime + ChronoVisor | Adaptive, all conditions |
323
+ | **ChronoVisor** | 6-signal Bayesian engine + FOL rules + meta-reasoning | Multi-timeframe predictions |
309
324
 
310
325
  ### Safety Pipeline (Live Trading)
311
326
 
@@ -368,11 +383,12 @@ Requires the API server running (`vizzor api start`).
368
383
 
369
384
  ### Pages
370
385
 
371
- - **AI Chat** — conversational interface with streaming, tool call progress, trade action cards
372
- - **Dashboard** — market overview, Fear & Greed, sentiment, regime, trending tokens, news
386
+ - **AI Chat** — conversational interface with streaming, tool call progress, trade action cards, conversation persistence
387
+ - **Dashboard** — market overview, Fear & Greed, sentiment, regime, trending tokens, news, prediction accuracy tracker
373
388
  - **Markets** — token analysis, wallet analyzer, on-chain intelligence
374
- - **Agents** — create, monitor, start/stop agents with paper/live mode
389
+ - **Agents** — create, monitor, start/stop agents with paper/live mode, portfolio chart, trade history
375
390
  - **Portfolio** — positions, trade history, P&L metrics
391
+ - **Notifications** — real-time notification panel with prediction detail modals, price alert management, desktop push notifications
376
392
  - **Settings** — API keys and provider configuration
377
393
 
378
394
  ---
@@ -393,30 +409,44 @@ All endpoints require `X-API-Key` header. Rate limited to 300 req/min per key.
393
409
  ### Endpoints
394
410
 
395
411
  ```
396
- GET /health # Health check (public)
397
- GET /docs # Swagger UI
398
- POST /v1/chat # AI chat (SSE streaming)
399
- POST /v1/chat/thread # Threaded chat reply
400
- GET /v1/market/price/:symbol # Price
401
- GET /v1/market/prices?symbols= # Batch prices
402
- GET /v1/market/trending # Trending tokens
403
- GET /v1/market/fear-greed # Fear & Greed Index
404
- GET /v1/market/ml-health # ML sidecar status
405
- GET /v1/market/trenches # Trenches scanner
406
- GET /v1/chronovisor/:symbol # ChronoVisor prediction
407
- POST /scan # Token security scan
408
- POST /trends # Market trends
409
- POST /track # Wallet forensics
410
- POST /predict # AI prediction
411
- POST /audit # Contract audit
412
- POST /v1/backtest # Backtest
413
- GET /v1/agents # List agents
414
- POST /v1/agents # Create agent
415
- POST /v1/agents/:name/start # Start agent
416
- POST /v1/agents/:name/stop # Stop agent
417
- GET /v1/portfolio/:id # Portfolio
418
- POST /v1/agents/emergency-stop # Global kill switch
419
- WS /ws # WebSocket real-time push
412
+ GET /health # Health check (public)
413
+ GET /docs # Swagger UI
414
+ POST /v1/chat # AI chat (SSE streaming)
415
+ POST /v1/chat/thread # Threaded chat reply
416
+ GET /v1/conversations # List conversations
417
+ GET /v1/conversations/:id # Get conversation with messages
418
+ GET /v1/market/price/:symbol # Price
419
+ GET /v1/market/prices?symbols= # Batch prices
420
+ GET /v1/market/trending # Trending tokens
421
+ GET /v1/market/fear-greed # Fear & Greed Index
422
+ GET /v1/market/ml-health # ML sidecar status
423
+ GET /v1/market/trenches # Trenches scanner
424
+ GET /v1/chronovisor/:symbol # ChronoVisor prediction
425
+ GET /v1/chronovisor/predictions # List all predictions
426
+ GET /v1/chronovisor/accuracy # Prediction accuracy metrics
427
+ GET /v1/notifications # List notifications
428
+ GET /v1/notifications/:id # Get notification detail
429
+ POST /v1/notifications/mark-read # Mark all as read
430
+ DELETE /v1/notifications/:id # Delete notification
431
+ GET /v1/notifications/rules # List alert rules
432
+ POST /v1/notifications/rules # Create alert rule
433
+ DELETE /v1/notifications/rules/:id # Delete alert rule
434
+ POST /scan # Token security scan
435
+ POST /trends # Market trends
436
+ POST /track # Wallet forensics
437
+ POST /predict # AI prediction
438
+ POST /audit # Contract audit
439
+ POST /v1/backtest # Backtest
440
+ GET /v1/agents # List agents
441
+ POST /v1/agents # Create agent
442
+ POST /v1/agents/:name/start # Start agent
443
+ POST /v1/agents/:name/stop # Stop agent
444
+ GET /v1/agents/:name/wallet # Agent wallet balance
445
+ GET /v1/agents/:name/trades # Agent trade history
446
+ GET /v1/agents/:name/stats # Agent trade statistics
447
+ GET /v1/portfolio/:id # Portfolio
448
+ POST /v1/agents/emergency-stop # Global kill switch
449
+ WS /ws # WebSocket real-time push
420
450
  ```
421
451
 
422
452
  ---