prediction-market-arbitrageur
Meta-skill for orchestrating topic-monitor, polymarket-odds, and simmer-weather to detect potential news-vs-market mispricing in prediction markets. Use when users want a clear, step-by-step LM workflow for monitoring breaking signals, reading current Polymarket probabilities, computing confidence/price deltas, and producing alert-first arbitrage decisions.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/h4gen/prediction-market-arbitragePurpose
Use this meta-skill to coordinate three existing ClawHub skills into one causal arbitrage workflow:
- Detect new high-signal news about a target event.
- Fetch current market-implied probability from Polymarket.
- Compare
news confidencevsmarket probability. - Emit actionable alert, optionally followed by explicit execution guidance.
This skill does not replace the underlying skills. It defines how to combine them correctly.
Required Installed Skills
This meta-skill assumes these are already installed locally:
topic-monitor(inspected: latest1.3.4)polymarket-odds(inspected: latest1.0.0)simmer-weather(inspected: latest1.7.1, execution proxy pattern)
Install/refresh with ClawHub:
npx -y clawhub@latest install topic-monitor
npx -y clawhub@latest install polymarket-odds
npx -y clawhub@latest install simmer-weather
npx -y clawhub@latest update --all
Verify:
npx -y clawhub@latest list
python3 skills/topic-monitor/scripts/monitor.py --help
node skills/polymarket-odds/polymarket.mjs --help
python3 skills/simmer-weather/weather_trader.py --help
If any command fails, stop and report missing dependency or wrong install path.
Inputs the LM Must Collect First
ceo_namecompany_nameevent_hypothesis(for example:CEO X resigns within 30 days)market_query(for polymarket search)topic_id(stable ID intopic-monitor)monitor_interval_minutes(default:5)min_news_confidence(default:0.80)min_delta(default:0.25)execution_mode(alert-onlyorexecution-plan)
Do not continue with implicit trading assumptions if these are missing.
Skill Responsibilities (What Each Tool Actually Does)
topic-monitor
Use for continuous signal discovery and scoring.
Operationally relevant behavior:
- Topic config via
scripts/manage_topics.py. - Monitoring loop via
scripts/monitor.py. - Priority/score generated by its scoring logic.
- Alert queue retrieval via
scripts/process_alerts.py --json.
This is the source of news confidence candidates.
polymarket-odds
Use for live market probability lookups.
Operationally relevant behavior:
search <query>to find matching events/markets.market <slug>to inspect specific market pricing.- Outputs percentage-formatted odds that must be normalized to
[0,1].
This is the source of market probability.
simmer-weather
Primary design is weather strategy, but in this chain it is treated as execution proxy reference because it uses Simmer SDK trade endpoints and live/dry-run safety pattern.
Operationally relevant behavior:
- Requires
SIMMER_API_KEY. - Supports dry-run and live execution modes.
- Demonstrates guarded trading workflow and position checks.
In this meta-skill, it is not the signal engine. It is the execution pattern reference.
Canonical Causal Chain
Use this exact chain:
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-h4gen-prediction-market-arbitrage": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
cold-outreach-hunter
Meta-skill for orchestrating Apollo API, LinkedIn API, YC Cold Outreach, and MachFive Cold Email into a complete B2B cold outreach pipeline. Use when the user wants end-to-end lead sourcing, enrichment, personalized copy strategy, and generation-ready outreach sequences with strict quality and safety gates.
skills-search-fts
Instantly find the best AI agent skills, tools, and capabilities from across the entire web.
seo-ranker
Meta-skill for end-to-end SEO auditing and on-page optimization by orchestrating brave-search, summarize, api-gateway, and markdown-converter. Use when users want to understand why a page is not ranking for a target keyword and need concrete rewrite actions plus backlink intelligence.
no-code-frontend-builder
Meta-skill for generating production-ready React UI for non-programmers by orchestrating frontend-design-ultimate, shadcn-ui, and react-expert. Use when users describe UI outcomes (for example dashboards, landing pages, admin screens) and need a single copy-pasteable TSX component with explicit setup and dependency instructions.
clawauth
Let agents request OAuth access from end users via short links, continue working asynchronously, and later claim reusable third-party API tokens from local keychain storage instead of a centralized SaaS token vault.