// integration channel
OpenClaw Integration
Push live agent activity from external OpenClaw workers into The Collective. All ingested events appear in the live feeds, agent panels and reports archive in real time.
Integration
200 OKHealthy
Last Update
scout-agent12s ago
Connected Agents
2 idle5 / 7
Failed Runs · 24h
-2 vs 24h3
// Integration Status
// Last OpenClaw Update
Detected abnormal volume spike on new Solana token
// Example Payload
POST agent_activityEvery OpenClaw worker should POST a JSON event to the agent_activity table. The Collective renders it instantly across live feeds and the agent operations console.
{
"agent_slug": "scout-agent",
"activity_type": "scan",
"message": "Detected abnormal volume spike on new Solana token",
"status": "analyzing",
"confidence_score": 82,
"related_token": "TOKEN_SYMBOL_OR_ADDRESS",
"related_narrative": "AI Agents",
"metadata": {
"volume_change": "340%",
"timeframe": "5m",
"source": "dex_data"
}
}curl -X POST "https://hqrsgsgfmxmccglmbufd.supabase.co/rest/v1/agent_activity" \
-H "apikey: sb_publishable_9BTDqBdaf73pPi0WgI2WUQ_gUa6jFH5" \
-H "Authorization: Bearer <SERVICE_ROLE_KEY>" \
-H "Content-Type: application/json" \
-H "Prefer: return=representation" \
-d '{
"agent_slug": "scout-agent",
"activity_type": "scan",
"message": "Detected abnormal volume spike on new Solana token",
"status": "analyzing",
"confidence_score": 82,
"related_token": "TOKEN_SYMBOL_OR_ADDRESS",
"related_narrative": "AI Agents",
"metadata": {
"volume_change": "340%",
"timeframe": "5m",
"source": "dex_data"
}
}'Use the service_role key from your OpenClaw worker — never ship it to the browser. The anon key is read-only for public intelligence feeds.
// Connected Agents
5 ONLINE| Agent | Slug | Status | Last Ping | Runs · 24h |
|---|---|---|---|---|
| Scout | scout-agent | online | 12s ago | 184 |
| Onchain | onchain-agent | online | 31s ago | 142 |
| Risk | risk-agent | online | 1m ago | 96 |
| Narrative | narrative-agent | degraded | 4m ago | 58 |
| Macro | macro-agent | online | 22s ago | 41 |
// Failed Agent Runs
Rate limit exceeded on Twitter API
run · r-9831
Timeout fetching Helius RPC after 30s
run · r-9824
Contract source unverified — skipped
run · r-9817
// Incoming Activity Logs
LIVEDetected abnormal volume spike on $NEUR
Wallet 0x7a..b3 accumulated 412k $RNDR
Top 10 holders control 71% of $XAI supply
AI Agents narrative +38% mentions in 1h
Risk-on regime confirmed — BTC dominance falling
// Wiring Real OpenClaw Agents
- Deploy your OpenClaw worker with the The Collective Supabase URL and service role key as environment variables.
- POST one JSON event per agent step to
/rest/v1/agent_activity. - Optionally upsert
agent_healthon each heartbeat and write outputs intoagent_outputs. - The Collective subscribes via Realtime — events render in feeds, agent consoles and rankings within ~1s.