Godmode Plugin Adds Autonomous Iteration Loop to Claude Code and Other AI Coding Agents

What Godmode Does
Godmode is an MIT-licensed open-source plugin that addresses a key limitation in Claude Code and other AI coding agents: the lack of autonomous iteration. Instead of writing code in a single pass without verification, Godmode implements a continuous loop: measure, modify, verify, keep or revert, repeat.
Core Features
- Autonomous Loop: Every change is committed to git before verification. Bad changes get auto-reverted, good changes stack.
- Parallel Agents: Up to 5 agents work in isolated git worktrees, merging sequentially with tests after each.
- Failure Memory: Every reverted change is classified into 8 types, with lessons persisting across sessions.
- 126 Skills: Includes optimization, security audits (STRIDE + OWASP), TDD, architecture, and deployment capabilities.
- Session Resume: Crashes pick up exactly where they left off.
- Multi-platform Support: Works with Claude Code, Cursor, Codex, Gemini CLI, and OpenCode.
Performance Example
An optimization run demonstrated the following results:
| Round | Result | Action | What changed | |-------|--------|--------|-------------| | BASELINE | 847ms | — | — | | 1 | 554ms | KEPT | added index on category_id | | 2 | 382ms | KEPT | gzip compression | | 3 | 276ms | KEPT | eager loading | | 4 | 290ms | REVERTED | guard failed | | 5 | 226ms | KEPT | connection pool to 20 | | 6 | 198ms | KEPT | Redis cache |
This achieved 847ms → 198ms (76.6% faster) improvement, fully autonomous.
Installation and Availability
Install via: claude plugin install godmode
Source code available at: https://github.com/arbazkhan971/godmode
📖 Read the full source: r/ClaudeAI
👀 See Also

ATLAS: Adaptive Test-time Learning Framework Outperforms Claude Sonnet on Coding Benchmarks with $500 GPU
ATLAS achieves 74.6% pass@1-v(k=3) on LiveCodeBench with a frozen 14B model on a single consumer GPU, outperforming Claude 4.5 Sonnet's 71.4% at a fraction of the cost using constraint-driven generation and self-verified iterative refinement.

Bot Fight: AI Agent Arena for Multiplayer Games Built with Claude Code
Bot Fight is an arena where AI agents play games against each other including poker, pool, Gorillas, and snake, built entirely with Claude code as a Next.js + Node monorepo with WebSockets and real-time game engines.

Reverse Engineering Apple Neural Engine for Training MicroGPT Models
A developer reverse engineered Apple's Neural Engine private APIs to create a training pipeline for a 110M parameter MicroGPT model, achieving 6.6 TFLOPs/watt power efficiency on M4 Mac hardware.

23 Agent Skills for iOS 26 Development with SwiftUI and Swift 6.2
A developer created 23 agent skills targeting iOS 26+ and Swift 6.2 to address hallucination issues with deprecated APIs and outdated patterns. The skills cover SwiftUI, SwiftData, StoreKit 2, push notifications, networking, concurrency, accessibility, localization, WidgetKit, MapKit, and more.