Agent - Native Mac OS X coding ide/harness
jv22222
29 points
6 comments
April 16, 2026
Related Discussions
Found 5 related stories in 552.0ms across 14,015 title embeddings via pgvector HNSW
- How to setup a local coding agent on macOS kkm · 330 pts · June 12, 2026 · 69% similar
- Agent Safehouse – macOS-native sandboxing for local agents atombender · 479 pts · March 08, 2026 · 69% similar
- Show HN: AgentSwift – Open-source iOS builder agent hpen · 28 pts · April 28, 2026 · 64% similar
- Agent-talk: Enabling coding agents to work together xhluca · 48 pts · July 16, 2026 · 62% similar
- Agentty – A drop-in alternative to claude-code, written in C++26. 11.0 MB binary tfeayush · 27 pts · July 15, 2026 · 62% similar
Discussion Highlights (3 comments)
moonlighter
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.
danpalmer
> 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.
foreman_
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.