Claude AI Agents Build Simulator, Optimize Game Algorithm to Beat Human Score

A developer tested whether AI agents could outperform humans in the programming game The Farmer Was Replaced. Since AI agents struggle with navigating graphical interfaces directly, the strategy involved having a team of Claude agents first build a Python-based simulator that perfectly mirrored the game's mechanics and rules. Once the simulator was ready, a second team of agents would use it to iterate on and discover an optimal algorithm for harvesting sunflowers.
Development Process and Challenges
The process began with an experiment using Claude Code's "agent teams" feature to build a simple Tic-Tac-Toe game, which was successful and provided confidence for the more complex farming project. However, scaling up presented challenges: the agent team lead became a bottleneck, consuming 91% of session tokens while failing to proactively ask for human feedback to calibrate the simulator against the real game. Realizing the agent team infrastructure was becoming too over-engineered and expensive for this specific task, the developer pivoted back to using Cursor and a more direct prompting approach to successfully finalize the simulator.
Results and Algorithm Iterations
Claude Opus was allowed to run overnight, producing 10 progressively better iterations of the sunflower algorithm. These ranged from basic harvesting to micro-optimizations like nearest-neighbor tile selection and serpentine navigation. By the final iteration, the AI achieved a time of 5:21, officially beating the developer's personal best and landing at rank 30 on the global leaderboard.
The experiment demonstrated that by providing an AI with documentation and a sandbox to test its ideas, it can replace the human programmer—at least when it comes to optimizing sunflower yields in this specific game context.
The simulator created during this project is available for others to use and test with different AI models.
📖 Read the full source: r/ClaudeAI
👀 See Also

Kepler builds verifiable AI for financial services with Claude: 26M+ filings indexed, audit-ready answers
Kepler's platform indexes 26M+ SEC filings across 14,000+ companies, using Claude for multi-step reasoning and a deterministic verification layer to ensure every output traces back to source documents.

Running OpenClaw for multiple users requires isolation and security layers
A developer built a thin infrastructure layer around OpenClaw to handle multiple users safely, addressing isolation, secrets management, and persistent state. The solution includes per-user workers, virtual filesystems, and a gateway for messaging platforms.

Hybrid RAG for Local Agent Memory with OpenClaw, Ollama, and nomic-embed-text
A developer implemented hybrid RAG retrieval for AI agent memory using OpenClaw with Ollama and nomic-embed-text, combining 70% vector similarity with 30% BM25 keyword matching. The setup runs locally without external APIs and includes MMR deduplication and temporal decay weighting.

Autonomous Testing of Super Mario Using Behavior Models
Explore autonomous testing in Super Mario using a mutation-based input generator to discover edge cases and explore state spaces more effectively.