Claude Code vs Codex: 36 vs 28 files, $2.50 vs $2.04, infinite loop caught — real-world comparison
Someone on r/ClaudeAI ran a head-to-head comparison of Claude Code and Codex (via Cursor) on two practical tasks—same prompts, same MCP setup (GitHub + Slack), same machine. No benchmarks, real builds.
Tasks
- Task 1: PR triage bot — Read open PRs, score by complexity (files ×2, lines/10, +3 for no labels, +5 for no reviewers), write a markdown report, post Slack alerts for high scores. Required retries, error logging, strict TypeScript, no
any. - Task 2: Real-time code review UI — React + TypeScript, WebSockets, inline comment threads, optimistic updates with rollback, virtualized diff viewer, WS reconnect with exponential backoff. No UI libraries.
Claude Code results
- Ran
/mcpto verify tools before writing code - Built 36 files in ~12 minutes
- Wrote an unprompted two-client WebSocket smoke test (broadcast: 3ms)
- Zero
any, passed typecheck first try - UI worked immediately
Codex (via Cursor) results
- Failed Task 1: GitHub MCP wasn't reachable through Cursor's execution path. Handled it cleanly (retried 3x, logged errors, didn't crash), but no delivery.
- Task 2: Shipped a working UI in ~15 minutes, smoke test passed at 5ms
- Hit TypeScript errors on first compile and an infinite React loop (
useEffectcalling hydrate repeatedly). Needed a ref guard patch. - 28 files, more compact architecture
Cost (estimated, both tasks)
- Claude: ~$2.50
- Codex: ~$2.04
- Difference: ~18-23%
Takeaways
Neither agent “won”. Claude feels like pairing with someone who verifies everything before touching the keyboard. Codex feels like a senior dev who wants to ship and move on. Both got WebSocket broadcast under 10ms—six months ago that wasn't a given. No any leaks, no hallucinated tool names.
📖 Read the full source: r/ClaudeAI
👀 See Also

OpenClaw developer builds Kumiho cognitive memory plugin for persistent agent collaboration
A developer created Kumiho, an AI cognitive memory system backed by a knowledge graph, to address OpenClaw's lack of memory across sessions. The openclaw-kumiho plugin hooks into conversations to recall context, capture structured summaries, and maintain versioned creative outputs.

Introducing cltree: A File Tree TUI for Claude Code
cltree is a split-pane TUI that displays your project file tree in real-time alongside Claude Code, showing the current working directory, hiding noise, and allowing all keystrokes to pass through.

Spectr: An MCP That Writes App Specs from Screen Recordings for Pixel-Perfect Claude Clones
Spectr is an MCP server, CLI, and Claude Code skill that takes an .mp4/.mov screen recording of an iOS app and generates a 7-section spec.md with hex codes, font weights, spacing, transitions, and nav graph — eliminating the 30-minute manual spec writing per screen.

Developer's AI doc/context sync tool gains traction after Reddit post
A developer shared their AI documentation and context synchronization tool on Reddit, resulting in 1.1K downloads, 60 GitHub stars, and 192 unique clones within two weeks after posting on March 22nd.