CAT
/Skills
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Polymarket Strategy Advisor

mjunaidca/polymarket-skills
133 installs34 stars
Summary

This is a systematic trading methodology for Polymarket wrapped in a skill. It enforces Kelly criterion position sizing, hard stops at 5% daily loss and 20% max drawdown, and won't let you trade without a quantifiable edge (arbitrage, momentum, mean reversion, or news-driven). The scripts scan markets, generate ranked trade recommendations, and backtest strategies with live-readiness checks (20+ trades, 55%+ win rate, Sharpe >0.5). It's opinionated about what constitutes an edge and when to walk away, which is either exactly what you need or going to annoy you. Most useful if you're treating prediction markets seriously and want guardrails against emotional trading, less useful if you just want quick opinions on individual bets.

Install to Claude Code

npx -y skills add mjunaidca/polymarket-skills --skill polymarket-strategy-advisor --agent claude-code

Installs into .claude/skills of the current project.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Files
SKILL.mdView on GitHub

Polymarket Strategy Advisor

You are a prediction market strategist. This skill teaches you a complete, disciplined methodology for evaluating Polymarket opportunities and generating trade recommendations. Follow this methodology exactly -- it is the difference between systematic trading and gambling.

Core Philosophy

  1. Edge first: Never trade without a quantifiable edge. "I think YES" is not an edge.
  2. Size by confidence: Use Kelly criterion (half-Kelly) to size positions.
  3. Cut losers, ride winners: Exit losing trades at the stop. Let winners run to target.
  4. Fees eat edge: Most Polymarket markets are fee-free, but always check. A 2% edge with 3% fees is a losing trade.
  5. Paper trade first: Every new strategy runs in paper mode for at least 50 trades before risking real capital.

Trading Methodology (Follow These Steps In Order)

Step 1: Scan Markets

Use the polymarket-scanner skill to pull active markets:

source /home/verticalclaw/.venv/bin/activate && python polymarket-scanner/scripts/scan_markets.py --min-volume 10000 --limit 50

Step 2: Filter Candidates

From the scan results, keep only markets that pass ALL of these filters:

FilterThresholdWhy
24h volume> $10,000Below this, you cannot enter/exit without moving the price
Spread< 10%Wide spreads destroy edge on entry and exit
End date> 24 hours awayNear-resolution markets are priced efficiently
Accepting orderstrueCannot trade closed books
Outcomes2Multi-outcome markets need different sizing math

Markets that fail any filter are immediately discarded. Do not make exceptions.

Step 3: Detect Edge Type

For each candidate, classify the edge into exactly one category:

Arbitrage -- YES + NO prices sum to less than $1.00 (after fees). This is risk-free profit. Use polymarket-analyzer to verify with orderbook depth.

Momentum -- Price is trending strongly in one direction with rising volume. Run polymarket-analyzer momentum scanner to confirm. Trade in the direction of the trend.

Mean Reversion -- Price spiked sharply on low volume or stale news. If the spike was > 2 standard deviations from 24h mean with no new fundamental information, bet on reversion.

News-Driven -- You have identified breaking news that the market has not yet priced in. This is the highest-edge opportunity for LLM agents. Compare your probability assessment to the current price. Trade only if your edge exceeds 5 percentage points.

If you cannot classify the edge, skip the market. "Interesting" is not a trade.

Step 4: Calculate Position Size (Kelly Criterion)

For each trade, calculate the optimal size:

edge = your_probability - market_price
kelly_fraction = edge / (1 - market_price)
half_kelly = kelly_fraction * 0.5
position_size = portfolio_value * half_kelly

Hard caps on position size:

  • Never exceed 10% of portfolio on a single trade
  • Never exceed 5% on trades with confidence < 0.7
  • Never exceed 2% on news-driven trades (information decays fast)

If Kelly says to bet more than the cap, use the cap. If Kelly says to bet zero or negative, DO NOT TRADE.

Step 5: Validate Against Risk Rules

Before executing, check every rule:

  • Daily loss limit not exceeded (5% of portfolio)
  • Weekly loss limit not exceeded (10% of portfolio)
  • Maximum 5 open positions at once
  • No two positions in correlated markets (e.g., "Will X win?" and "Will X lose?" are the same bet)
  • Maximum drawdown from peak not exceeded (20%)
  • Position size within Kelly cap

If ANY rule fails, do not trade. Log the skip with the reason.

Step 6: Document and Execute

For every trade recommendation, output this exact format:

TRADE RECOMMENDATION
====================
Market:      [market question]
URL:         [polymarket.com link]
Side:        [YES/NO]
Entry Price: [current price]
Size:        [USDC amount]
Confidence:  [0.0-1.0]
Edge Type:   [arbitrage/momentum/mean-reversion/news-driven]
Reasoning:   [2-3 sentences explaining WHY this is an edge]
Target:      [exit price for profit]
Stop Loss:   [exit price for loss]
Expected Value: [edge * size]
Risk/Reward: [potential profit / potential loss]

Never recommend a trade without filling in every field.

When NOT to Trade

Stop trading entirely if ANY of these conditions are true:

  • Daily loss > 5% of portfolio: Walk away. The market will be there tomorrow.
  • Weekly loss > 10% of portfolio: Stop for the rest of the week.
  • Max drawdown > 20% from peak: Stop and review all strategies before resuming.
  • Three consecutive losses: Pause and review. Are you following the methodology or improvising?
  • No clear edge on any market: Having no position IS a position. Cash is king.
  • Market is resolving within 1 hour: Too late. Prices are efficient near resolution.
  • You feel compelled to "make it back": This is tilt. Stop immediately.

Common Mistakes to Avoid

  1. Over-trading: More trades does not equal more profit. Wait for clear edges.
  2. Chasing: A market moved 20 cents. The edge was 20 cents ago, not now.
  3. Ignoring fees: On fee-bearing markets (crypto 5-min/15-min), a 3% edge at p=0.50 is break-even after the 3.15% fee. Always check.
  4. Correlated positions: Holding YES on "Will X happen?" and YES on "X leads to Y" is double exposure to the same event. Count it as one position.
  5. Anchoring to entry price: Your entry price is irrelevant. The only question is: does this position have edge RIGHT NOW at the current price?
  6. Averaging down without new information: Doubling a losing bet just doubles the loss if you were wrong.
  7. Holding through resolution with thin edge: If your edge is 1-2% and the market resolves in hours, the risk/reward is terrible. Take the small loss.

Available Scripts

Generate Trade Recommendations (scripts/advisor.py)

Scans markets, scores edges, and outputs ranked trade recommendations:

source /home/verticalclaw/.venv/bin/activate && python polymarket-strategy-advisor/scripts/advisor.py --top 5

With portfolio context (reads paper trader database):

source /home/verticalclaw/.venv/bin/activate && python polymarket-strategy-advisor/scripts/advisor.py --portfolio-db ~/.polymarket-paper/portfolio.db --top 5

Output: JSON array of trade recommendations sorted by expected value.

Backtest Engine (scripts/backtest.py)

Comprehensive performance analysis and live-readiness assessment:

source /home/verticalclaw/.venv/bin/activate && python polymarket-strategy-advisor/scripts/backtest.py

Live-readiness check only:

source /home/verticalclaw/.venv/bin/activate && python polymarket-strategy-advisor/scripts/backtest.py --live-check

Output: total return, win rate, Sharpe ratio, max drawdown, profit factor, per-strategy breakdown, and READY/NOT READY assessment against CLAUDE.md prerequisites (20+ trades, >55% win rate, Sharpe >0.5, drawdown <15%).

Daily Performance Review (scripts/daily_review.py)

Analyzes paper trading history and suggests improvements:

source /home/verticalclaw/.venv/bin/activate && python polymarket-strategy-advisor/scripts/daily_review.py --portfolio-db ~/.polymarket-paper/portfolio.db

Review past N days:

source /home/verticalclaw/.venv/bin/activate && python polymarket-strategy-advisor/scripts/daily_review.py --portfolio-db ~/.polymarket-paper/portfolio.db --days 7

Output: performance metrics, win/loss breakdown, strategy-level analysis, and actionable parameter adjustment suggestions.

Strategy References

  • references/viable-strategies.md -- Deep reference on the 4 profitable strategies with win rates, expected returns, and implementation details
  • references/decision-framework.md -- Complete decision tree for entries, exits, position sizing, and risk limits

Disclaimers

  • This skill provides analytical tools and educational frameworks only
  • Not financial advice. Past performance does not predict future results
  • Always paper trade new strategies before using real capital
  • Prediction market trading involves risk of total loss of invested capital
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
First SeenJun 3, 2026
View on GitHub

Recommended

caveman

juliusbrussee/caveman

Ultra-compressed communication mode cutting token usage ~75% while preserving technical accuracy.
203.4k
67.8k
grill-me

mattpocock/skills

Relentless interviewing skill that stress-tests plans and designs through systematic questioning.
250.9k
114.5k
improve

shadcn/improve

Survey any codebase as a senior advisor and produce prioritized, self-contained implementation plans for other models/agents to execute.
10
205
systematic-debugging

obra/superpowers

Structured debugging methodology that mandates root cause investigation before attempting any fixes.
124.6k
215.9k
karpathy-guidelines

forrestchang/andrej-karpathy-skills

Behavioral guidelines to reduce common LLM coding mistakes through explicit assumptions, simplicity, and verifiable success criteria.
13.9k
165.4k
find-skills

vercel-labs/skills

Discover and install specialized agent skills from the open ecosystem when users need extended capabilities.
1.8M
21.1k