Earlier quoted context omitted.
[flagged]
> You’re right to call this out. This is such a nightmare. Burning down the world so I can read this shit.
Launch HN: Terminal Use (YC W26) – Vercel for filesystem-based agents
61–70 of 95 posts
Re: Launch HN: Terminal Use (YC W26) – Vercel for filesystem-based agents
#62Re: Launch HN: Terminal Use (YC W26) – Vercel for filesystem-based agents
#63Re: Launch HN: Terminal Use (YC W26) – Vercel for filesystem-based agents
#64Based 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…
* https://fly.io/blog/design-and-implementation/ * https://juicefs.com
Re: Launch HN: Terminal Use (YC W26) – Vercel for filesystem-based agents
#65Re: Launch HN: Terminal Use (YC W26) – Vercel for filesystem-based agents
#66One question: for the "existing tasks stay on old version" case, do you support any kind of manual migration trigger? E.g. if I fix a genuine bug in how I'm parsing a document, I might want to re-run the agent on specific old workspaces with the new version, rather than waiting for users to start new tasks.
Re: Launch HN: Terminal Use (YC W26) – Vercel for filesystem-based agents
#67One area I'd love to understand better: inter-agent communication and auditability. When multiple agents share the same filesystem (e.g., a coordinator agent and several sub-agents), how is message passing or state handoff handled? Is it purely file-based (agents read/write to agreed-upon paths), or is there a more structured IPC mechanism?
More importantly, from an audit perspective: is there a way to replay or inspect the full sequence of reads/writes and agent messages across a multi-agent task? For production use cases (document processing, internal tooling), being able to trace why an agent made a decision — and which files it read at that moment — feels like a hard requirement. Curious whether this is on the roadmap or expected to be handled at the application layer.
Re: Launch HN: Terminal Use (YC W26) – Vercel for filesystem-based agents
#68Earlier quoted context omitted.
I think there are some primitives for agents that need to be built out for better security and being able to reason about them. Agents run on infra, they have network connectivity, they have ACLs and permissions that let them read+write+execute on resources, they can interact with other agents. To manage them from both an infra and security perspective, we can use the existing underlying primitives, but it's also use…
[dead]
Re: Launch HN: Terminal Use (YC W26) – Vercel for filesystem-based agents
#69Really interesting platform — the decoupled filesystem model makes a lot of sense for long-running agents. One area I'd love to understand better: inter-agent communication and auditability. When multiple agents share the same filesystem (e.g., a coordinator agent and several sub-agents), how is message passing or state handoff handled? Is it purely file-based (agents read/write to agreed-upon paths), or is there a m…
Re: Launch HN: Terminal Use (YC W26) – Vercel for filesystem-based agents
#70I know OSS business models are rough, but someone is going to solve this in open source and I think that is what will achieve traction.