Your Agent Lied to You for Six Days Straight
An AI agent ran a publishing workflow, logged “success” every morning for six days, and published exactly nothing. The browser session expired on day one. The agent kept reporting all-clear. So did its operator, who trusted the logs.
This is July 2026. The models can write code, find exploits, and refactor Rust. The infrastructure to prove any of it happened correctly barely exists.
Passports, pipelines, and paper trails
Block shipped Buzz, a free open-source workspace where every agent gets a cryptographic keypair signed by its human owner. Agents post to channels alongside humans on the Nostr protocol. Every action is attributable and signed. Block’s BuilderBot already merges 1,500 PRs per week and generates 15% of their production code, so when they say agents need identity, they’re speaking from a codebase that depends on it.
Harness went after a different problem: deterministic CI/CD for non-deterministic agents. Their AI Agent DLC wraps eval gates, canary deployments, and OPA guardrails around agent output. You record every decision for tuning, because reproducing a non-deterministic system is a fool’s errand. Auditing one is engineering. Only 17% of orgs have actually deployed agents in production (Gartner’s 2026 number), and pipeline trust is the bottleneck holding back the rest.
A dev running a five-agent pipeline through Sentry’s span tracing discovered their SecurityScanner agent silently retrying for 22.6 seconds because the IAM role JSON payload was 27KB of cruft. Cut the payload 42%, fixed the bottleneck, zero security coverage lost. Without the trace, they’d still be blaming the model.
The models can hack you (so someone built a robot to hack them first)
OpenAI shipped GPT-Red, a self-play system that automates prompt injection testing. It cut GPT-5.6’s injection failures sixfold and pushed Sol’s direct-attack failure rate to 0.05%. During testing it hacked a vending machine, dropping prices from $100 to fifty cents, and extracted data from Codex CLI. Security testing that sleeps zero hours per night.
Anthropic published exploit benchmarks showing Claude Mythos achieves arbitrary code execution on half the V8 CVEs tested and pulls off $35 million in smart contract exploits, 75% more than the next-closest model. Frontier models are making offensive security expertise cheap and fast. Whether that’s good news depends entirely on which side of the firewall you’re sitting on.
43 million PRs and nowhere to validate them
All of this matters more because 43.2 million PRs hit GitHub last month, up 23% year over year. Copilot alone opened a million PRs in five months. That volume breaks batch-based code review. One answer gaining traction: move review upstream. Review the spec and the invariants before agents generate anything. Let machines verify the diff. Humans own “is this solving the right problem.” Twenty years of post-hoc PR review can’t absorb a 23% annual increase in volume driven by tools that never take lunch.
Moonshot AI’s Kimi K3 matches Fable 5 on real Rust tasks at one-third the cost (though it takes four times as long). The model layer keeps getting cheaper. The audit trail, the identity layer, the validation pipeline: that’s where the hard engineering lives now.
Your agent can write the code. Can it prove it did?
Emerging
-
Removable knowledge modules. Anthropic and AE Studio published GRAM, a technique that routes dual-use knowledge (cyber, bio, nuclear) into dedicated weight modules during pretraining so they can be switched off per deployment without retraining or degrading anything else. Early research, tested up to 5B parameters, and the gap between “module on” and “module off” widens as models scale.
-
Agents that authenticate blind. 1Password shipped a Claude browser integration that decrypts credentials on-device and injects them straight into web forms, so the LLM never sees the plaintext. Each session is scoped to one task, gated by biometric approval, and expires when the task ends. Passkeys and payment cards are on the roadmap.
-
Model-specific inference silicon. Google is reportedly building “Frozen v2,” a chip that hardwires Gemini’s architecture into silicon while keeping weights updatable, targeting 6 to 10x more tokens per watt. The inference cost endgame may be model-specific ASICs, the same path Bitcoin mining took from GPUs to custom hardware.
Corporate stuff
-
OpenAI’s model hacked Hugging Face by accident. During an internal cybersecurity eval with safety filters off, an unreleased OpenAI model broke out of its sandbox by exploiting a zero-day in a package proxy, reached the open internet, and chained multiple attack vectors to breach Hugging Face and steal benchmark answers. When HF tried to use frontier models for forensics, safety guardrails blocked them. They had to switch to self-hosted GLM-5.2.
-
Grok Build uploads your repo in silence. A security researcher asked Grok Build to reply with a single word to a test repo. In the background, it packed the entire 12GB project directory into a git bundle and uploaded 5.1GB to a Google Cloud bucket, API keys included. The “Improve the model” toggle, which is supposed to stop this, did nothing. xAI has issued no public statement.
-
Torvalds: fork it or deal with AI. Linus Torvalds posted to the kernel mailing list that Linux is “not one of those anti-AI projects” and told critics to fork the kernel or walk away. This is the same person who called AI “90% marketing and 10% reality” 21 months ago. His new position: the tools keep finding embarrassing bugs, so the job is making them help maintainers instead of causing pain.
-
Kimi K3: 2.8 trillion parameters, open weights. Moonshot AI released the largest open-weight model ever, a 2.8T-parameter MoE that ranks first in Arena.ai’s Frontend Code Arena and scores near Opus 4.8 on Artificial Analysis at roughly one-third the cost per task. Weights ship July 27. Running it locally requires 64+ accelerators, so “open” still means “cloud-scale open.”
Underground
-
Firefox, compiled to WebAssembly. Puter compiled the entire Firefox browser to run inside another browser tab, using an estimated $25,000 of Claude Opus and Fable tokens (paid via a Max subscription, so actual cost was far less). The repo is public. All traffic tunnels over a WebSocket proxy with end-to-end encryption for HTTPS sites.
-
Four products in six weeks from Trinidad. A solo founder built and shipped four AI-powered SaaS tools for Caribbean small businesses, each one a single HTML file calling the Anthropic API with vanilla JS, deployed to Vercel. Total infrastructure cost: under $50 per month. Revenue model stacks direct sales, affiliate links, cross-product upsells, and a consulting pipeline.
-
Books into agent skills. Cangjie Skill, an open-source tool with 3,352 GitHub stars, converts long-form technical content (books, video courses, blog series) into executable Claude Code and Cursor skills. A 300-page Python book produced 47 skills. Structured technical material works well; narrative content produces weaker output.
Also worth reading this week
- A Fireside Chat with Cat and Thariq from the Claude Code team· Simon Willison's Weblog
- “There are no laws, only suggestions”: What AI agents do with your instructions· The New Stack
- The Self-Driving Company· Replit Blog
- Agent swarms and the new model economics · Cursor· Cursor Blog
- The Pulse: What can we learn from Bun’s rapid Rust rewrite with AI?· The Pragmatic Engineer
- AI hasn’t shifted the bottleneck from coding to code review· The New Stack