Building a Generative Coloring Book App with Claude as Senior Dev

A developer on r/ClaudeAI shared their experience building Imagine: Coloring for Kids, a generative coloring book iOS app, using Claude as a senior development assistant. The app lets users prompt any idea (e.g., “Create a happy cat riding a bike”) to generate coloring pages, with themed packs and safety controls.
Architecture
The app follows a pragmatic SwiftUI pattern with service objects and model stores:
- SwiftUI views handle screens
- Models define prompt ideas, theme packs, saved coloring
- Services handle business logic (StoreKit, kid-safe prompt checking)
- Backend worker for image generation
- Swift Data for local storage
Where Claude Helped
As an intermediate iOS developer, the author found Claude most useful for:
- Identifying edge cases that would only surface from user complaints
- Implementing UX-friendly error handling
- Eliminating single points of failure in the architecture
Safety features include guard rails to prevent access to external links, purchases, or inappropriate prompt/rename input. The app offers 5 themed coloring packs as add-ons; the author offered promo codes for community suggestions.
Key Takeaway
Claude acted as a senior dev focusing on robustness and safety — catching issues before release and enforcing sandbox constraints suitable for a children's app.
📖 Read the full source: r/ClaudeAI
👀 See Also

A TDD Development Flow Using AI Agents for Website Projects
A developer shares their workflow for building websites using AI coding agents with TDD, detailing setup steps, iterative processes, and specific commands for running tests with local models like Qwen3.5-27B.

Building a Slack-based debugging system for non-technical Claude users
A developer created a local Claude skill that polls a Slack channel every 7 seconds, allowing non-technical team members to get debugging help by pinging their Claude instance directly in Slack threads.

Dev built 3 iOS apps in weeks using Claude AI from ideation to debugging
A developer used Claude to build three iOS apps — Smart Facts, Jar of Joy, and Bloom Studio — handling ideation, feature refinement, logic writing, debugging, and iteration.

BinktermPHP: A Full BBS/FidoNet Platform Built Primarily with Claude
BinktermPHP is an open-source web-based BBS written in PHP 8 with PostgreSQL, featuring a built-in binkp FidoNet mailer, echomail/netmail, file areas, door games, real-time server push, and an MCP server that exposes echomail to AI assistants. The developer reports building it almost entirely using Claude for implementation while handling architecture and testing.