Claudigotchi: Physical Tamagotchi Device That Feeds on Claude Code Activity

What Claudigotchi Does
Claudigotchi is a physical desktop device that monitors your Claude Code activity and responds with visual and audio feedback. It's built as a pixel-art character in a 3D-printed case, running on an ESP32 microcontroller with an LCD screen.
How It Works
The system connects Claude Code to the physical device through this pipeline:
- Claude Code hooks → shell script → named pipe → Python daemon → USB serial → ESP32
A Claude Code plugin hooks into session events and sends state updates over serial connection. Every tool call, prompt, and notification from Claude Code feeds the creature and lowers its hunger level.
Hunger System Details
The hunger system operates on a scale from 0 (full) to 100 (starving), with five distinct visual states. When Claude Code is left idle, the creature becomes restless, looks around, and eventually emits R2-D2-style buzzer sounds through its speaker to prompt you back to work.
Technical Implementation
The entire project is open source, including:
- Firmware for the ESP32
- Claude Code plugin
- 3D-printable STL files for the case
The source code and files are available on GitHub at github.com/jsprpalm/claudigotchi.
📖 Read the full source: r/ClaudeAI
👀 See Also

LLM Agent Builds Complete Godot 4 Dungeon Crawler Using Visual Feedback
A developer connected an LLM agent to Godot 4 using an MCP tool and gave it a single prompt to build a dungeon crawler FPS. The agent created a complete prototype with 3 rooms, lighting, combat, enemies, and progression by running the game, taking screenshots, and fixing visual issues.

Tandem MCP: Run and Manage Claude Code Sessions from Claude.ai Chat
Tandem is an open-source MCP server that links Claude.ai chat to local Claude Code sessions, allowing autonomous coding loops without copy-pasting.

DELIGHT: Local Orchestrator Uses Multiple ChatGPT Sessions as Coordinated Agents
DELIGHT is a local orchestrator that runs multiple hidden ChatGPT browser sessions simultaneously, coordinating them like a team of agents without requiring API keys or GPU resources. It connects to OpenClaw as an action layer to apply changes to real files and run tests.

Open-source trust scoring hook for Claude Code monitors sessions, blocks protected paths
A developer built a Python hook that scores every Claude Code session on reliability, scope, and cost dimensions, blocks access to protected paths like .env files, and hash-chains events for tamper detection. The single-file tool is available on GitHub.