logoalt Hacker News

Agent - Native Mac OS X coding ide/harness

53 pointsby jv22222today at 12:19 AM24 commentsview on HN

Comments

ammmirtoday at 9:42 AM

> Securely runs root-level commands via a dedicated macOS Launch Daemon

lovely.

gignicotoday at 6:45 AM

Off topic, but I sincerely ask: am I the only one that is disturbed by the use of the term "Mac OS X" to refer to modern versions of the OS that is currently called "macOS"? (and not MacOS either)

I mean, the name was changed ten years ago...

show 1 reply
mettamagetoday at 9:07 AM

So…

What is a harness? People have been talking about it and couldn’t glean what it is

show 1 reply
jsomedontoday at 9:10 AM

Is this "macos26" official Apple github account?

show 1 reply
moonlightertoday at 3:42 AM

Would love to be able to use this with my Claude Max Plan subscription ($100/month)... not going to pay with an API Key which burns through tokens way faster. Might try it for the local Apple Intelligence and accessibility to drive local apps tho.

apparaturtoday at 6:38 AM

Emoji in the macOS menu bar, that's new.

show 1 reply
danpalmertoday at 3:47 AM

> Our Founder! of this project is battling cancer. Your Stars and Forks are appreciated.

I'm sorry to hear this, but I'm also surprised that this is the first thing I learnt about this project, and that it is written in the third person. It detracts from the project.

show 4 replies
foreman_today at 5:24 AM

The XPC architecture is the right call for privilege separation … it’s what makes sandboxing trustworthy on macOS rather than just advisory. I’m really curious how it handles the trust boundary between LLM responses and the XPC service layer. The most obvious attack surface is prompt injection via a document the agent reads, which then instructs it to do something in Safari or Messages that the user wouldn’t normally sanction. XPC gives you OS-enforced process isolation but doesn’t help you if the privileged process is faithfully executing a poisoned instruction.

What’s the current model for distinguishing user intent from “content the agent read”? Is it purely the system prompt guidance, or is there something structural?

Thanks for posting.