Launch HN: Terminal Use (YC W26) – Vercel for filesystem-based agents
51–60 of 95 posts
Re: Launch HN: Terminal Use (YC W26) – Vercel for filesystem-based agents
#52Can you explain why everyone thinks we should use new tools to deploy agents instead of our existing infra? eg. I already run Kubernetes
[dead]
> Our biggest pain point with hosting agents was that you'd need to stitch together multiple pieces: packaging your agent, running it in a sandbox, streaming messages back to users, persisting state across turns, and managing getting files to and from the agent workspace.
The k8s ecosystem already handles most this and your agent framework the agent specifics. What you are talking about is valid, though a different axis imo. Quality and guardrails are important, but not discussed by OP.
Re: Launch HN: Terminal Use (YC W26) – Vercel for filesystem-based agents
#53Re: Launch HN: Terminal Use (YC W26) – Vercel for filesystem-based agents
#54Based on the docs and API surface, I think the filesystem abstraction is probably copy-on-mount backed by object storage. I suspect it works as follows: when a task starts, filesystem contents sync down from S3/R2/GCS to a local directory, which gets bind-mounted into the container. The agent reads and writes normally - no FUSE, no network round-trips per file op. On task completion or explicit sync, changes flush ba…
Re: Launch HN: Terminal Use (YC W26) – Vercel for filesystem-based agents
#55When building, did you not have the thought or feeling that you would prefer the actual Claude Code and Codex harness to run, rather than just the SDKs also for your Agents?
Re: Launch HN: Terminal Use (YC W26) – Vercel for filesystem-based agents
#56This is really interesting, congrats on the launch. The use case I’m trying to solve for is building a coding agent platform that reliably sets up our development stack well. Few questions! In my case, I’m trying to build a one-shot coding agent platform that nicely spins up a docker-in-docker Supabase environment, runs a NextJS app, and durably listens to CI and iterates. 1) Can I use this with my ChatGPT pro or Cla…
We don't support docker-in-docker yet, but that's something on our short term roadmap. We have the need for this ourselves! For now, you could call a different service to spin up your sandbox with the image of your codebase. Not ideal, but this is what we do now. Yes, you can use your own subscriptions as long as you follow their guidelines
(Disclaimer, I'm the CEO of Dagger)
I founded Docker, and lack of proper nesting support was always a pet pieve of mine. I couldn't fix it in Docker, so I fixed it in Dagger instead :)
Re: Launch HN: Terminal Use (YC W26) – Vercel for filesystem-based agents
#57Earlier quoted context omitted.
Glad to find comradery! I've started the CLI interface to my custom agent since lol The reasons are (1) it's faster to do admin work like naming or deleting old sessions (2) I have not gotten the remote setup to work yet (haven't tried) but I do want to use it somewhere But yeah, it's gotten worse, the latest I recall is a new diff viewer for AI in the terminal (I already have git and lazygit)
It's hilarious to me how we are recreating decades of IDE advancements such that they work on the terminal, only for us to end up with what is essentially an IDE.
One thing I took from ATProto is a strong belief that user agency and choice are the penultimate design criteria. To those ends, I think that any agentic tooling needs to support the majority of users' choice about how to interact with it (SDK, API, CLI, TUI, IDE, and Web). My custom agent is headed that way anyhow, because there are times where I do want to reach for one of them, and it's easier to make it so with agents working on their own codebase (minus vscode because the testing/feedback I haven't figured out yet)
Re: Launch HN: Terminal Use (YC W26) – Vercel for filesystem-based agents
#58This is really interesting, congrats on the launch. The use case I’m trying to solve for is building a coding agent platform that reliably sets up our development stack well. Few questions! In my case, I’m trying to build a one-shot coding agent platform that nicely spins up a docker-in-docker Supabase environment, runs a NextJS app, and durably listens to CI and iterates. 1) Can I use this with my ChatGPT pro or Cla…
Hey I'm working on this problem (also a YC company but it's FOSS). It's a Dind approach https://coasts.dev/ , I wonder if this works for your setup.
Re: Launch HN: Terminal Use (YC W26) – Vercel for filesystem-based agents
#59Re: Launch HN: Terminal Use (YC W26) – Vercel for filesystem-based agents
#60Earlier quoted context omitted.
Hey I'm working on this problem (also a YC company but it's FOSS). It's a Dind approach https://coasts.dev/ , I wonder if this works for your setup.
Cool project!