Vibe Coding Rules: Build Side Projects from Your Phone Using Claude Code Without Reading Code

An experienced software engineer with a decade of experience posted a detailed workflow for what they call "vibe coding" — building side projects using Claude Code entirely from a phone, without ever reading the generated code. The post outlines a structured process that prioritizes planning and safety checks to make this hands-off approach viable.
Core Workflow
- Start in plan mode. Read the plan, understand it as much as possible. If unclear, ask. The author uses the command
4. Tell Claude what to changerepeatedly to ask questions like "What isabout? What does that mean?" - Go back and forth with the agent. Plan mode is the most important phase — good and bad decisions cascade and multiply.
- Break plans into small chunks. If the plan is too large to comprehend, ask the agent to break it into smaller digestible pieces and process them one at a time.
- Commit everything to git after each plan is complete. The author suggests creating a skill or memory that auto-commits. This enables rollback if something breaks. Note: database backups are separate.
- Generate test cases visible in the plan. You don't need to read test code, but a list like
it checks two positive integers,it checks passing a negative value,it checks not passing any valuegives confidence and prevents regressions.
Advanced Safety: Three Subagents
For complex changes, spin up three subagents to:
- critically review the plan
- do a security review
- do a testing audit
Database Caution
The author advises always doing a database backup (or having scheduled backups) before letting the agent touch prod data. Rollbacks prevent disasters like accidental deletion.
Auto Mode
Once the upfront work (planning, git, tests, reviews) is done, the author enables auto mode and lets the agent run. They also give the agent access to Chrome DevTools MCP (or similar) for end-to-end testing post-deployment.
The result: "You can build something that no one uses."
📖 Read the full source: r/ClaudeAI
👀 See Also

OpenClaw Resource List Compiled from Community Sources
A GitHub repository collects practical OpenClaw resources covering setup, configuration, memory systems, security, skills, model compatibility, and community links to help developers avoid common information gaps.

Recover deleted Claude Desktop conversations from Chromium cache
Immediately quit Claude Desktop, find the Chromium blockfile cache at %APPDATA%\Claude\Cache\Cache_Data (Windows), then use Python packages ccl_chromium_reader and standard compression libs to extract HTTP response bodies containing your chat UUID.

Documentation for Writing MCP Tools in C# .NET Framework for Claude Desktop/Code
Complete documentation and C# coding examples for creating custom MCP tools using .NET Framework 4.8, enabling Claude Desktop/Code to automate interactions with external processes, software, APIs, and IoT devices.

Building Claude Skills to Automate Cognitive Processes
Claude Code includes a built-in skill-creator that lets you build AI-powered skills by describing processes in natural language instead of writing code. The source describes creating a startup validation skill that reduced a 2-day manual process to 15 minutes.