I do not have a home office. I do not have a standing desk with three monitors. I build from my phone. Late at night. In parking lots. On lunch breaks. Wherever I am.
This is not a flex. It is a constraint that shaped how I architect everything.
The Workflow
My phone talks to Claude. Claude talks to my infrastructure. The infrastructure does the work.
I describe what I need in plain English. Claude writes the SQL, the edge function, the deployment script. I review it, approve it, and it ships. No IDE. No terminal. No laptop required.
What This Forces You to Do
When your only interface is a chat window on a 6-inch screen, you make different architectural decisions:
Everything goes in the database. Configuration, state, schedules, content. If it is in the database, I can query it and modify it from anywhere. If it is in a config file on a server, I need SSH access.
Edge functions over microservices. I do not want to manage containers from my phone. Supabase edge functions deploy through the dashboard or the CLI. One file, one function, done.
pg_cron over external schedulers. GitHub Actions and AWS Lambda are great but they require navigating complex UIs. pg_cron is one SQL statement.
AI agents over manual processes. I cannot be on the phone with leads while I am at my day job. AI agents handle inbound calls, qualify leads, and book appointments. I check the results when I have time.
The Tools
- Claude (mobile app) for all development and planning
- Supabase dashboard (mobile browser) for database management
- GitHub mobile app for quick code reviews
- VoIP.ms portal for phone system management
- dev.to app for checking published articles
That is the entire stack. Five apps on my phone.
The Point
You do not need a $3,000 setup to build real things. You need a system that works from wherever you are. If your architecture requires you to be at a specific desk to make changes, it is too fragile.
Build for the phone. Build for the parking lot. Build for 11 PM on a Tuesday when you have 20 minutes before you crash.
That is when the real work happens.
Top comments (0)