Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Cortera Framework:agentic framework with containment for rogue agents and action(github.com/cortera-space)
    discuss
  2. Show HN: Hntui – Another Hacker News TUI (Built on OpenTUI)(github.com/ahmd-sh)
    discuss
  3. Hubble Network Opens Satellite Coverage to All Bluetooth Devices(businesswire.com)
    discuss
  4. Even Americans who use AI every day are worried about it(techcrunch.com)
    1comments
  5. Ontological Language Models (OLMs)(olmapp.ai)
    1comments
  6. New SDK for Photonic Compute?(github.com/q-ant-gmbh)
    discuss
  7. Android Developer Verification vs. Play Console Verification: Sept 30 Deadline(submitsafe.app)
    discuss
  8. Show HN: Diff Pro Max – File Compare App(rkpg.net)
    discuss
  9. Slick: The most powerful and versatile Slack client mod(github.com/3kh0)
    discuss
  10. The state of MCP server security, after reading thirteen of them(les-k.github.io)
    discuss
  11. Advancing Private AI Compute with secure, server-side memory(deepmind.google)
    discuss
  12. Show HN: A "talk to a real person now" video chat, self-hosted on Cloudflare(github.com/yoavshalev)
    discuss
  13. KDE for People(kdeforpeople.com)
    discuss
  14. Hylio(marbletech.us)
    discuss
  15. Financial arithmetic is kind of hard(applied-algorithms.tech)
    discuss
  16. Pilgrim raises $25M seed for biological threat detection device(wsj.com)
    discuss
  17. Ask HN: What Is It Like Working with Q/KDB+? Q/KDB+ Questions?
    discuss
  18. McDonald's bets on chicken to win back diners as beef prices soar(ft.com)
    1comments
  19. OpenAI researchers might be spending >$4M/day on tokens (at API prices)(abtin.com)
    1comments
  20. Show HN: Diurnal – add a task without switching, with your calendar in view(diurnal.in)
    discuss
  21. Database of Databases VoltDB(dbdb.io)
    discuss
  22. Morgan Stanley Investment-Bank Deal List Leaked in Email Misfire(yahoo.com)
    discuss
  23. Qwen Image 2.1 beats Google Nano Banana 2.0 with minuscule 7B parameter model(tomshardware.com)
    1comments
  24. Why didn't anybody tell me about Redis Hash Slots?(verygoodsoftwarenotvirus.dev)
    discuss
  25. UK on course to miss climate targets, energy secretary admits(ft.com)
    1comments
  26. Italian parliament votes for return to nuclear energy(apnews.com)
    discuss
  27. Fertility rate dropped over 50% within 10 years in Argentina(twitter.com/jesusferna7026)
    1comments
  28. I Love Webrings(zwhuang.dev)
    discuss
  29. Trump TV: The Essentials Station(whitehouse.gov)
    1comments
  30. The Download: India's smart glasses menace and AI's trillion-dollar gamble(technologyreview.com)
    discuss

Show HN: Ox – A local agent that uses the internet for you

2 pointsby 48m agoopenox.ai
0 comments
I’ve been building Ox, a local, open-source agent that uses the internet for you.

Ox acts as an intelligent proxy between you and the internet. It uses websites and apps on your behalf, freeing you from attention-hungry interfaces and slow legacy services. As it works, it can turn what it learns into reusable actions (basically function calls), making future interactions deterministic and way faster.

Most service integrations today are still built ahead of time: someone writes an API integration, connector, MCP server, or browser automation and then maintains it as the service changes.

But the internet is becoming more dynamic so have our agents.

With Ox, instead of waiting for a connector, you can say something like:

“Connect to <service>.”

Ox can study a website or workflow through capabilities it already has, turn what it learns into typed actions and reusable skills, validate them, and make them available immediately.

That pushed me toward local agents.

A local agent operates from your own device, network, and existing authenticated browser sessions instead of relying on shared datacenter infrastructure. This also makes it less likely to hit blocks aimed at datacenter IPs or centralized browser automation.

The model doesn’t need your passwords, cookies, or session tokens. Authentication and browser state are owned by the Host, while the agent interacts through explicit actions that could be gated.

Ox is completely free and open source. You can use any model provider, including local or self-hosted models, while keeping your agent’s data on device. As local models improve, I think this architecture becomes increasingly useful because the agent can become more capable without requiring more of your data to leave your device.

The security model is also a big part of the design. Ox asks before taking sensitive actions, keeps credentials isolated from the model, limits what agent code can access, and lets you stop execution at any time.

Underneath the app is OpenOx, an open protocol for self-evolving agents. It separates the interface, agent, model provider, persistent state, execution environment, and external capabilities.

The agent can run JavaScript inside a capability-limited VM. The VM has no direct network access, Host filesystem access, shell, Node.js, or DOM. Anything outside the VM has to go through an explicit ox.* capability exposed by the Host. Services provide typed actions for websites, device capabilities, or MCP servers. Skills provide reusable instructions for combining those actions. New services and skills can be attached at runtime without waiting for a new version of the app.

They can remain local or be recorded in Git and shared through repositories, so each Ox can evolve independently while benefiting from capabilities learned by others.

The agent’s persistent state lives in a portable Ox Profile containing its identity, memory, skills, artifacts, and conversations. The goal is for that state to stay independent of any particular interface, including Ox itself, or model provider. File over app.

The first implementation is an iOS app. It’s available on the App Store, and the whole thing is open source:

https://openox.ai/

https://github.com/ziyzhu/openox

If you’re interested in the broader motivation behind the project, I wrote about it here:

https://ziyzhu.com/a-technology-for-free-will

This is still early. I’m especially interested in feedback on the security model and self-evolution.

I built Ox from scratch but many aspects of the project were heavily inspired by Pi/OpenClaw and the idea of malleable software. Ox’s core agent loop on iOS is pretty much a Swift rewrite of the Pi core package.

Happy to answer anything about the implementation or protocol.

A quiet thread, for now.Start the conversation on HN ↗