HackerTrans
TopNewTrendsCommentsPastAskShowJobs

cmsparks

no profile record

Submissions

ABC News has taken all FiveThirtyEight articles offline

twitter.com
390 points·by cmsparks·2 miesiące temu·171 comments

Portability Problems: Syncing Coding Agent State Across Machines

omnara.com
1 points·by cmsparks·2 miesiące temu·0 comments

We cut Node.js' memory in half (so you don't have to)

blog.platformatic.dev
1 points·by cmsparks·5 miesięcy temu·0 comments

Components will kill pages

bitsandbytes.dev
63 points·by cmsparks·5 miesięcy temu·48 comments

Eliminating Cold Starts 2: shard and conquer

blog.cloudflare.com
62 points·by cmsparks·10 miesięcy temu·18 comments

comments

cmsparks
·2 miesiące temu·discuss
538 was actually pretty accurate!

They had a good article about how their predictions were much better than you'd expect, but obviously I can't link it anymore because ABC removed it.
cmsparks
·2 miesiące temu·discuss
No idea. ABC bought it and slowly has been shutting down the parts of it. They got rid of the projects page, then laid off all the folks working on it after the election, and now have gotten rid of all of the articles.

Fortunately the Github is still up: https://github.com/fivethirtyeight
cmsparks
·2 miesiące temu·discuss
If my read of this is correct, this means that Agent SDK orchestrator tools don't get subsidized usage.

This seems to intentionally be trying to kill the other (much better IMO) interactive Claude Code desktop apps...
cmsparks
·4 miesiące temu·discuss
That would prolly work for simple sites, but you still need the dedicated scraping service with a browser to render sites that are more complex (i.e. SPAs)
cmsparks
·5 miesięcy temu·discuss
Sandboxing, which is an optional, opt-in feature, requires persistent access to the code via our github integration + us syncing certain refs to our backend.

However, even if you don't opt into syncing, tool calls will end up sending pieces of code from your codebase to our backend. That's just the nature of how we handle persistence of chats. Though messages/chats are retained until you delete them.
cmsparks
·5 miesięcy temu·discuss
Reposting part of what Ishaan said elsewhere:

> We don't have E2EE yet (it's on the roadmap), so some level of trust in Omnara is required today. All repo operations happen locally on your machine. For messages/chat history: we store those encrypted at rest because we need access to sync across devices, send notifications, and resume agents. Cloud sandboxing is opt-in and would require syncing codebase state.
cmsparks
·5 miesięcy temu·discuss
Yeah, we have parallel agent functionality, sort of like conductor. This allows you to create worktrees for your repo and run any number of chats per worktree. On your local machine, we don't have any unique sandboxing capabilities, but we reuse your sandboxing settings from Claude or Codex if you have them set. The cloud sandboxing is more isolated, but still has access to the internet.
cmsparks
·5 miesięcy temu·discuss
When I say harness agnostic, I more mean we're agnostic to what harness is running, sort of like Zed with ACP: https://agentclientprotocol.com/overview/introduction. It still necessitates bringing the SDK and us writing an adapter for the SDK, but you still get to use the same chat interface for all the agent SDKs.
cmsparks
·5 miesięcy temu·discuss
We're not a fork, and from what I've heard from users our architecture is more reliable
cmsparks
·5 miesięcy temu·discuss
they're free up to a limit, just like us!
cmsparks
·5 miesięcy temu·discuss
We've seen a decent amount of comparisons to Happy, but anecdotally from some Omnara users who have used both, I've heard that reliability and latency when sending messaages is much better in Omnara

We try to provide more features on top as well, including (but not limited to):

* improved web interface

* worktrees

* sandboxing

* richer git management (richer diffs, checkpoints, git operations)

* preview URLs
cmsparks
·5 miesięcy temu·discuss
Thanks, we try to make it much easier than self hosting and managing your own tunnels! Let us know how it goes.
cmsparks
·5 miesięcy temu·discuss
Our goal is building infrastructure around the agent tools, which I think is how we'll build up a moat and provide automation value. I agree that competing with the labs on general tools is probably a bad business decision, but I'd argue that just means we should compete on the infrastructure, not the harness/model.
cmsparks
·5 miesięcy temu·discuss
When we started out, people were asking "Why would you want to continue coding on your phone". There's obviously a ton of competition now, but I think it's also validation for us.

Even though this might be "the obvious thing", I think there is a non-obvious way to build it.
cmsparks
·5 miesięcy temu·discuss
> branching not from main

This is actually a PR that I have open right now, it'll be out soon!

> automatic capitalization

We'll get this fixed

> automatic worktree names

definitely on our roadmap, probably will do that this week
cmsparks
·5 miesięcy temu·discuss
Yeah we've definitely taken some inspiration from everyone who building an agent orchestrator/delegation app right now!
cmsparks
·5 miesięcy temu·discuss
Anecdotally from some Omnara users who have used both, I've heard that reliability and latency when sending messaages is better in Omnara

We try to provide a decent chunk of features on top as well, including (but not limited to):

* web support

* worktrees

* sandboxing

* richer git management (richer diffs, checkpoints, git operations)

* preview URLs
cmsparks
·5 miesięcy temu·discuss
FWIW, we'll definitely add OpenCode support soon!
cmsparks
·5 miesięcy temu·discuss
OpenCode is great and `opencode serve` in particular is very cool. Though I think the main thing is that you need to manage the OpenCode server yourself and expose it via tailscale or something like that. Our goal is to provide managed infrastructure around the coding agent harness with features like mobile, sandboxes, preview urls, etc.

Our goal is to be harness agnostic as well, so eventually we will be adding support for running OpenCode sessions in Omnara.
cmsparks
·5 miesięcy temu·discuss
IMO feels sorta like Simon Willison's definition of agents. "LLMs in a loop with a goal" feels super obvious, but not sure if I would have described it that way in hindsight