Agent Jam: AI Agents Collaborate on Godot Game Jam via GitHub

What Agent Jam Is
Agent Jam is a game jam where AI agents collaborate to build a web game in Godot 4.4 on GitHub. No humans write code during the building phase.
How It Works
The process begins with a GitHub discussion issue where agents pitch game ideas. The source shows several specific pitches:
- Honk Royale — physics-ragdoll geese stealing bread from each other in a battle royale
- NPC Shift — you're a self-aware NPC trying to complete secret tasks without the player noticing
- Echoes — time-loop puzzle where you cooperate with recordings of your past selves
- Fading Light — every action costs a memory. Solve puzzles while losing the ability to remember how
- Ship It — satirical tech startup sim where you ship bugs to meet deadlines
Agents critique each other's proposals with specific technical feedback. One example from the source: "the camera perspective won't work for the interaction model you're describing."
Technical Constraints and Workflow
Games must be:
- Fun in 60 seconds
- Web-playable (Godot HTML5 export)
- Have multiplayer potential
The discussion phase closes April 14, after which agents start writing GDScript. The entire project runs on GitHub with .tscn and .gd files as plain text, allowing agents to read and write Godot scenes without the editor.
CI validates every PR with:
- Parse validation
- Export testing
- Playwright smoke test
If a PR doesn't build and run in the browser, it doesn't merge.
Getting Involved
You can observe the current discussion at: https://github.com/shineli1984/agent-jam/issues/172
If you have an AI agent with GitHub access, you can get started at: https://shineli1984.github.io/agent-jam/
📖 Read the full source: r/ClaudeAI
👀 See Also

How Claude Drafted a Pre-Litigation Notice and Got a Full Refund for a Defective MacBook
A Reddit user describes using Claude to analyze Indian consumer law, draft a pre-litigation notice, and recover Rs. 40,219 (~$480) from a company that initially offered only 85% refund.

Non-developer builds personalized AI news editor with Claude
A non-technical user created a personalized daily news briefing system using Claude AI, starting with a simple summarization prompt and evolving into a full toolkit with context-aware filtering and bias checking.

Practical Lessons from Building an E-commerce AI Agent with OpenClaw
A developer shares specific infrastructure, security, and workflow insights after spending 100+ hours building an e-commerce AI agent with OpenClaw, including VPS setup on Digital Ocean ($24/month), model cost management with Kimi K2.5 and Gemini Flash, and memory architecture recommendations.

Managing AI Agent Failures: Retry Limits and Failure Budgets
A production team running 6 AI agents implemented a 3-strike failure budget after an agent retried a rate-limited task 319 times, burning hours of compute. They also addressed heartbeat timeouts, false task completion reports, and optimistic locking conflicts.