Earlier quoted context omitted.
Just use a fallback, like Codex CLI. Takes a little effort upfront to ensure your configuration is wired correctly for both harnesses, but it is pretty easy to get them 90% identical (there will almost always be some experimental / edge case features that differ across harnesses, but in my experience those are negligible in practice).
[flagged]
Claude Code as a Daily Driver: Claude.md, Skills, Subagents, Plugins, and MCPs
91–100 of 297 posts
Re: Claude Code as a Daily Driver: Claude.md, Skills, Subagents, Plugins, and MCPs
#92Re: Claude Code as a Daily Driver: Claude.md, Skills, Subagents, Plugins, and MCPs
#93The number one power move I have is Nix integration. The availability of tooling, secrets, environment and the ability for the agent to modify its own environment is... well, I don't know how people live without it. I guess you guys still install things using commands and hope everything you need is present on the next machine? Developer machine, CI environment, deployment environment: They're all derived from a sing…
I just gave mine its own VPS. Maybe more expensive than Nix but it was very easy
On my own machine I just give it a Linux User Namespace, i.e. soft virtualisation via "bubblewrap."
What Docker Compose and Linux User Namespaces provide that a VPS doesn't: You can easily mount extra directories from your developer host machine in read or read+write mode. With the VPS you (most likely) need it to clone all of your resources separately, which requires SSH keys, and now you're slowly building towards an independent agentic environment, which is definitely very nice, but time-consuming, compared to piggybacking on your developer environment. Definitely the direction I'm going.
Re: Claude Code as a Daily Driver: Claude.md, Skills, Subagents, Plugins, and MCPs
#94The number one power move I have is Nix integration. The availability of tooling, secrets, environment and the ability for the agent to modify its own environment is... well, I don't know how people live without it. I guess you guys still install things using commands and hope everything you need is present on the next machine? Developer machine, CI environment, deployment environment: They're all derived from a sing…
I just use docker and I don't feel I'm missing anything?
Maybe you have some premade tooling that helps provide persistency between container invocations.
But by default, closing your agent container and opening it again just wipes everything you didn't host-mount.
What I'm advocating is really just the same functionality without the Docker runtime, because Linux has namespaces.
Feels more like you're on your host system with exactly the minor variations you specify.
Making Docker feel like your host system is possible, but I just never felt at home.
Re: Claude Code as a Daily Driver: Claude.md, Skills, Subagents, Plugins, and MCPs
#95I've been using Claude to work on a medium-sized (100+kLoc) codebase, and it's a great productivity multiplier. Putting hours into creating a good AGENTS file is more improved results a lot. I find that over time it picks up the codebase quite well. Tedious tasks that would take a day are now a matter of a few prompts. Still... I'm not ready to give it more autonomy. Even as it gets high-level things quite well, I st…
Understandable. You don’t want to lose control to your codebase and don’t trust LLM is competent in handling that fully.
Re: Claude Code as a Daily Driver: Claude.md, Skills, Subagents, Plugins, and MCPs
#96What happens when you have a codebase made with claude using this setup and claude is down for let's say 8 hours? Are you able to efficiently, smoothly and productively take over the codebase?
Re: Claude Code as a Daily Driver: Claude.md, Skills, Subagents, Plugins, and MCPs
#97Earlier quoted context omitted.
I just use docker and I don't feel I'm missing anything?
Docker's ability to mount host directories in the container is really nice. Maybe you have some premade tooling that helps provide persistency between container invocations. But by default, closing your agent container and opening it again just wipes everything you didn't host-mount. What I'm advocating is really just the same functionality without the Docker runtime, because Linux has namespaces. Feels more like you…
Re: Claude Code as a Daily Driver: Claude.md, Skills, Subagents, Plugins, and MCPs
#98What happens when you have a codebase made with claude using this setup and claude is down for let's say 8 hours? Are you able to efficiently, smoothly and productively take over the codebase?
Re: Claude Code as a Daily Driver: Claude.md, Skills, Subagents, Plugins, and MCPs
#99Earlier quoted context omitted.
Understandable. You don’t want to lose control to your codebase and don’t trust LLM is competent in handling that fully.
No. Because they still hallucinate at times. Confuse things. Forget things. Or none of the above, as it is anthropomorphizing, but the result is the same. They can make incredible working one shots, you start to trust them, then you trust too much and .. feel the result.