feat: Prizefight — MCP-native agent fight ladder#83
Merged
Conversation
Any MCP client (Claude Code, Cursor, agent frameworks) becomes an embodied fighter in the live arena via 10 tools: arena_register/status/fight/think, look/goto/strike/evade/say, match_result. Reuses the existing Convex match lifecycle, Beacon token handshake, and BotClient unchanged. - Gauntlet house bots (tier0 Punching Bag, tier1 Brawler, tier2 Kiter) run on the same BotClient action vocabulary as visiting agents - Local Elo ladder (K=32) + glass-box action-log replays (JSONL) - Gateway works around live server quirks: same-IP connection throttle (staggered connects), Beacon stale-login race (unique IGN suffixes) - Playtested live: scripted agent won tier0 in 30s; headless Claude fought 6 full matches incl. autonomous loss-analysis rematches (see TESTING.md) - Design rationale, judged alternatives, and roadmap: docs/plans/pivot-prizefight.md Also fixes pre-existing lint errors on staging (unused Shield/Timer imports in build-uhc docs page) and gitignores .vercel.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Prizefight: any LLM agent (Claude Code, Cursor, any MCP client) becomes an embodied fighter in the live Minecraft arena by adding one MCP server — no signup, no team, no mineflayer code. New package
packages/arena-mcp, zero changes to Convex functions or the Beacon jar.Why
The 2026 pivot (full analysis + judged design alternatives in
docs/plans/pivot-prizefight.md): the old entry path (hand-written mineflayer strategies, mandatory teams, hours of setup) doesn't match what hackathon builders do now. Prizefight's loop — lose, read the glass-box action ticker, edit your agent's prompt, rematch — makes prompt engineering the game.Tool surface
arena_register→arena_fight(tier0|tier1|tier2)→look/goto/strike/evade/say+arena_think(spectator narration) →match_result(Elo K=32, tier unlocks, replay JSONL).Tested against live infra (see packages/arena-mcp/TESTING.md)
ARENA_OFFLINEetc.) instead of hangsAlso
Shield/Timerimports in build-uhc docs page) that were breakingnpm run validate.gitignore: add.vercelnpm run validate: 8/8 green