We can't find the internet
Attempting to reconnect
Something went wrong!
Hang in there while we get back on track
🔥 TOP SIGNAL
The useful unit of delegation is becoming the pull request, not the prompt. Theo’s reusable instruction gives an agent the whole loop: clone the branch, bring it up to date, push changes, monitor review feedback and CI failures, fix them, test thoroughly, and merge only after CI and automated review pass; he says the verification burden should scale with PR complexity. His companion prompt uses subagents to audit every open PR for changes on main, modernize the branches, and return status plus next steps.
⚡ TRY THIS
Turn a PR into an explicit state machine. Start with:
Take over [complex pull request]. Clone the branch, get it up to date, push changes, monitor review feedback and CI failures, address both, test thoroughly, and merge only when CI and automated review pass.Keep “merge” as the terminal state, not an implied side effect.Instrument before asking an agent to optimize. Add timers to specific product actions, feed the agent the bottlenecks and money-costly paths, and ask it to find caching or other workarounds without changing the original behavior. Use the same measurements to decide which features to prioritize or delete. Kent C. Dodds argues this is only possible when the product has good instrumentation.
Put a routing layer in front of specialist CLIs. In a five-day Cursor Pro+ evaluation, the author created an “Agentic Engineer” Bot that routes visual, design, and frontend work to Claude Code; debugging and careful code reading to Codex; and simpler tasks to the Grok Build CLI. Delegate to the role and let it choose the tool from the job, rather than making the routing decision every time.
Security caveat: separate Grok Bots share the same computer, files, browser sessions, and logins. Treat Bot roles as organizational boundaries, not security boundaries.
Give GUI-capable agents a real application to operate. On macOS, install the full Blender app and start with Simon Willison’s prompt:
Use the already install /Applications/Blender to render a scene of a pelican riding a bicycle. Iterate withOK add a background and a lot of flairandOK make it a whole lot better; the agent can produce editable.blendfiles, renders, and even movies from image sequences.
📡 WHAT SHIPPED
OpenClaw v2026.9.2. Restarts now pick up where they left off, long chats are claimed to move faster, and the release adds GPT-6 Astra plus Muse Spark 1.3. Release notes.
Grok Bot harness optimization. The @bot team says a two-week pass over routing, caching, dynamic context, and token efficiency should deliver 10% more effective usage on average and up to 35% more for some heavy users; a related update reset usage limits for all Grok Bot users. Treat both as vendor-reported operational claims.
Dynamic connector discovery in Grok. New connectors can be suggested automatically from the task, added to agent context without a restart, and persisted across chats.
Cloud-session harnesses are still the control-plane bottleneck. Peter Steinberger is targeting cloud sessions that start in seconds, but says fresh repository clones are currently too slow; his next step is snapshotting. He says his
crabboxsetup should work with roughly 40+ providers.Omagrid/OpenCode is an early local-agent signal. Its developers report getting OpenCode working after an all-nighter; Omarchy boots with DeepSeek and Qwen already available for apps and agents, while Omagrid is described as a P2P network where more Omarchy machines provide access to more models. It is early access, not a demonstrated production platform.
🎬 GO DEEPER
GPT-6 Astra for developers — ⏱️ 1:59. Simon Willison flags this segment for Astra’s 3D generation and quotes the developer framing: better attention to detail, better prompt understanding, and more sophisticated outputs, especially for 3D models. Treat it as a hands-on capability demo rather than a benchmark.
Mike Krieger on AI-built companies — delegation → validation → PR systems. Krieger describes Claude Code moving from one-off assistance to delegated 20–30-minute work blocks with a human validating the result; he says nearly all Claude Code development is done using Claude and that the resulting increase in pull requests forced Anthropic to redesign its development systems. His personal review loop is also worth stealing: draft first, then ask, “What am I missing? Please challenge what I haven’t said,” followed by, “What would a very intelligent person ask next?”
Read the Grok Bot field report. The five-day evaluation is a useful counterweight to managed-agent enthusiasm: the abstraction is strongest for administration, product management, and other work around software engineering, while the author says deep implementation benefits from keeping the machinery visible and doubts Grok Bot will author most engineers’ pull requests soon.
Study Simon’s Astra + Blender example. It is a compact example of an agent operating a real GUI application through its Python API, producing editable assets and rendered output rather than stopping at a code snippet.
Editorial take: The edge is moving from generation to operations: a long-running coding agent needs routing, measurable targets, resumable state, and a proof-bearing merge gate—not just a stronger model.
