3D-Printed Clawd Mascot with ESP32-Powered Mochi Bot

A Reddit user shared a 3D-printed Clawd model inspired by the Claude Code mascot (the clawed lobster-like character). The design files are available on MakerWorld, and the accompanying Clawd Mochi bot runs on an ESP32 microcontroller with a small display. The Mochi bot's source code is on GitHub for anyone to hack on.
Key Details
- 3D model: All STL and project files are hosted on MakerWorld: makerworld.com/models/2576503
- Mochi bot: Uses an ESP32 board and a small display (exact specs not specified in source). The code repository is at github.com/yousifamanuel/clawd-mochi
- Purpose: Physical mascot for Claude Code set-ups; the Mochi bot likely shows animated expressions or status (e.g., Claude idle/working).
Who It's For
Developers who want a tangible companion for their Claude Code workflow — either as a desk ornament or as a DIY electronic project with a display.
📖 Read the full source: r/clawdbot
👀 See Also

Open-source solo RPG engine uses three Claude instances for parsing, narration, and direction
EdgeTales is an open-source text-based solo RPG engine where dice mechanics determine outcomes and Claude AI generates atmospheric prose. The system uses three Claude instances in a pipeline: Brain (Haiku) for parsing input to JSON, Narrator (Sonnet) for writing prose, and Director (Haiku) for async scene analysis.

ForgeAI: A Visual Workbench for Model Engineering
ForgeAI provides a visual interface for model inspection, merging, and training, offering features like 3D model architecture inspection and M-DNA Forge for visual layer merging.

Opendesk: MCP + SOM algorithm for AI desktop control via Claude Code
Opendesk gives AI agents eyes and hands on your desktop via an MCP server with a custom SOM algorithm. Integrates with Claude Code or any agentic harness for mouse/keyboard control, learning, replay, and scheduling.

read-once: A Claude Code Hook That Prevents Redundant File Reads
A developer built a PreToolUse hook called read-once that tracks files Claude Code has already read in a session, blocking re-reads of unchanged files and using diffs for changed files. The tool saves thousands of tokens per session by preventing Claude from repeatedly reading the same file content.