Loading...
Loading...
News and alert monitoring skill for OpenClaw. Monitors X/Twitter accounts, crypto prices, web news RSS feeds, and sends alerts when important events occur. Use when the user wants to track news, get price alerts, monitor specific Twitter accounts, or set up automated notifications for topics they care about.
npx skill4agent add codexclawd/codexclawd newsclawd# Monitor a Twitter account
newsclawd twitter --account @elonmusk --keywords "AI,tesla,spacex"
# Set crypto price alert
newsclawd crypto --symbol BTCUSDT --above 70000 --below 60000
# RSS feed monitoring
newsclawd rss --url https://feeds.bbci.co.uk/news/rss.xml --keywords "AI,technology"
# Website change detection
newsclawd web --url https://example.com --selector ".price" --interval 1h~/.config/newsclawd/config.json{
"alerts": [
{
"type": "twitter",
"account": "@notabanker1",
"keywords": ["crypto", "AI"],
"enabled": true
},
{
"type": "crypto",
"symbol": "BTCUSDT",
"above": 70000,
"below": 60000
}
],
"notifications": {
"telegram": true,
"discord": false,
"email": false
}
}# Every 5 minutes for crypto
*/5 * * * * newsclawd check crypto
# Every hour for news
0 * * * * newsclawd check rss
# Every 15 min for Twitter
*/15 * * * * newsclawd check twitteropenclaw cron add| Script | Purpose |
|---|---|
| Main monitoring daemon |
| X/Twitter checks (requires bird CLI) |
| Binance price checks |
| RSS feed parsing |
| Website change detection |
| Send alerts via configured channels |
# User: "Alert me if BTC drops below 60k or goes above 70k"
python3 scripts/crypto.py --symbol BTCUSDT --below 60000 --above 70000# User: "Watch @matrixdotorg for any matrix updates"
python3 scripts/twitter.py --account @matrixdotorg --keywords "update,release,security"# User: "Keep me updated on AI news from TechCrunch"
python3 scripts/rss.py --url https://techcrunch.com/category/artificial-intelligence/feed/ --keywords "AI,LLM,OpenAI"# User: "Tell me when the price on this product page changes"
python3 scripts/web.py --url "https://store.example.com/product/123" --selector ".price-amount" --interval 1h🚨 NewsClawd Alert
Type: Crypto Price
Asset: BTCUSDT
Trigger: Above $70,000
Current: $71,245 (+5.2% 24h)
Time: 2026-02-06 14:23 UTCbirdpython3-requestspython3-feedparser~/.config/newsclawd/.env