OpenAI reduced the price of its top-tier GPT-5.6 Sol model by 20%, now costing $5 for input and $30 for output per million tokens. Meanwhile, a team from UC Berkeley’s FlashML lab, including Kurt Keutzer and Ion Stoica, released FreeToken, enabling 290-billion-parameter MoE models to operate on standard consumer GPUs. The gap is clear: centralized frontier access is becoming cheaper while the cutting edge shifts toward local hardware, widening the divide between API economics and ownership economics.

Underneath the gap, two leverage strategies are competing. Frontier labs like OpenAI and Anthropic are driving API prices down to capture volume. Systems researchers like the FlashML team are commoditizing inference on local hardware, streamlining experts from GPU through system RAM. The first camp is betting on margin, the second is betting on owning the means of inference. The moat is moving, and these two paths won’t converge at the same endpoint.

Top developments

Announcements & releases

Worth reading

Discussions & takes

Worth noting

  • OpenConnector puts an open-source auth gateway between AI agents and your apps: Every agent that reads your email or updates Notion needs your credentials, and handing over raw passwords or API keys is a hard no for most people. OpenConnector, from OOMOL, replaces that with a managed OAuth layer: connect your SaaS accounts once, then let any agent access them through scoped tokens. Supports 1,000+ providers and works with Claude Code, Cursor, Cline, and other agents via MCP, CLI, or SDK. Self-host with Docker or Cloudflare Workers.

  • onlygains.​ai Co-Founder Chaitanya Giri Goswami open-sourced Munder Difflin, an agent harness to run an office of your clones: Munder Difflin wraps a dozen CLI agent tools (Claude Code, Codex, Grok, Qwen, Gemini CLI, OpenCode, and more) into a single desktop app with an office-themed simulation where clones appear as employees on a virtual floor. It runs locally, uses your existing API subscriptions, and is free and open source under MIT. Grab the latest release from the GitHub repository.

  • Faber, an open-source coding agent that uses a code graph to navigate repos efficiently: Most coding agents read hundreds of files per query, burning tokens on irrelevant code. Faber instead builds and incrementally maintains a lightweight call-and-import graph of your repo, answering questions with a ~50-token graph query before touching files. It runs as a terminal REPL with diff approval, undo/redo, session memory, and support for Claude, OpenAI, and local Ollama models.