Live data from Hacker News

Claude Code On-the-Go

granda.org

271–280 of 349 posts

Re: Claude Code On-the-Go

#271

This is cool, but does everybody have enough work for multiple agents in parallel? I feel like I'm limited by writing specs for agents, then by reviewing their work. I typically spend 30-60 minutes writing a spec, then the agent runs for 30-60 minutes, then I spend 30-60 minutes refining code/ui/etc before putting up a PR, then another 30-60 minutes waiting for CI + addressing automated + human code review feedback.

I find if a project is made with agentic coding in mind, you can try to implement features as they come to mind and bounce between different CC terminals.

The problem is that this is true of none of my work projects and the onboarding cliff to agentic coding is quite steep. I have to use discretion to apply CC when it does make sense, which is not that often.

Re: Claude Code On-the-Go

#272
post #269

Author here! Thanks for checking it out. On the $210/month VM cost - fair point. For me it's worth it because I'm running multiple parallel agents throughout the day, but you could definitely do this cheaper with a smaller instance or spot pricing. The real bottleneck isn't typing on mobile - it's reviewing the output. I've found 2-3 parallel agents is my sweet spot before I can't keep up with reviewing PRs. Git work…

how do you manage to review code without running said apps or testing them, sure the code might look correct, but doesn't mean whatever issue / feature works or the bug is actually fixed

Re: Claude Code On-the-Go

#273
post #5
post #2

This is a pretty sophisticated setup. I particularly like how it uses Tailscale. I've been using the simpler but not as flexible alternative: I'm running Claude Code for web (Anthropic's version of Codex Cloud) via the Claude iPhone app, with an environment I created called "Everything" which allows all network access. (This is moderately unsafe if you're working with private source code or environment variables cont…

I don't like claude code web due to its lack of planning mode. I found the result is often lackluster compare to claude code cli. My current setup: Tailscale + Terminus(ipad) + home machine(code base) Need to look into how to work on multiple features at the same time next.

Not sure if this works in claude code web, but running non-interactive claude code I can still get it to use plan mode by simply asking it. It's just a tool call.

Re: Claude Code On-the-Go

#274
post #54
post #53

Earlier quoted context omitted.

I still get the full source code back at the end, I tell it to include code it wrote in the PR. I also wrote my own tool to extract and format the complete transcript, it gives me back things like this where I can see everything it did including files and scripts it didn't commit. Here's an example: https://gistpreview.github.io/?3a76a868095c989d159c226b7622b...

Oh fascinating - so you're reviewing "your own" code in-PR, rather than reviewing it before PR submission? I can see that working! Feels weird, but I can see it being a reasonable adaptation to these tools - thanks! What about running services locally for manual testing/poking? Do you open ports on the Anthropic VM to serve the endpoints, or is manual testing not part of your workflow?

Yeah the commits that claude code generate are co-authored by claude@anthropic.com so i just open a PR to see the code. I have automatic per-PR dev environments for manual testing.

Re: Claude Code On-the-Go

#275
post #171

Earlier quoted context omitted.

The difference here is, you type a command into your phone at 3pm. Put it down to go play with your kid for 3hours. Type a new one in at 9pm before bed where you’ve been binging your wife’s favorite show. Then you wake up at 10am to a holistic transformation in your business that would’ve taken months previously in your career. But whatever, another command and it’s off to 11am frisbee.

More like you'll manage 20 agents and will be reading, reviewing and testing in between builds. Race to the bottom.

I was juggling lots of simultaneous agents when trying to use up the $250 free Claude Code Web credit Anthropic gave me and it was exhausting.

Re: Claude Code On-the-Go

#276
post #115
post #13

Pandora's box is open; we're moving towards a world where white collar workers will be working 24/7 and they'll be expected to do so. It won't matter if I'm washing the dishes, walking the dog, driving to the supermarket, picking up my kids from school. I'll always be switched on, on my phone, continuously talking to an LLM, delivering questionable features and building meaningless products, destroying in the process…

This technology should be liberatory, and allow us all to work less while enjoying the same standard of living. We've all contributed in its development by creating the whole corpus of the internet, without which it could never have been bootstrapped. The only reason we can't expect this is that we live under a system that is arranged for the sole benefit of the owners of capital, and have been convinced that this is…

> we live under a system that is arranged for the sole benefit of the owners of capital

This is totally false. The vast majority of consumers enjoy huge benefits from the system while owning almost no capital. For example, Walmart customers or iPhone owners.

A lot of people can't tell the difference between capitalism (which has made their lives materially wealthy beyond imagination) and the root cause of today's economic troubles for ordinary people, which is affordability, which is mostly driven by the housing crisis, which is dominated by nimbyism in megacities.

Fix megacity housing regulation to enable cheap/low risk building that the market wants, and you fix the affordability crisis.

No need to rebuild the (greatest system in the history of humankind) from scratch.

Re: Claude Code On-the-Go

#277

I don't like typing long messages on my phone so this workflow, as cool as it sounds, wouldn't work for me. My current setup is that I have a Claude Code hook that runs whenever CC needs my input and it uses my Home Assistant instance to send a push notification to my phone. I then return back to the computer and continue on the work. This works reasonably well, but there is a gap for small messages or review comment…

I'll half-ass something from my phone to take an idea down, but this setup also works with a keyboard. I just run claude in a container with --dangerously-skip-permissions and it does a lot more work with a lot less questions.

Re: Claude Code On-the-Go

#278

That sounds nice, but what happens when there's something Claude messes up, doesn't know how to do something, or when you have to review the thousand lines it added to your project ? Unless it's a totally vibe coded side project without any tests or quality control of some sort. I'm just curious what you can build with this setup. It just seems to be the way to create a mountain of sloppy, unmaintainable code.

If it's really bad, just throw it away. I didn't spend a lot of time/effort generating the code. If my idea was bad or hard to implement I start over with a different approach. Smaller feature or different idea to accomplish the goal.

Re: Claude Code On-the-Go

#279
post #269

Author here! Thanks for checking it out. On the $210/month VM cost - fair point. For me it's worth it because I'm running multiple parallel agents throughout the day, but you could definitely do this cheaper with a smaller instance or spot pricing. The real bottleneck isn't typing on mobile - it's reviewing the output. I've found 2-3 parallel agents is my sweet spot before I can't keep up with reviewing PRs. Git work…

Can you explain more about the vm-start/vm-stop? I don't understand why you start/halt the VM and wait for Tailscale, you could just keep it running.
Post reply on HN