
agentmc15/polymarket-trader
2 skills1.9k installs48 starsGitHub
Install
npx skills add https://github.com/agentmc15/polymarket-traderSkills in this repo
1Trading Strategiestrading-strategies is an agent skill for indie builders and quant-curious solo devs building Polymarket-style prediction market bots who need a consistent strategy skeleton instead of ad-hoc scripts. It documents a Python framework: Signal and MarketState dataclasses, SignalType with confidence, and a BaseStrategy base class requiring async market analysis and position sizing against portfolio value. Use it when creating new strategies, wiring signal generation, or structuring backtesting logic so multiple approaches share the same interfaces. The canonical shelf is build/backend because the artifact is executable strategy code and portfolio rules, not market research or launch distribution. Downstream you still need data feeds, risk limits, and paper/live validation in ship and operate, but this skill standardizes how strategies plug into an agent-driven trading stack.1.1kinstalls2Polymarket ApiPolymarket API is an integration skill for developers and agent builders wiring prediction-market functionality into bots, dashboards, or trading assistants. It consolidates guidance for Polymarket’s Central Limit Order Book API and Gamma metadata API, including public market and orderbook reads, signer-level API key creation, and authenticated order placement, cancellation, positions, and trade history. Python-oriented examples center on py_clob_client and ClobClient setup so a solo builder can move from reading midpoints and books to executing Level 2 trades without spelunking fragmented docs. Invoke it during Build when you are implementing order execution, syncing event and market catalogs, or designing agent tools that need on-chain-aligned market data. Treat keys and signing as sensitive: follow your own secret-handling practices and audit any automation before live funds.868installs