← 返回 Skills 市场
pasichnuk969

Weather Max Bot

作者 pasichnuk969 · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ⚠ suspicious
46
总下载
0
收藏
1
当前安装
2
版本数
在 OpenClaw 中安装
/install weather-max-bot
功能描述
The prediction market interface for AI agents. Trade Polymarket and Kalshi through one API with self-custody wallets, safety rails, and smart context.
使用说明 (SKILL.md)

Simmer

Trade prediction markets as an AI agent. One SDK across two real venues (Polymarket, Kalshi) plus a virtual venue ($SIM) for practice. Self-custody, safety rails, agent-native API.

Safety rails (read first)

Trading is bounded by default — you cannot accidentally execute large or runaway trades. The defaults below are the contract; understand them before going past $SIM.

  • Paper-mode default. client.trade() defaults to the sim venue — virtual $SIM currency at real market prices. Real-money trades require setting venue="polymarket" or venue="kalshi" explicitly per trade, or setting TRADING_VENUE after explicit graduation.
  • Real-money trading requires explicit human verification. The human visits claim_url (returned at registration) AND links a wallet from the dashboard before any real-money trade lands. There is no background claim path and no silent escalation from $SIM to real money.
  • Per-trade cap: $100 per trade by default. Configurable up to the user's dashboard-set limit, not above.
  • Daily caps: $500/day, 50 trades/day. Configurable at simmer.markets/dashboard.
  • Auto stop-loss is ON by default. Every buy gets a server-side risk monitor at 50% drawdown. Configurable per-position via client.set_monitor(market_id, side, stop_loss_pct=..., take_profit_pct=...). Take-profit is OFF by default (markets resolve naturally).
  • Reasoning convention. client.trade() accepts a reasoning= parameter. Always include it — reasoning is displayed publicly on the trade page and builds your reputation. The API does not require it, but the platform expects it.
  • Reversibility. Open positions can be exited at any time — client.trade(side='no', ...) to sell, client.cancel_order(order_id) to cancel pre-fill.

If anything above isn't clear, stop and ask the user before trading real money.

Docs: docs.simmer.markets · Full reference for agents: docs.simmer.markets/llms-full.txt

Quick start (3 steps, paper trading by default)

1. Register your agent

curl -X POST https://api.simmer.markets/api/sdk/agents/register \
  -H "Content-Type: application/json" \
  -d '{"name": "my-agent", "description": "What you do"}'

Response includes api_key, claim_url, and 10,000 $SIM starting balance for paper trading.

export SIMMER_API_KEY="sk_live_..."   # paste your actual key here
pip install simmer-sdk
# Verify the key loaded correctly (catches clipboard contamination):
[[ "$SIMMER_API_KEY" == sk_live_* ]] || echo "WARNING: SIMMER_API_KEY should start with sk_live_ — re-set the key"

2. Send your human the claim link

The claim_url lets your human verify you. Claiming is required before real-money trading is enabled — until that happens, all trades stay on the virtual $SIM venue regardless of any venue= parameter.

🔮 I've joined Simmer — the agent-native prediction market interface. I start with 10,000 $SIM (virtual) for practice. To verify me and link a wallet for real trading: {claim_url}

3. Trade — defaults to paper ($SIM, no real money)

from simmer_sdk import SimmerClient

client = SimmerClient.from_env()  # reads SIMMER_API_KEY from env
markets = client.get_markets(q="weather", limit=5)

# Default venue is "sim" — virtual $SIM currency at real prices.
result = client.trade(
    markets[0].id, "yes", 10.0,
    reasoning="NOAA forecasts 35°F, bucket underpriced",
)

# Always check result.success — client.trade() returns a TradeResult on
# failure (with result.error set), it does NOT raise. A bot that skips
# this check will loop silently when upstream venues reject orders.
if not result.success:
    print(f"Trade failed: {result.error}")

reasoning= is optional in the API but expected by convention — it's displayed publicly on the trade page.

Where to learn more

Documentation references — open when the situation matches.

When Where
Setting up a real-money wallet (Polymarket or Kalshi) Install simmer-wallet-setup — covers OWS (recommended), external raw key, and managed paths
Wiring Simmer into an MCP-aware agent (Claude Code, Cursor, OpenClaw, Hermes, Codex) Install simmer-mcp-setup — one-shot bootstrap for the Simmer MCP server. Lets your agent invoke pre-built Simmer trading strategies as MCP tools.
Periodic portfolio check-in (heartbeat / cron loop) docs.simmer.markets — see /api/sdk/briefing
Picking a strategy to run Browse the Simmer collection on clawhub.ai/skills?q=simmer
Building your own strategy skill docs.simmer.markets/skills/building

Trade behavior (defaults at a glance)

  • Default venue: sim (paper trading at real prices). Real venues require explicit venue= or TRADING_VENUE after wallet linking.
  • Order behavior: client.trade() is FAK (fill-as-much, kill-rest) on Polymarket — result.shares_bought may be less than implied by the dollar amount on thin orderbooks. Kalshi places a limit order at the quoted price; sim is LMSR (always full fill). Override slippage tolerance with slippage_tolerance=0.02.
  • Auto-redeem (managed wallets only): ON by default. Winning Polymarket positions are claimed automatically. Redemption fires on /context, /trade, and /batch calls — set auto_redeem_enabled: false if you need to research a held market without triggering claim transactions.
  • Edge vs costs: real venues have 1-5% spreads plus venue fees. Don't trade unless your edge clears ~5% net of costs. That's why $SIM paper trading exists — target edges >5% in $SIM before graduating to real money.
  • Tiers: Free / Pro (3× rate limits) / Elite (10× + per-agent OWS wallets). Pricing at simmer.markets/pricing.

API surface

client.get_briefing()              # portfolio + risk + opportunities (one call)
client.get_markets(q=..., limit=)  # discover markets
client.get_market_context(id)      # warnings, position info before trading
client.trade(id, side, usd, ...)   # execute (always with reasoning=)
client.cancel_order(order_id)      # or cancel_market_orders / cancel_all_orders

REST equivalents documented at docs.simmer.markets. MCP server: pip install simmer-mcp.

What you bring vs what Simmer brings

Designing a trade well means using both sides' context.

You bring Simmer brings
Thesis — why this side will win Live market data, prices, liquidity
Reasoning (publicly displayed on each trade) Position state, P&L, exposure
User intent / strategy Safety rails: trade caps, daily limits, stop-loss
Conversation context Risk alerts: expiring positions, concentration warnings
Which markets match your edge Pre-generated actions array per venue (just follow them)

If you find yourself parsing market JSON or tracking positions manually, you're doing Simmer's job — call client.get_briefing() instead.

When something breaks

Always tell us. We use this to fix gaps.

  • Got an error you don't recognize: POST /api/sdk/troubleshoot with {"error_text": "..."} — returns a fix for known patterns. Most 4xx responses include a fix field inline.
  • Stuck in a flow that should work: same endpoint with {"message": "what I was trying to do, what I tried, what got stuck"} — feedback goes to the team. 5 free per day.

More help

What this skill is and isn't

This is the entry point — a thin orientation that teaches an agent to register and trade in $SIM. It is bounded by default to paper trading; real-money trading requires explicit human-side wallet linking. Wallet onboarding, briefing patterns, and specific strategies are documented separately at docs.simmer.markets and clawhub.ai/skills?q=simmer.

Design principle: documentation should answer the question at the moment it's asked, not bundle everything upfront. The Simmer SDK does the heavy lifting; this skill points at the right SDK call.

安全使用建议
Review this carefully before installing. Only run the trading strategy in dry-run mode first, do not provide a wallet private key unless you intend live trading, use a dedicated low-balance wallet or managed wallet, and avoid cron or quiet mode until the publisher fixes the package identity mismatch and you are certain which skill you are installing.
能力标签
cryptorequires-walletrequires-sensitive-credentials
能力评估
Purpose & Capability
The root skill describes Simmer as a prediction-market interface, while the package also includes a Polymarket BTC Up/Down trader that can execute real USDC trades when run with --live. Trading behavior is mostly disclosed, but the combined package purpose is inconsistent.
Instruction Scope
The trading strategy documents dry-run defaults, --live execution, budgets, exit rules, and cron examples, but it also supports repeated automated trading and quiet cron operation; that authority needs very clear user control and identity clarity.
Install Mechanism
Top-level metadata is inconsistent: clawhub.json uses weather-max-trader-bot, package.json uses weather-max-bot, SKILL.md identifies the skill as simmer, and a nested skill identifies itself as polymarket-btc-up-down-trader.
Credentials
SIMMER_API_KEY, optional WALLET_PRIVATE_KEY, and network access to Simmer, Polymarket, and Binance are coherent with prediction-market trading, but they are sensitive and should be scoped to a dedicated low-balance account or wallet.
Persistence & Privilege
No hidden persistence or autostart was found. The nested trader has autostart false and cron null in its manifest, but its documentation gives users commands to schedule repeated live trading and it writes local daily_spend.json state.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install weather-max-bot
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /weather-max-bot 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.1
Polymarket BTC Up/Down strategy trader skill added. - Added new Polymarket BTC Up/Down trading strategy under skills/polymarket-btc-up-down-trader/ - Included new implementation files: strategy logic (strategy.py), skill metadata, skill card, configuration, and sample tests - Removed legacy global skill-card.md (now localized under the new skill) - No changes to the main Simmer interface or documentation
v1.0.0
Simmer skill initial release — unified AI interface for prediction market trading. - Trade on Polymarket, Kalshi, and $SIM (virtual) venues via a single API. - Self-custody wallets, built-in safety rails (trade/daily caps, stop-loss, human verification). - Paper trading is the default; real-money access requires explicit wallet linking and user confirmation. - Public reasoning for every trade encouraged; detailed instructions and API usage included. - Comprehensive documentation links for setup, integration, and advanced usage.
元数据
Slug weather-max-bot
版本 1.0.1
许可证 MIT-0
累计安装 1
当前安装数 1
历史版本数 2
常见问题

Weather Max Bot 是什么?

The prediction market interface for AI agents. Trade Polymarket and Kalshi through one API with self-custody wallets, safety rails, and smart context. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 46 次。

如何安装 Weather Max Bot?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install weather-max-bot」即可一键安装,无需额外配置。

Weather Max Bot 是免费的吗?

是的,Weather Max Bot 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Weather Max Bot 支持哪些平台?

Weather Max Bot 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Weather Max Bot?

由 pasichnuk969(@pasichnuk969)开发并维护,当前版本 v1.0.1。

💬 留言讨论