Harrison Pennington, the developer behind the popular openai-swift SDK, just released AgentSwift. It's a native macOS app that runs an autonomous coding agent built specifically for Apple platform development. You describe what you want, and AgentSwift uses Claude to discover your Xcode project, edit source files, compile with xcodebuildmcp, launch the app on a simulator, and run UI automation to verify everything works. The whole cycle runs without you opening Xcode.
The tool supports Claude Opus 4.7 for heavy lifting on large codebases and Claude Sonnet 4.6 for quicker iteration. Pennington built it with zero external Swift dependencies, just pure SwiftUI and Foundation. The architecture is straightforward: a streaming SSE client talks to Anthropic's API, a tool executor handles bash commands and file operations, and the agentic loop ties it together. There's build caching that reuses scheme and simulator info after the first run. The error handling is sensible too, trying one fix before surfacing the problem to you instead of spiraling into an infinite retry loop.
The obvious question is whether this offers enough over just running Claude Code with Xcode MCP servers. Honestly, the integrated workflow probably does matter for serious Apple development. Xcode's build system quirks and simulator management are finicky enough that a purpose-built agent has real advantages over a generic coding assistant wired up with MCP. But the setup requires Node.js and npm for two CLI dependencies (xcodebuildmcp and openspec), which feels a bit awkward for a tool pitching itself as a native Swift experience. The Hacker News discussion when it launched had people asking exactly this, wondering what guardrails or specialized features justify a standalone app.
That said, Pennington has credibility here. His openai-swift SDK filled a real gap before OpenAI shipped official Swift support, and AgentSwift targets a genuine pain point. Whether it becomes the go-to tool or gets absorbed into broader agent platforms depends on how fast the space moves. But right now it's working software that builds and runs iOS apps on your machine without hand-holding.