-
Claude Code makes auto mode the default
Anthropic is flipping Claude Code so auto mode becomes the
default for new sessions on Pro, Max, and Team plans starting
August 14. The bet is blunt: humans are worse permission
gates than a trained policy when the UI asks every few steps.
In a test across 1,053 paid testers, a single permission prompt
mid-session was swapped for a clearly dangerous command—only
13.6% of humans refused it. Auto mode would have blocked 89%
of those actions (still leaving an 11% miss rate). A separate
Trajectory Labs hold-out of 72 indirect prompt-injection
scenarios (720 attempts) reported zero successes against Claude
Fable 5, Opus 5, or Sonnet 5 under auto mode. Simon Willison
buys the confirmation-fatigue argument and still wants more
independent confirmation—especially against malicious packages
that hide exfil inside “run the tests” instructions.
Prefer structural auto-policies over endless click-OK theater,
and still assume an 11% hole until your own evals say otherwise.
Source:
Auto mode is now the default in Claude Code — Simon Willison
·
Anthropic / Claude blog
-
Managed Agents: decouple the brain from the hands
Anthropic’s engineering post on Managed Agents is a systems
paper dressed as a product note. Early design put session,
harness, and sandbox in one container—a “pet” you had to nurse
when it stuck, with credentials sitting next to untrusted
generated code. The fix virtualizes three interfaces: a durable
session log (append-only events outside the context window), a
harness loop that calls Claude and routes tools, and sandboxes
that only see execute(name, input) → string.
Harnesses and containers become cattle: crash the harness,
wake(sessionId) and resume from the last event;
lose a sandbox, reprovision and retry. Auth stays out of the
sandbox (Git tokens wired at init; MCP OAuth via a vaulted
proxy). Side effect of “many brains, many hands”: containers
provision only when needed, cutting p50 TTFT ~60% and p95 over
90%.
Design agent platforms as swappable interfaces—session, harness,
sandbox—not one immortal container holding secrets and state.
Source:
Scaling Managed Agents: Decoupling the brain from the hands — Anthropic Engineering
-
Stop picking models; start picking harnesses
The Tool Nerd’s 2026 harness roundup draws a line teams still
blur: a framework (LangChain, LlamaIndex, AutoGen)
hands you primitives and makes you wire recovery, state, and
tool failure yourself; a harness is the application
scaffold that already runs plan→act→observe, tools, sandbox,
filesystem/Git, memory files, context compaction, skills,
subagents, MCP, guardrails, and observability. Same model,
different harness, different ship rate. Their short list spans
Claude Code, Codex, Cursor SDK, Pi, OpenCode, OpenHands, Cline,
Goose, Mastra’s harness primitive, and LangChain Deep Agents—plus
early “meta-harnesses” (Omnigent, Vercel AI SDK HarnessAgent)
that sit above several coding agents with one control plane.
Budget harness choice like runtime choice: reliability, recovery,
and ops surface matter more than this month’s leaderboard row.
Source:
10 Agent Harnesses Every AI Builder Should Know in 2026 — The Tool Nerd
-
“Don’t be a meat proxy”
Niklas Gruhn names a workplace failure mode everyone has felt:
someone pastes a full Claude dump into Slack, a PR thread, or
a group chat as if relaying the model were the contribution.
Readers can talk to the model themselves; the middle human
adds latency and none of the validation. His fix is old craft
with a new label—read, understand, validate, then answer in
your own words (proof you did the prior steps). On code review
the pattern gets sharper: ticket → agent → paste feedback →
agent again with zero reading means the reviewers did the
implementation, using you as a meat proxy.
If your only move is verbatim relay, you are infrastructure
for someone else’s context window—rewrite or stay quiet.
Source:
Don’t be a meat proxy — Niklas Gruhn