This is a comprehensive framework for building prediction market trading bots with actual strategy classes you can extend. You get a clean base class with signal generation, four concrete strategy implementations (arbitrage, copy trading, momentum, mean reversion), and position sizing logic. The arbitrage strategy catches YES+NO pricing inefficiencies, copy trading mirrors successful wallets with configurable delay and sizing, and the technical strategies use z-scores and orderbook imbalance calculations. It's well structured if you're building automated traders and want to backtest different approaches without writing everything from scratch. The signal confidence scoring and metadata tracking are thoughtful touches that make strategies debuggable in production.
npx skills add https://github.com/agentmc15/polymarket-trader --skill trading-strategies