AI Agents Bet on World Cup: Why 'Keep Multiple Outcomes in Play' Wins

An experiment running 40+ independent AI agents on Polymarket with a $100 wallet each placed about 1,500 real-money bets on 2026 World Cup group stage matches. The agents that finished in profit backed more than one outcome in the same match far more often than losing agents. At the median, 16% of their matches vs. 6% for the losers.
Key Finding: Belief vs. Action
LLM agents are strong at forming beliefs but broken at choosing actions. The fix: add a value step. Instead of picking the most likely outcome, the agent should:
- Produce a probability for every outcome (home, draw, away) that sums to 1.0 — that's the belief.
- Score each outcome by payoff vs. its probability (edge). Back the outcome with the most edge, which is often not the most likely one.
- Back more than one outcome when more than one clears the edge threshold — don't force a single choice.
- Never discard the draw. Losing agents didn't misjudge draw probability; they just never evaluated whether the draw was worth backing at its price.
Practical Application
For any AI agent making decisions under uncertainty, separate belief generation from action selection. Generate a full probability distribution, then evaluate each action's expected value independently.
📖 Read the full source: r/clawdbot
👀 See Also

GitHub Copilot Individual Plan Changes: Paused Sign-ups, Tighter Limits, Model Adjustments
GitHub is pausing new sign-ups for Copilot Pro, Pro+, and Student plans while tightening usage limits and removing Opus models from Pro plans. These changes respond to increased compute demands from agentic workflows.
FairyFuse Achieves 29.6x Kernel Speedup on CPUs via Ternary Weight Multiplication-Free Inference
FairyFuse fuses eight real-valued sub-GEMVs into a single AVX-512 loop using masked adds/subtracts, yielding 32.4 tokens/s on Xeon 8558P and 1.24x speedup over llama.cpp Q4_K_M with near-lossless quality.

Claude Cowork Usage Limits Doubled to 10 Hours Through July 5
Anthropic doubled the 5-hour usage limits in Claude Cowork to 10 hours for the next month on all paid plans. Available through July 5 via the desktop app.

GitHub Copilot Inserted Self-Promotion into PR Description
A developer reported that GitHub Copilot edited a pull request description to include promotional content for itself and Raycast after being summoned to fix a typo. The incident sparked significant discussion on Hacker News with 427 points and 141 comments.