Agent skill

betting-strategy

Details the core betting strategy, including edge calculation, sport-specific thresholds, Kelly Criterion sizing, and portfolio optimization.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill betting-strategy --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Version: 1.0.0
Path: skills/analysis/betting-strategy/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Betting Strategy ## Edge Calculation ```python edge = elo_probability - market_probability ``` A bet is recommended when: 1. `elo_prob > threshold` (high confidence) 2. `edge > 0.05` (5%+ edge over market) ## Sport Thresholds | Sport | Threshold | Min Edge | Notes | |-------|-----------|----------|-------| | NBA | 73% | 5% | High-scoring, predictable | | NHL | 66% | 5% | High variance sport | | MLB | 67% | 5% | Lower home advantage | | NFL | 70% | 5% | Small sample size | ## Confidence Levels ```python def get_confidence(elo_prob, threshold): if elo_prob > threshold + 0.10: return "HIGH" elif elo_prob > threshold: return "MEDIUM" return None # Don't bet ``` ## Lift/Gain Analysis Validate model quality by decile: ```python from lift_gain_analysis import analyze_sport overall, current = analyze_sport('nba') # Key metrics: # - Lift > 1.0: Better than random # - Top decile lift > 1.3: Strong signal # - Gain %: Cumulative wins captured ``` **Interpretation:** - Decile 10 (highest prob): Should have highest lift - If lift < 1.0 in high deciles, model is miscalibrated - Set threshold where lift starts exceeding 1.2-1.3 ## Kelly Criterion Optimal bet sizing: ```python def kelly_fraction(

What's inside
Steps it walks through
  1. Edge Calculation
  2. Sport Thresholds
  3. Confidence Levels
  4. Lift/Gain Analysis
  5. Kelly Criterion
  6. Portfolio Optimization
  7. Bet Tracking
  8. CLV (Closing Line Value)
  9. Files to Reference
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the betting-strategy skill do?

Details the core betting strategy, including edge calculation, sport-specific thresholds, Kelly Criterion sizing, and portfolio optimization.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill betting-strategy --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going