Claude Code Plugin Launches DOOM in Terminal While AI Thinks

A developer has released a Claude Code plugin that displays DOOM gameplay in the terminal while Claude processes prompts. Instead of staring at the loading spinner, users get an interactive ASCII art version of the classic game during wait times.
How It Works
The plugin uses doom-ascii, a source port of the original DOOM engine that renders entirely in terminal block characters. When you send a prompt to Claude, DOOM automatically pops up as a tmux overlay. When Claude finishes processing, the game dismisses itself. Send another prompt and it launches again.
The developer notes that completely injecting a playable game into Claude would be "difficult if not impossible" currently, so the solution uses tmux to create the overlay effect. The game is described as "genuinely (kinda) playable" despite the ASCII rendering constraints.
Technical Details
- Built as a Claude Code plugin
- Uses tmux for popup overlay functionality
- Based on doom-ascii (terminal-based DOOM source port)
- Automatically launches when Claude starts thinking
- Automatically dismisses when Claude finishes
- Available on GitHub for free use
The project was developed quickly with Claude's assistance, inspired by a similar DVD screensaver plugin that addressed the same issue of waiting for AI responses.
📖 Read the full source: r/ClaudeAI
👀 See Also

LocalSynapse MCP Server Enables Claude to Search Local Documents Offline
LocalSynapse is an MCP server that indexes and searches inside local documents (Word, Excel, PowerPoint, PDF) using hybrid BM25 + AI semantic search. Everything runs locally with no cloud or API keys required.

blend-ai: New Blender MCP Service for Claude Code
blend-ai is a new Blender MCP service that allows Claude Code to generate 3D scenes. A user reported it worked faster and better than blender-mcp, creating a shuttle launch scene from reference images in 5 minutes.
OpenClaw AI Agent with 6 Roles, Memory, and ADHD-Aware Design: Daily Ops Breakdown
A solo founder with ADHD built an open-source AI agent with 6 roles (action planner, debriefer, writer, legal, investigator, CRM) sharing memory, auto-generating follow-ups and drafts from transcripts.

Claude Code Plugin Yoink Replaces Library Dependencies to Reduce Supply Chain Risk
Yoink is a Claude Code plugin that removes complex dependencies by reimplementing only needed functions, using a three-step workflow with /setup, /curate-tests, and /decompose commands. It currently supports Python with TypeScript and Rust support underway.