clawd-mochi

作者 yousifamanuel已验证

Clawd Mochi: a physical desk companion inspired by Clawd (Claude Code mascot)

732
Stars
90
Forks
C++
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/yousifamanuel/clawd-mochi

快速入门

使用 clawd-mochi 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

Clawd Mochi Logo

Clawd Mochi 🦀🤖

A physical desk companion inspired by Clawd — the pixel-crab mascot of Claude Code by Anthropic. An ESP32-C3 drives a 1.54" color TFT display and hosts a mobile web controller — no app, no internet, no cloud required.

Cost: ~$6–8 · Build time: ~1 hour · Skill level: Beginner

Support the project on Instagram: Instagram

📦 3D printable case on MakerWorld: https://makerworld.com/en/models/2559505-clawd-mochi-physical-claude-code-mascot#profileId-2820000


⚠️ This is an independent fan project. It is not affiliated with, sponsored by, or endorsed by Anthropic. "Claude" and "Clawd" are trademarks of Anthropic.


Assembled Clawd Mochi on a desk   Claude Code view

What it does

Clawd Mochi sits on your desk and shows animated expressions on a small color display. You control it from any phone or browser by connecting to its built-in WiFi hotspot:

  • Normal eyes — pixel-art square eyes with wiggle and blink animations
  • Squish eyes> < happy squint with open/close animation
  • Claude Code — displays "Claude Code" with an interactive terminal
  • Canvas — draw anything on the display from your phone in real time

Parts list

PartSpec~Price
ESP32-C3 Super Minimicrocontroller with WiFi~$2.50
ST7789 1.54" TFT240×240 SPI color display~$3.00
8 short wires8–10 cm Dupont / jumper wires~$0.50
2× M2×6mm screwsto mount display bezel~$0.10
Double-sided tapeto secure components inside case~$0.10
USB-C cablefor power
3D printed casePLA or PETG, ~30g~$0.50

Total: ~$7–8


Wiring

⚠️ Connect VCC to 3.3V only — never 5V. Use GPIO 8 and 10 for SPI (hardware SPI, fast). Do not use GPIO 6/7 for SPI.

Display pinESP32-C3 GPIOWire color (suggested)
VCC3V3Red
GNDGNDBlack
SDAGPIO 10 (MOSI)Orange
SCLGPIO 8 (SCK)Green
RESGPIO 2Purple
DCGPIO 1Blue
CSGPIO 4White
BLGPIO 3Yellow

Software setup

Step 1 — Install Arduino IDE

Download Arduino IDE 2.x and install it.

Step 2 — Add ESP32 board support

  1. Open Arduino IDE → File → Preferences
  2. In "Additional boards manager URLs" paste:
    https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json
    
  3. Go to Tools → Board → Boards Manager, search esp32, install "esp32 by Espressif Systems"

Step 3 — Install libraries

Go to Tools → Library Manager and install both:

  • Adafruit GFX Library
  • Adafruit ST7735 and ST7789 Library

Step 4 — Configure board settings

Go to Tools and set:

SettingValue
BoardESP32C3 Dev Module
USB CDC On BootEnabled ← important
CPU Frequency160 MHz
Upload Speed921600

Step 5 — Upload the sketch

  1. Clone or download this repo
  2. Open clawd_mochi/clawd_mochi.ino in Arduino IDE
  3. Connect the ESP32 via USB-C
  4. Select the correct port under Tools → Port
  5. Click Upload (→ arrow button)
  6. Wait for "Hard resetting via RTS pin..." — this means success

How to use it

Connect and open the controller

  1. Power the ESP32 via USB-C (any USB charger or power bank)
  2. Wait ~3 seconds for the boot animation to finish
  3. On your phone or computer, go to WiFi settings
  4. Connect to the network: ClaWD-Mochi · password: clawd1234
  5. Open a browser and go to http://192.168.4.1

You should see the web controller:

Webpage view

Controller features

Button / controlWhat it does
Normal eyesPlays wiggle + blink animation
Squish eyesPlays open/close animation
Claude CodeShows code display, opens terminal
CanvasEnter drawing mode — draw on display from phone
Speed sliderControls animation speed (slow / normal / fast)
Background colorChanges background color of all views
Pen colorSets drawing color for canvas
Display on/offToggles the backlight
✓ done (in canvas)Exits canvas mode

3D case

The electronics case (body + back) is in the clawd_mochi model folder:

FileDescription
./models/clawd_mochi/clawd_mochi_v1.stlMain case layout with body and back parts

Print settings

SettingValue
MaterialPLA or PETG
Layer height0.15–0.20 mm
Infill15% gyroid
SupportsYes — for display window overhang
OrientationFace-down, flat back on build plate

Suggested colors: orange PLA for body, matte black for back plate.

You can also download the models from MakerWorld: https://makerworld.com/en/models/2559505-clawd-mochi-physical-claude-code-mascot#profileId-2820000

3D Clawd (no electronics)

If you just want a display piece, use the separate 3D Clawd model (no screen or electronics cutouts).

3D printed Clawd model with squished eyes

Model files:

You can also download the models from MakerWorld: https://makerworld.com/en/models/2576503-clawd-claude-code-mascot#profileId-2841183


Assembly tips

  1. Print the case file (body + back) and test-fit the display before gluing anything
  2. Thread the 8 wires through the back plate slot before soldering
  3. Use double-sided tape to fix the ESP32 against the inside of the back plate
  4. Secure the display with 2× M2×6mm screws through the bezel holes
  5. Route the USB-C cable through the back plate slot and snap the back on

Customisation

Eye size and position

Edit these constants near the top of clawd_mochi.ino:

#define EYE_W   30    // eye width in pixels
#define EYE_H   60    // eye height in pixels
#define EYE_GAP 120   // gap between eyes
#define EYE_OX  0     // horizontal offset
#define EYE_OY  40    // vertical offset upward

Logo animation duration

// In animLogoReveal() — how long logo holds after animation
delay(1500);       // milliseconds — change this number

// Speed of the reveal drawing stroke by stroke
delay(speedMs(8)); // lower = faster

Contributing

Contributions are very welcome! Here are some ideas:

  • New animations — add new expressions, transitions, or idle behaviors
  • New views — weather display, clock, notification badges, pixel art scenes
  • Sound — add a small buzzer for sound effects
  • Sensors — connect a touch sensor or button for physical interaction
  • OTA updates — add over-the-air firmware updates
  • MQTT / Home Assistant — connect to smart home platforms

To contribute: fork the repo, make your changes, and open a pull request. Please keep the single-file structure (clawd_mochi.ino) so it stays easy for beginners to flash.

License

This project is licensed under the MIT License — see the LICENSE file for details.

Note: 3D models and media assets are licensed under CC BY-NC-SA 4.0.


Star History

Star History Chart

常见问题

What is clawd-mochi?

clawd-mochi is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by yousifamanuel. Clawd Mochi: a physical desk companion inspired by Clawd (Claude Code mascot). It has 732 GitHub stars.

Is clawd-mochi safe to use?

Yes. clawd-mochi passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install clawd-mochi?

Clone the repository with "git clone https://github.com/yousifamanuel/clawd-mochi" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is clawd-mochi written in?

clawd-mochi is primarily written in C++. It is open-source under yousifamanuel on GitHub, so you can review or fork the full source.

Are there alternatives to clawd-mochi?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh clawd-mochi against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情