A real-time crypto trading dashboard in Telegram chat. An AI agent based-on HKUDS/nanobot inspired by Clawdbot.
cd tradeclaw
uv run python -m tradeclaw
OR
pip install tradeclaw
tradeclaw onboard # Initialize config
# Add API key to ~/.tradeclaw/config.json
tradeclaw agent -m "Identify momentum in last 6 hours." # Single query
tradeclaw agent # Interactive modeClawdbot of real-time crypto trading dashboard using CoinGecko.
An AI agent which has access to crypto trading real-time data, provides alert monitor, trading momentum scanner and answer pricing data.
Dashboard is not feasible to check on phone.
Clawdbot demostrated general public is happy about interacting AI agent through mobile messenging app.
Crypto trading data is presented as chats with AI agent, instead of interacting with a dashboard. (echo with a trend talked by one of the Concensus stage speaker).
Based on HKUDS/nanobot, which is a lightweight version of Clawdbot.
Wrapped functionalities in subagents, further instructions in agent skills.
{
"providers": {
"openrouter": {
"apiKey": "sk-or-..."
}
},
"channels": {
"telegram": {
"enabled": true,
"token": "..."
}
}
}tradeclaw/
├── agent/ # Core loop, context, memory, tools
├── channels/ # Messaging platform integrations
├── providers/ # LLM provider registry
├── skills/ # Domain-specific capabilities
├── bus/ # Async message queue
└── cron/ # Scheduled task service
MIT License
