Cortex + Den
A native macOS app I built to work with Claude, and now my daily driver. It drives the Claude Agent SDK as its engine on my subscription, not a metered API. One codebase became four apps and a set of always-on server engines. I built this entire site in it.
I wanted the parts of an AI coding tool I actually use, without the parts I don't, and I wanted it on my own subscription rather than paying per token. So I built a native Mac app that drives the Claude Agent SDK directly. It reads and edits files, runs bash and git, holds several agents as tabs at once, and keeps a live context meter. Then it grew an ops brain, so I split it into two focused apps that share state.
The app is self-contained: the Tauri shell spawns the Node engine as a child process, so there is no terminal to babysit. The engine multiplexes several agents over one WebSocket, each its own SDK session with its own working directory, model and context. Crucially it drives the Agent SDK rather than reimplementing the agent, on subscription credit, so a long session costs my plan, not a metered bill. The same hermetic-engine pattern, gated and rate-limited, is what powers the chat on this very site.
This is the clearest evidence of how I work: I design, build, secure and operate real software, and I build the tools that build the rest. A native desktop app, a Node engine, a Tauri shell, a Capacitor iPhone app, always-on server engines, all on my own subscription and my own infrastructure. This site, and its chat, were built in it.