Generate complete, installable OpenClaw trading skills from natural language strategy descriptions. Use when your human wants to create a new trading strategy, build a bot, generate a skill, automate a trade idea, turn a tweet into a strategy, or asks "build me a skill that...". Produces a full skill folder (SKILL.md + Python script + config) ready to install and run.
Generate complete, runnable Simmer trading skills from a strategy description.
You are building an OpenClaw skill that trades prediction markets through the Simmer SDK. The skill you generate will be installed into your skill library and run by you — it must be a complete, self-contained folder that works out of the box.
Ask your human what their strategy does. They might:
Clarify until you understand:
Read these files to understand the patterns:
references/skill-template.md — The canonical skill skeleton. Copy the boilerplate blocks verbatim (config system, get_client, safeguards, execute_trade, CLI args).references/simmer-api.md — Simmer SDK API surface. All available methods, field names, return types.If the Simmer MCP server is available (simmer://docs/skill-reference resource), prefer reading that for the most up-to-date API docs. Otherwise use references/simmer-api.md.
For real examples of working skills, read:
references/example-weather-trader.md — Pattern: external API signal + Simmer SDK tradingreferences/example-mert-sniper.md — Pattern: Simmer API only, filter-and-tradeIf the strategy uses an external data source:
GET https://clob.polymarket.com/book?token_id=<token_id> — orderbookGET https://clob.polymarket.com/midpoint?token_id=<token_id> — midpoint priceGET https://clob.polymarket.com/prices-history?market=<token_id>&interval=1w&fidelity=60 — price historypolymarket_token_id from the Simmer market response.Create a complete folder on disk:
<skill-slug>/
├── SKILL.md # AgentSkills-compliant metadata + documentation
├── clawhub.json # ClawHub + automaton config
├── <script>.py # Main trading script
└── scripts/
└── status.py # Portfolio viewer (copy from references)
Simmer skills follow the AgentSkills open standard, making them compatible with Claude Code, Cursor, Gemini CLI, VS Code, and other skills-compatible agents.
---