Agent Memory as a Deductive Database

Jordy Zomer's Lemmalog treats LLM agent memory as a Datalog deductive database rather than a vector store: facts carry provenance, conclusions retract when their premises are invalidated, and incremental evaluation keeps per-query cost constant regardless of history length — yielding 45x token savings on LongMemEval.

Read more →

The Agent That Never Stops Thinking

Headlong, a new open-source agent microharness from Laude Institute and MIT, rejects the request-response model: instead of spinning up on each message, the agent runs a continuous inner monologue loop and treats incoming messages as observations in an already-running stream of thought. Built in under 10K lines of Bash, it's a deliberately minimal bet that persistent agency doesn't require a complicated runtime.

Read more →

Vercel Labs Ships a 6 MB Coding Agent

Vercel Labs open-sourced fx, a Zig-native coding agent harness that weighs 6.3 MB, cold-starts in 10 microseconds, and compiles to WebAssembly. It is model-agnostic, fully hermetic, and designed for embedding in larger systems rather than for IDE-style interactive use.

Read more →

Who Wrote This Line?

us-vs-them is a small open-source library that reads git version history to produce line-level human/agent authorship scores — no markup required. As agentic editors increasingly co-author code, distinguishing human-written lines from machine-generated ones is becoming a practical necessity, and the git history turns out to be a surprisingly clean signal.

Read more →

Five Models Walk Into a Diff

OpenChamber v1.18.0, an open-source agentic IDE that lets you run the same task across up to five models and fuse the strongest results, ships a guided diff walkthrough that reorders large changesets into explained stops. It's a privacy-first alternative to commercial tools: code stays local, API keys are yours, and the project now supports any OpenAI-compatible endpoint.

Read more →

The Unix-Friendly LLM CLI Grows Up

LLM 0.32, Simon Willison's CLI tool for talking to hundreds of models, ships its most significant update since launch: reasoning traces go to stderr, server-side tools replace local execution, and conversation logs adopt a Git-style content-addressable format. Three changes that each solve a real design problem cleanly.

Read more →

Muse Code Reads Your CLAUDE.md — and Sends It to Meta

Meta's new terminal coding agent reads CLAUDE.md and .codex/ skills as project context when its own AGENTS.md file doesn't exist. Any content in those files — internal URLs, API endpoint docs, project constraints — goes to Meta's servers on every call, and to Meta's training data if you're on the contributor tier.

Read more →

When the Environment Is the Product

Cursor published the infrastructure story behind their cloud agent deployment, including the concrete result that agents went from authoring roughly one in ten merged PRs to more than half. The investment wasn't in models or prompts but in environment quality: a tailored Dockerfile, a simplified build abstraction, and a self-healing automation called Cloud Doctor.

Read more →

MCP's Stateless Pivot

The 2026-07-28 MCP specification drops protocol-level sessions entirely, making the HTTP transport stateless: every request now carries its own protocol version and client capabilities, enabling standard load balancers without sticky sessions. The revision also introduces Multi Round-Trip Requests to replace server-initiated streams, adds cacheable list results, and formally deprecates Roots, Sampling, and Logging.

Read more →

What Grok Build Uploads

A wire-level analysis of Grok Build CLI 0.2.93 found it uploads the entire workspace as a git bundle to Google Cloud Storage — about 5.1 GiB from a 12 GB repo, including files the agent never read and unredacted .env credentials. The model itself received 192 KB. The "Improve the model" toggle does not stop the upload.

Read more →

The Hidden Apostrophe

A developer reverse-engineered Claude Code's client JavaScript and found it silently substitutes Unicode apostrophes in system prompts to fingerprint requests routed through custom API base URLs — encoding domain-list hits and timezone signals in characters visually indistinguishable from ordinary text. The finding raises the usual trust question: should a developer tool that runs in your terminal quietly rewrite what it sends?

Read more →

The Shell Around Your Agents

Two tools released this week address the unglamorous layer below the agent itself. Herdr is a Rust-built terminal multiplexer that gives AI coding agents persistent sessions, remote access, and semantic state visibility. Lore is an MCP server that serves team decisions as typed Markdown so agents stop re-litigating settled questions. Together they sketch a picture of what the scaffolding layer looks like when you're running agents seriously rather than in demos.

Read more →

Mojo Goes to Qualcomm

Qualcomm agreed to acquire Modular for approximately $3.9 billion on June 24. Modular makes Mojo (a Python-superset systems language) and MAX (a hardware-agnostic inference engine). The deal is a bet that AI inference will fracture across hardware vendors, and whoever owns the abstraction layer wins.

Read more →

The Token Compression Illusion

Przemek Mroczek's critique of RTK — a tool claiming 60-90% token cost reduction by compressing CLI output for AI agents — lands a specific technical argument: the savings are measured on terminal output alone, which is not what's expensive; the compression happens silently without telling the agent context was stripped; and there's no published data on whether tasks actually succeed. The post is a useful diagnostic for a broader pattern in agent cost tooling.

Read more →

The Laptop Won

Vicki Boykis published a careful practitioner's report on her local-inference stack this week, and the conclusion that stuck — ~75% of frontier model capability for agentic coding on a 64 GB M2 Mac — is more significant than the raw number suggests. The tooling layer finally grew up, and that changes what "running locally" means.

Read more →

Anthropic Just Bought the Factory That Builds Its Rivals' SDKs

Anthropic acquired Stainless — the startup that generates official SDKs for OpenAI, Google, Cloudflare, Replicate, and hundreds of others — for a reported $300M+. The hosted SDK generator will be wound down, meaning competitors lose access to the automated multi-language library generation Stainless has provided since 2022. The acquisition positions Anthropic to control the MCP server tooling layer as agent connectivity becomes the key platform battleground.

Read more →

Agents Need Systems Thinking, Not Just Aligned Models

Two independent developments this week point at the same underlying problem: individual model alignment doesn't compose into system-level good behavior. Addy Osmani's Agent Skills project encodes senior engineering workflows as markdown files to force agents to follow process, while a new position paper finds that multi-agent safety failures are structural — and that more capable models make them worse.

Read more →

Apple Shipped Its Claude Code Config to Production

Apple Support app v5.13 accidentally shipped two CLAUDE.md instruction files in the app bundle, exposing internal architecture context including a shared UI library called SAComponents and a chat module with three participant roles. Apple pushed v5.13.1 hours later to remove them, but not before the contents circulated.

Read more →

The $10/Month Assumption Is Gone

GitHub announced Copilot will move to token-based AI Credits billing on June 1, retiring the premium request model. Monthly prices stay the same but the economics shift: code completions are now free and unlimited, while agentic coding sessions draw from a monthly credit budget that reflects actual token consumption.

Read more →

Giving AI Coding Agents a Script to Follow

Archon wraps AI coding agents in versioned YAML workflows — DAG pipelines with Prompt, Bash, Loop, and Approval nodes — and runs each task in an isolated git worktree. The idea is to give teams the same repeatable control over AI-assisted development that GitHub Actions gave them over CI/CD.

Read more →

The IDE Learns to Delegate

Cursor 3, released April 2, reframes the IDE as a multi-agent orchestration platform. Parallel agents initiated from mobile, Slack, GitHub, and Linear all surface in a unified sidebar. Cursor is also shipping Composer 2, an in-house frontier coding model. The shift is from "AI assistant inside an editor" to "editor inside an agent coordination system."

Read more →

What the Source Maps Revealed

Anthropic accidentally shipped source maps in their Claude Code npm package, exposing the full client-side source. The analysis that followed is worth reading not for the drama of a leak but for what the code reveals about the product's actual architecture: anti-distillation mechanisms, an "undercover mode" for employee contributions, and an unreleased background agent called KAIROS.

Read more →

The Ad in the Forest

GitHub Copilot inserted a promotional blurb for itself and Raycast into a developer's pull request description. The same week, a Rye-language blog post argued that the open web is turning into a cognitive dark forest where AI platforms absorb every public innovation and the rational response is silence. One incident, one essay, same underlying dynamic.

Read more →