Install
openclaw skills install wm-tippWM 2026 Tipps mit Polymarket-Quoten. Automatische Daily-Tipps an Telegram.
openclaw skills install wm-tippAutomatische WM-Tipps mit Polymarket-Quoten. Täglich 18:00 MESZ.
clawhub install wm-tipp
Environment-Variablen (setzen vor dem Script):
# Telegram Gateway Endpoint
export WM_TELEGRAM_API="http://localhost:8080/api/telegram/send"
# Empfänger als JSON-Array
export WM_CHAT_IDS='[{"name": "Alice", "chat_id": "123456789"}, {"name": "Bob", "chat_id": "987654321"}]'
Beispiel-Cron:
# Täglich um 18:00 MESZ (16:00 UTC)
0 16 * * * WM_TELEGRAM_API=http://localhost:8080/api/telegram/send WM_CHAT_IDS='[{"name":"Du","chat_id":"DEINE_ID"}]' /usr/bin/python3 /home/HolBot/skills/wm-tipp/scripts/wm_tipps.py >> /tmp/wm_tipp.log 2>&1
data/wm2026_schedule.json bearbeiten:
{
"games": [
{
"date": "2026-06-11",
"time_mesz": "21:00",
"team1": "Mexiko",
"team2": "Südafrika",
"stadium": "Estadio Azteca",
"group": "A",
"stage": "Gruppenphase"
}
]
}
In scripts/wm_tipps.py das TIPS-Dictionary bearbeiten:
TIPS = {
("Deutschland", "Curaçao"): {"tipp": "4:0", "reason": "..."},
}
https://gamma-api.polymarket.com/marketsdata/polymarket_cache.json (1h TTL)wm-tipp/
├── SKILL.md
├── scripts/
│ └── wm_tipps.py # Hauptscript
└── data/
├── wm2026_schedule.json # Spielplan
├── wm_tipps.json # Gespielte Tipps
└── polymarket_cache.json # Polymarket-Cache
Kein API-Key nötig. Spielplan und Tipps einfach anpassen.