We can't find the internet
Attempting to reconnect
Something went wrong!
Hang in there while we get back on track
🔥 TOP SIGNAL
Agent economics are overtaking model selection. In Theo’s real-world Claude Code use, cache writes accounted for more than 65% of Fable 5.1’s cost; in a separate firsthand test, a mostly copied four-line skatebench change with Gemini 3.8 Flash took more than 10 minutes and over 100 tool calls while the agent debated higher-tier models.
ThePrimeagen’s corresponding demand is blunt—faster and cheaper, not larger models—and Armin Ronacher estimates he burned about $1,000 on a pull request that went nowhere.
⚡ TRY THIS
Install a small-task circuit breaker. For a four-line or one-file edit, start with a hard ceiling such as 10 tool calls or two minutes; require a diff and targeted test, then stop and retry at lower effort or with a cheaper model if the ceiling trips. Google says Gemini 3.8 Flash gets its gains partly by taking extra reasoning steps and making iterative tool calls, and explicitly recommends lower effort—or Gemini 3.7—for efficiency-first workloads. Log cache-write share per session as well as cache reads: Theo says writes were the dominant cost in his Fable 5.1 usage.
Make side-effecting agents event-driven but approval-gated. Riley Brown’s reproducible GrokBot pattern is: create an isolated AgentMail inbox; use the exact routine prompt,
I want to configure a routine where you can watch this email address, use web hooks. Please set it up and then give me full instructions on how to set up this automation fully on agent mail.; require the routine to read the webhook and fetch the full thread rather than trust the preview; then add the agent’sPOST toURL, subscribe tomessage, and setAuthorization: Bearerunder Advanced → Custom Headers. Route messages from yourself to a reply in chat and on the thread, while other senders only generate a notification.For purchases or other irreversible actions, preserve the second gate: Brown’s Link integration still required approval for every charge, then created a virtual card for the exact researched price before checkout. Reuse the pattern for ops or development agents: external event → full-context fetch → bounded action → explicit approval.
Turn recurring repository review into a shared dashboard. OpenClaw’s maintainers gave the agent:
make this a dashboard, update it every day, keep me in the loop on relevant PRs to OpenClaw in this repository. The resulting view keeps proposals loaded in context, lets teammates ask for explanations or open issues/comments, and can route worthwhile reviews to Discord. Share the live session instead of copying agent output between people; the maintainers report that the same context can move across messaging, web UI, worktrees, and distributed sessions.Treat
additional_toolsas per-turn configuration. Armin Ronacher’s OpenAI SDK gotcha: message-leveladditional_toolsis not cumulative withadditional_toolsfrom a prior message; it is additive to the tools declared in the system prompt. Put the persistent baseline in the system prompt and attach transient tools explicitly on each turn.
📡 WHAT SHIPPED
Gemini 3.8 Flash / Flash Cyber. Google launched 3.8 Flash as its long-horizon coding and agent workhorse at the stated 3.7 speed and introductory price of $0.75 per million input tokens / $3.75 per million output tokens. Google reports that it outperforms most larger frontier models on DeepSWE v1.1 and scores 54.9% on HLE-Verified, but the operational detail matters more: harder tasks trigger more reasoning and iterative tool calls. Flash Cyber is restricted to trusted defenders; Google reports over 70% success on an internal vulnerability benchmark spanning 20 programming languages and 47.2% pass@1 on CWE-Bench versus 47.8% for a leading frontier model at significantly lower cost.
Flash is available through the Gemini API/AI Studio, Antigravity, Android Studio, Stitch, and other Google surfaces, and Cursor has already added it. The adoption caveat is practitioner-reported rather than an official policy citation: Theo warns that using Gemini subscriptions outside Google’s official surfaces can risk an entire Google-account ban and calls Antigravity risky until its harness, integrations, and ban policies improve.
Cursor Self-Hosted Machines. Cursor can now keep the agent loop, inference, and planning in its cloud while moving repository execution onto dynamically scheduled machine pools inside a team’s network. Register a worker with
agent worker start; it holds the working copy, edits files, runs commands, and maintains a long-lived outbound HTTPS connection. Important boundary: tool outputs flow back to Cursor for inference and may contain code, and transcripts may be processed and stored there. Pools can scale from a request queue and workers can be reset or have their workspace preserved for follow-ups.Nokia provides a concrete enterprise deployment signal. Cal Day, Nokia’s SVP of Product and Engineering, says the company is using Cursor to decompose a product line exceeding 50 million lines of code. Two people completed the initial analysis in roughly two weeks—work he says would otherwise have required bespoke tooling, several months, and roughly a dozen or more experts. Nokia is also using Cursor against a large service-request corpus for root-cause analysis and is targeting multi-agent orchestration in which engineers and architects supervise agents calling tools and collaborating at scale. This is a company-side account of early results, not an independent benchmark.
Background computer use arrives in Claude Cowork and Claude Code. Claude can now click, type, and open desktop apps in the background while the user works on something else, extending coding-agent automation beyond the terminal and browser tab.
OpenClaw 2.0 is rebuilt for long-running, shared work. Maintainers center the release on a multiplayer control UI and stability; they moved the session backend to SQLite after coding sessions ran for 10 hours or longer. Shared session links, worktrees, and worker nodes let teams hand off context instead of proxying agent output, though the maintainers say cloud sessions still lag local ones.
OpenWiki adds Cursor integration. The setup is two commands:
npm install -g openwiki@latest, thenopenwiki integrations install cursor; the same installer supports Claude, Codex, OpenCode, and Cursor.
🎬 GO DEEPER
- Riley Brown — “I Gave GrokBot Its Own Email and Credit Card”, ≈04:00–07:00. Watch the webhook wiring: the useful detail is not “agents can read email,” but fetching the full thread, authenticating the callback, and routing responses by sender.
- Same video, ≈07:00–10:30. The approval-gated purchase segment is a compact reference design for autonomous side effects: research, exact-price virtual card, phone approval, then checkout.
- Inside OpenClaw 2.0, ≈08:00–12:00. The multiplayer section shows a better collaboration primitive than human “meat proxying”: hand over the live session with its context, rather than relay the agent’s answer through chat.
- OpenClaw worker nodes, ≈18:00–21:00. The interesting pattern is infrastructure abstraction: let one gateway place sessions on available laptops, Macs, VPSs, or cloud machines—but note the maintainers’ warning that the cloud path is still being refined.
- Study
simonw/claude-system-prompts. Simon Willison’s Fable 5.1-built project turns published Claude prompts into readable synthesized Git histories, then uses GPT-5.6 Luna in a daily/manual GitHub Actions workflow to summarize only meaningful behavior changes. The deliberate separation—Claude writes the automation, another model summarizes Claude’s prompt—makes this a useful template for auditable agent-generated maintenance work.
Editorial take: Capability is abundant; the alpha is making agent work bounded, interruptible, auditable, and cheap enough to run continuously.












