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

InsAIts Runtime Security Monitor for Claude Code Hits 8,000 PyPI Downloads
InsAIts, a runtime security monitor for Claude Code agentic sessions, has reached 8,140 total downloads on PyPI. Version 3.4.0 adds an Adaptive Context Manager, layered anchor injection system, and dashboard improvements.

CipherClaw: Using a Security Persona to Audit Code with Claude
A developer used CipherClaw, a CLAUDE.md persona called TALON, to make Claude Code think like a security architect. Running it on a Next.js app revealed 17 security findings including critical vulnerabilities like unauthenticated endpoints returning admin data and hardcoded auth tokens.

jsongrep: A DFA-Based JSON Query Tool That Outperforms jq in Benchmarks
jsongrep is a Rust-based command-line tool for querying JSON documents using a regular language syntax that compiles to deterministic finite automata (DFA), achieving faster search times than jq, jmespath, jsonpath-rust, and jql in benchmarks.

Reflect MCP Server Implements Reflexion Paper for Persistent Coding Agent Memory
A developer implemented the Reflexion paper (Shinn et al., NeurIPS 2023) as an MCP server to give local coding agents persistent memory of their mistakes. The system uses regex-based pattern matching on error messages and stores lessons in SQLite with FTS5.