Skills polymarket-verify
Verify Polymarket MR-V4 trading system deployment health. Use when asked to check trader processes, verify deployment, audit 韭菜王's changes, or after any strategy/config update. Runs a comprehensive check script and reports results.
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/bobbyw1028/polymarket-verify" ~/.claude/skills/openclaw-skills-polymarket-verify && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/bobbyw1028/polymarket-verify" ~/.openclaw/skills/openclaw-skills-polymarket-verify && rm -rf "$T"
manifest:
skills/bobbyw1028/polymarket-verify/SKILL.mdsource content
Polymarket Deployment Verification
One-command verification of the MR-V4 trading system.
Usage
Run the check script:
bash /Users/0xbobby/.openclaw/workspace/skills/polymarket-verify/scripts/verify.sh
What It Checks
- Process count — exactly 3 trader processes (V4 LIVE + 2 sims)
- No duplicate processes — each directory has at most 1 trader
- V4 flock protection — lock file is held by running process
- Config validation — dry_run, max_entries, hedge_size match expected values
- Trade activity — trades.jsonl has recent writes (within 2 hours)
- Sim-trader isolation — sim processes running from sim-trader/ directory, not CLI
- Cron health — guardian cron (980acb62) and hourly report (4ddfd61a) have no consecutive errors
- Data collector — DC process alive and writing tick data
Output Format
✅ PASS: [check name] — [detail] ❌ FAIL: [check name] — [detail] ⚠️ WARN: [check name] — [detail] Summary: X/Y checks passed
When to Use
- After any strategy deployment or config change
- When Bobby asks to verify 韭菜王's work
- Automatically from guardian cron (optional)
- After process restarts or Gateway restarts