Access Methods
Sandbox GHI is designed around a dashboard-first access model.
Renters use the web dashboard as the main control surface. Alert delivery is omnichannel — chat (Slack, Discord, Telegram-style), email, webhook, push, browser, WhatsApp/SMS, an API feed, and an in-app center — with CLI/SDK as an integration layer.
Rollout Plan
| Version | Access Method |
|---|---|
| V1 | Web Dashboard + omnichannel alert delivery |
| V2 | API / Webhook integration |
| V3 | CLI / SDK |
V1 — Web Dashboard
Connect Wallet
↓
Open Agent Marketplace
↓
Rent Agent
↓
Agent unlocks dashboard tools
↓
Configure filters
↓
Receive scans / alerts / reportsPlanned dashboard tools (based on Agent modules):
- Trench Scanner
- Wallet Watcher
- Risk Radar
- Narrative Hunter
- Dev / Early Wallet Alert
- Volume Spike Alert
- Liquidity Monitor
- Migration Tracker
V1 — Omnichannel Delivery
Alerts from your active operatives can route to multiple channels at once:
| Channel | Use |
|---|---|
| Chat | Slack, Discord, and a Telegram-style preview feed |
| batched digests on a schedule | |
| Webhook | JSON POSTs to your endpoint |
| Push | mobile / desktop push notifications |
| Browser | native browser notifications |
| WhatsApp / SMS | critical-only fallback |
| API event feed | SSE / stream for custom clients |
| In-app center | the notification inbox in the Command Center |
Rent Agent
↓
Open delivery settings
↓
Pick channels + severity rules (min market cap, volume threshold, critical-only, etc.)
↓
Agent routes notifications to every enabled channelDelivery is for fast notifications, not full session management. Core filtering, configuration, and session control stay in the dashboard.
Example alert preview format:
🚨 Solana Trench Alert
Token: $ABC
MC: $18K
Volume 5m: +240%
Top 10 holders: 21%
Early wallet sell pressure: Low
Risk: MediumV2 — API / Webhook
Rent Agent
↓
Generate API key or webhook URL
↓
Choose event types to subscribe to
↓
Agent sends JSON payloads to your endpointExample event payload:
{
"event": "new_solana_candidate",
"token": "TOKEN_ADDRESS",
"market_cap": 18000,
"volume_5m_change": 240,
"top_10_holder_percent": 21,
"early_wallet_sell_pressure": "low",
"risk_score": 62,
"timestamp": "2026-05-08T12:00:00Z"
}Use cases: custom dashboards, notification pipes, and delivery routing once channel support is finalized.
V3 — CLI / SDK
ghi login
ghi agents rent 420 --days 7
ghi watch launches --agent 420 --min-volume 5000
ghi alerts connect --channel slackThe CLI and SDK will allow developers and power users to integrate Sandbox GHI intelligence into their own tools and workflows.
Product Priority
1. Web Dashboard
2. Omnichannel alert delivery (chat, email, webhook, push, SMS, browser, API)
3. API / Webhook integration
4. CLI / SDK