We can't find the internet
Attempting to reconnect
Something went wrong!
Hang in there while we get back on track
🔥 TOP SIGNAL
The local harness is no longer the whole coding-agent unit. OpenClaw 2.0’s release post describes shared cloud sessions that let another team member join live work or take it over with the Claw’s context intact; Peter Steinberger says his team moved from local coding harnesses to team.openclaw.ai, where multiplayer coding with nodes and cloud sessions changed how they build.
Simon Willison’s Work Cloud report shows the same move from a different product: persistent scratch/workspace state, parallel sub-agents, browser and internet execution, and scheduled prompts—currently limited to $20/month-and-up subscribers. He also flags the combination of private data, untrusted content, and a channel to communicate stolen data as a “lethal trifecta”; his baseline for unattended runs is a sandbox, restricted egress, monitoring, and no home directories, SSH keys, or cloud credentials.
⚡ TRY THIS
Turn browser tasks into reproducible DOM extraction. In Work Cloud, run:
Load simonwillison.net in your browser and extract the headings using JavaScript. If authentication is needed, take over for the password and 2FA; Work can then execute JavaScript through Playwright and return each heading’s level, text, and ID.Use upstream docs as the migration spec and tests as the gate. Simon Willison’s exact Claude Code prompt was:
Upgrade to anthropic>=1 - read https://raw.githubusercontent.com/anthropics/anthropic-sdk-python/refs/heads/main/MIGRATION.md and get the tests passing. The run produced PR #84 forllm-anthropic; copy the pattern for SDK upgrades: give the agent the authoritative migration document, require a passing test suite, then review the PR.Separate event triggers from approvals. Riley Brown gave an agent an AgentMail inbox, then configured a
grokbotroutine of typewebhookso each email received by the agent or user triggers the bot. For a purchase, the Link integration sent a phone notification and Brown explicitly approved the $22.50 charge in the Link app. Reuse the email → webhook → routine pattern, but keep money-moving actions behind a human approval step.Reset agent instructions after model changes. Geoffrey Huntley recommends deleting
agents.mdand skills periodically—especially between model releases—retaining useful learnings, revalidating them every couple of months, and resisting premature standardization.
📡 WHAT SHIPPED
OpenClaw 2.0 is a broad platform release: its post credits 933 contributors, including 569 first-time contributors, and more than 16,000 pull requests across installation, messaging, memory, skills, models, automations, browser/native apps, plugins, security, and fixes. New installs can start from existing ChatGPT or Claude subscriptions, API keys, or local models; shared cloud sessions add live collaboration and context-preserving handoff.
Long-context performance is becoming a first-class product metric. Theo says T3 Code reduced worst-case long-thread data from hundreds of megabytes to just under 40 KB; Brent Traut reports that ChatGPT desktop long threads now load over 90% faster with over 90% lower memory usage. Theo’s separate measurement across most of his Codex and Claude Code threads found that only roughly 1% of response time was spent streaming text, challenging token-by-token output as a useful liveness signal.
llm-anthropic 0.27adds compatibility with Anthropic’santhropicv1.0.0 Python library, whose migration switched fromhttpxtohttpx2. The release’s real-world validation is Willison’s Fable 5 run against the upstream migration guide, which produced PR #84.Quota semantics are diverging by product and model. Tibo says paid ChatGPT Work and Codex usage was reset after the service reached a claimed 25 million active users, and clarifies that Codex “20X” labels refer to weekly limits rather than five-hour limits; he says both Pro plans currently lack five-hour limits. Theo’s report adds a model-specific Fable 5 ceiling: in his hypothetical $1,000 weekly allowance, hitting $500 of Fable forces a switch to Opus or Sonnet even while weekly capacity remains, and he says he has exhausted five Claude accounts during heavy coding weeks.
Omarchy v4.0.2 shipped another batch of security patches and minor fixes, with Ryan Hughes crediting responsible disclosures and saying the new security team aims to push findings and fixes upstream beyond Omarchy. Release.
🎬 GO DEEPER
- Theo — “They lied...” — Start with the quota explanation, then the Fable allocation section. The useful distinction is between a weekly allowance and a model-specific ceiling; the latter can force fallback routing before the account’s overall budget is gone.
Study Simon Willison’s ChatGPT Work tool reference. His Work session catalogued 223 registered tools and 44 skills; the
control-browserskill’s hard prerequisite is to emit and read the complete output ofawait browser.documentation()before using the browser API.Study ghuntley/slopdimension. Geoffrey Huntley’s weekend project turns RSS sources into prompt-defined streaming channels, optionally regenerates historical content when a channel prompt changes, and routes both chat messages and generation prompts through a Codex-powered classifier. Its Erlang/Elixir actors, Jido, RTSP, HLS, and WebRTC stack is a compact example of putting a model-gated control layer around an automated media pipeline.
Editorial take: Today’s agent frontier is controlled persistence: durable state and handoffs are becoming the product surface, while disposable instruction files, approval-gated side effects, and sandboxed execution are the counterweights.


