The interesting Claude Code projects aren't always the ones with the highest GitHub star counts — they're the ones that change what you thought required a team.
Since Fable 5's launch-week showcase — procedural shaders, physics rigs, Yosemite at scale — the community has kept shipping on a different axis: personal utilities, visual thinking tools, and session coordination that turns one agent into a fleet. This roundup covers six projects worth studying if you're deciding what to build next with agent skills, plugins, and the Claude Code command surface.
TL;DR — project picker
| If you want to… | Study this project | Core idea |
|---|---|---|
| See agent state at a glance | clawd-face / clawd-face-react | Animated face reflects idle, thinking, working |
| Open files vendors gate behind "specialized software" | DICOM jaw viewer (Paolo Rosson story) | Two-prompt offline HTML medical viewer |
| Understand repo shape spatially | CodeCity AI | Isometric city from git-aware tree walk |
| Brainstorm visually with Claude | claude-canvas / collaborative-canvas | Shared browser whiteboard + agent DSL |
| Coordinate multiple Claude sessions | hato (鳩) | Carrier-pigeon messaging between sessions |
| Generate culturally specific creative assets | Inkstone | Classical verse → ink-painting prompts |
1. JavaScript face drawing — clawd-face and clawd-face-react
Two community takes on the same idea: give Claude Code a face.
clawd-face-react is a Tamagotchi-style animated avatar for your terminal workflow. The face shifts color and expression based on agent state — coral for idle, blue for thinking, green for talking, dark green for running commands, purple for reading/searching. Easter eggs (dance, love, Konami code) turn a status indicator into something you'd actually keep on a second monitor.
clawd-face (anam-org) pushes further into a browser UI: an Anam AI talking avatar speaks Claude Code's responses while a side panel streams terminal output, diffs, and tool calls. You talk; Claude Code executes; Liv (the avatar) narrates.
What to steal: State-driven UI hooks. If you're building loop engineering dashboards, mapping tool_use phases to human-readable states reduces "is it stuck?" anxiety — same lesson as Claude Code sound notification hooks, but visual.
2. DICOM jaw viewer — two prompts, 800 files, fully offline
The standout medical story from August 2026: a builder received 800 DICOM files from a dental CBCT scan and was told they'd need specialized software to view them. They pointed Claude Code at the folder and asked for a viewer.
Two prompts later — per the widely shared account — they had:
- A single HTML file running offline in the browser
- Three synced anatomical planes with crosshairs
- Radiologist-style contrast presets
- A rotating 3D reconstruction of the jaw
The scan never left the laptop — the privacy property that matters for medical data.
Honest caveats: DICOM viewers aren't novel; open tools like OsiriX and Weasis exist. The story's value is time-to-viewer for a non-specialist and the proof that Claude Code plan mode + domain context beats waiting on vendor software for your own imaging data. Community repos like AmbientCT show the same pattern at production depth (Orthanc + OHIF + Docker) when you outgrow a single HTML file.
What to steal: Offline-first single-file delivery for sensitive data. No cloud upload, no account — align permissions with Claude Code permission modes so the agent can't exfiltrate what you're viewing.
3. Codebase visual diagrams — CodeCity AI and Claude City
CodeCity AI (thalida/codecity-ai) is a Claude Code plugin that turns a directory into an isometric 2.5D city packaged as self-contained HTML:
claude plugin add github:thalida/codecity-ai
/codecity ./src --depth 3
Directories become streets — wide boulevards for large folders, alleys for small ones. Files become buildings encoded by size, git age, last-touch recency, and language. Flags cover depth limits, include/exclude globs, and gitignore respect.
Claude City (mittal-parth/claude-clan) goes further into live agent theater: an isometric city where mayor-typed commands spawn Claude Agent SDK crews — cranes over files being edited, buildings growing with commits, quest logs for active work. PRs get their own port cities you sail between.
What to steal: Spatial dashboards for multi-agent orchestration. When three sessions touch the same module, a treemap city beats scrolling three terminal buffers.
Related explainx.ai coverage: img2threejs for photo-to-scene, Understand Anything knowledge graphs for graph views — cities are another projection of the same "make the repo legible" problem.
4. Browser city street — visual collaboration canvases
Two projects address the same pain: some ideas don't fit in a transcript.
claude-canvas (uditalias) gives Claude a shared browser whiteboard. A bundled skill teaches Claude a compact DSL for diagrams — 3–5× fewer tokens than JSON — with Rough.js aesthetics. Claude draws wireframes and asks visual questions; you answer by clicking, typing, or sketching back.
collaborative-canvas (anthosx) wraps Excalidraw in an Electron app with tools like open_canvas, listen, add_to_canvas, and capture_screenshot. Press Collaborate when you want Claude to annotate your sketch; Finish when you're done.
What to steal: Visual feedback loops belong in the harness, not pasted screenshots in chat. Same architecture as DESIGN.md templates — externalize design state where both human and agent can read it.
5. Pigeon-speed texting — hato and the pigeon mods ecosystem
hato (severzemlya/hato — 鳩, "pigeon") is carrier messaging for Claude Code sessions:
- Sessions register with a hub under random bird names (
suzume,kounotori) hato_sendfrom inside a session;hato sendfrom a shell- Delivery injects messages as user turns — idle sessions wake up
- Posts (📮) for agents without injection (Codex, cron jobs) via long-poll pickup
- Multi-host over a Tailnet; names survive
claude --resume
Separate pigeon projects tackle other "text the agent" paths — iMessage daemons, WhatsApp MCP gateways, SQLite pmail in claude-mods — but hato's design center is session-to-session speed inside a Claude Code fleet.
What to steal: If you're running parallel worktrees or Boris Cherny-style multi-session setups, explicit messaging beats hoping the human relays context. Compare to official cross-session messaging features as they land.
6. Chinese calligraphy tool — Inkstone skills
Inkstone (augchan42/inkstone) names itself after the 硯台 — the inkstone where an ink stick is ground before painting. The plugin ships Claude Code skills for creative workflows:
| Skill | Purpose |
|---|---|
| verse-to-prompt | Classical Chinese verse → ink painting prompts (7 composition rules, 5 styles) |
| create-explanation | Bilingual scholarly explanations for Jiaoshi Yilin verses |
| shaughnessy-iching | Zhouyi hexagram interpretation in Edward Shaughnessy's register |
| image-to-scene | Ink paintings → video motion prompts |
The methodology powered SixLines.online — 4,096 unique ink paintings from Han dynasty oracular poetry (~40 BCE). Install:
/plugin marketplace add augchan42/inkstone
/plugin install inkstone@augchan42-inkstone
What to steal: Domain expertise packaged as skills with triggering descriptions, not one-off prompts. Browse similar creative skills in the explainx.ai registry when building culturally specific generators.
Patterns across all six
- Skills and plugins beat monolithic prompts — canvas DSL, inkstone verse rules, codec city flags
- Offline and local-first wins trust — DICOM HTML, hato on Tailnet, canvas in browser
- Visual beats textual for certain feedback — faces, cities, whiteboards
- Session coordination is the new frontier — pigeons, mayor commands, cross-session lists
- Pass/fail demos still matter — DICOM either renders or it doesn't; cities either map to files or they don't
What to build next
If you're stuck on "todo app number 500," pick a pass/fail domain (medical file, repo map, live diagram) and a narrow skill that teaches Claude when to use your tool. Ship a single HTML or a plugin — not a platform. The Fable 5 first-week projects proved creative coding; this wave proves personal software is back.
Related on explainx.ai:
- Claude Fable 5 Community Projects — First 72 Hours
- World of ClaudeCraft — AI-Built MMO
- Claude Code Cross-Session Messaging
- How to Add Skills to Claude
- Claude Code Plan Mode Guide
- Claude Platform GA — Computer Use and Skills API
- img2threejs — Photo to Three.js Scene
- DESIGN.md Templates for Agent UI
Community references: CodeCity AI · claude-canvas · hato · Inkstone · clawd-face-react
Project descriptions reflect public repositories and community posts as of August 21, 2026. Medical imaging stories describe patient-controlled offline viewers — not medical advice. Verify licenses and security before deploying community plugins in production.
