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 3.22 Upgrade Checklist: Practical Steps from a Developer Who Got Burned
A developer shares specific upgrade steps for OpenClaw 3.22, including checking for deprecated environment variables, creating backups, running migration commands, and verifying plugin compatibility.

OpenClaw Mega Cheatsheet: Your Gateway to AI Coding Mastery
Dive into the OpenClaw Mega Cheatsheet from r/openclaw—a comprehensive guide packed with essential tips for AI coding and automation enthusiasts.

5 Coherence Checks Before Any OpenClaw Profile Goes Live
Stop chasing perfect spoofing. Internal signal coherence matters more. TLS, locale, WebGL, canvas, and behavior checks from r/openclaw.

Migrating OpenClaw agents to Claude Code after third-party harness deprecation
A developer migrated 17 OpenClaw agents to Claude Code in one afternoon after Anthropic ended third-party harness support. The process involved creating CLAUDE.md entry points, bash wrappers, and cron jobs while preserving existing agent logic.