polymarket-telegram-picks
PassAudited by ClawScan on May 1, 2026.
Overview
This skill appears coherent and disclosed, but it will run included Python scripts, use Telegram bot credentials, optionally run on a daily schedule, and send AI-generated betting recommendations to Telegram.
Install only if you are comfortable with OpenClaw running the included Python scripts, storing or providing a Telegram bot token, sending the generated recommendations to Telegram, and optionally scheduling daily automated messages. Verify the source, protect credentials, and do not rely solely on AI-generated betting picks for financial decisions.
Findings (6)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
A user must rely on the provided artifact contents rather than a verifiable upstream project identity.
The artifacts include readable source, but no upstream homepage or provenance is provided, so users have less context for trusting the package origin.
Source: unknown; Homepage: none
Review the included files before installing and prefer obtaining the skill from a trusted or verifiable source.
Installing the skill enables the assistant, when invoked or scheduled, to execute these included scripts on the local environment.
The skill directs the agent to run local Python scripts and pass generated text to the Telegram sender. This is central to the stated purpose and uses fixed script paths.
python3 scripts/fetch_polymarket.py ... python3 scripts/send_telegram.py "你的分析内容(推荐赛事 + 理由)"
Only install after reviewing the scripts, and keep invocation/scheduling limited to the intended Polymarket-to-Telegram workflow.
The Telegram bot token is a sensitive credential that can authorize bot actions, especially sending messages as that bot.
The sender reads Telegram bot credentials and a chat ID from environment variables or config so it can post messages.
token = os.environ.get("TELEGRAM_BOT_TOKEN") ... chat_id = os.environ.get("TELEGRAM_CHAT_ID")Store the token securely, avoid committing config/config.json, and use a bot/chat with only the permissions needed for this notification use case.
Anything included in the generated message leaves the local/OpenClaw environment and is delivered through Telegram.
The generated recommendation text is sent to Telegram's external Bot API for the configured chat.
body = urlencode({"chat_id": chat_id, "text": text, "disable_web_page_preview": "true"}).encode()Do not include private information in the analysis message unless you are comfortable sending it to the configured Telegram chat.
Users may over-trust AI-generated betting recommendations and lose money if they act on them.
The skill intentionally asks the AI to identify options it considers worth betting on, which may influence financial or gambling decisions.
筛选出你认为值得下注的球队/选项,并简要说明理由。
Treat the messages as informational only, include clear risk warnings, and make independent decisions before placing any bet.
Once configured, the workflow can send daily Telegram messages without a fresh manual prompt each day.
The skill documents an optional daily cron trigger that will cause the workflow to run repeatedly if the user installs it.
openclaw cron add --name "Polymarket每日推送" --cron "0 8 * * *"
Only add the cron job if you want recurring messages, and document how to remove or disable it later.
