← Home

AI Briefing — 2026-08-07

🔬 Research

Recursive Synthesis for Long-Horizon Terminal Tasks

79 upvotes · Zhongzhi Li et al. · Paper

RST (Recursive Synthetic Terminal Tasks) is a framework that generates long-horizon terminal-agent training data at scale for roughly $0.05 per task, compared to hundreds or thousands of dollars for human-authored equivalents. Starting from verified seed tasks, it iteratively extends solutions, realigns instructions and verifiers, then reuses accepted tasks as seeds — producing 37,484 tasks over 15 rounds. Task difficulty scales meaningfully: median solution length grows from 67 to 374 lines, and DeepSeek-V4-Pro pass@4 plummets from 90% at round 1 to 2.5% at round 15. Fine-tuning Qwen3.5-27B on these tasks yields up to +10 points on Terminal-Bench benchmarks, with agentic PPO pushing further gains of 20–41% relative to the base model.


ABSeeker: Training Long-Horizon Search Agents via Answer-Backtracked Credit Assignment

57 upvotes · Yijun Lu et al. · Paper

Standard RL and SFT for search agents treat all steps in a trajectory equally, failing to reward useful intermediate actions over noise. ABSeeker's Answer-Backtracked Credit Assignment (ABC) framework traces back from the ground-truth answer to recover intermediate clues, then scores each search step against those clues — turning sparse binary outcome labels into dense per-step rewards. A Qwen3.5-4B model trained on only 8,500 examples using this method reaches 55.3% on BrowseComp (with context management), matching agents ~30B in size. This is a compelling demonstration that fine-grained credit assignment can substitute for scale.


AgentOPSD: Recursive Self-Distillation for Agentic Reinforcement Learning

49 upvotes · Zi-Han Wang et al. · Paper

AgentOPSD tackles a persistent problem in multi-turn agentic RL: most policy gradient methods give credit uniformly across turns, missing the few pivotal decisions that actually determine outcomes. The method aggregates token-level teacher-student log-probability gaps into turn-level scores and recursively updates a Bayesian belief state in log-odds space, identifying pivotal turns by measuring marginal belief revision between steps — with no extra critic or rollouts needed. Evaluated on ALFWorld, WebShop, and Search-QA, it achieves 89.1% success on ALFWorld with Qwen2.5-7B, outperforming GRPO and self-distillation baselines. The recursive Bayesian framing is a principled contribution to the growing field of dense credit assignment for agents.


🛠 Tools

cloudflare/computer — Give your agent a computer

2,802 stars/day · Repo

Cloudflare Computer is a virtual filesystem backed by a Durable Object (SQLite state), exposing three pluggable execution backends: a FUSE-mounted Linux container, a shell isolate (via just-bash), and a JavaScript isolate running ECMAScript modules. The single entry point workspace.runtime.exec(source, { backend }) makes it easy to swap runtimes for different agent tasks. Currently in preview only (APIs unstable, not production-ready), but the architecture is notable for giving cloud-native agents a durable, sandboxed compute surface without external infrastructure. 5,082 total stars accumulated rapidly since launch.


mattpocock/skills — Agent skills for real engineering workflows

1,873 stars/day · Repo

Matt Pocock's personal .agents directory, open-sourced as a collection of small, composable shell-based agent skills for day-to-day software engineering — explicitly positioned as an alternative to heavier "vibe coding" orchestrators like BMAD or Spec-Kit. Skills install either as a managed Claude Code plugin (claude plugins install mattpocock-skills) or via skills.sh for editable local copies. With 207,780 total stars and ~60k newsletter subscribers, it has become a widely adopted reference for practical, opinionated agent skill design.


TencentCloud/TencentDB-Agent-Memory — Team-level memory hub for AI agents

1,057 stars/day · Repo

TencentDB Agent Memory converts raw conversations, documents, and code into four structured, reusable memory assets: Chat Memory, Skill, LLM-Wiki, and Code-Graph. These assets are governed and shared across agents and frameworks, enabling persistent institutional knowledge across sessions and team members. As long-horizon agents become more common, persistent, structured memory is a critical missing layer — this offers a production-oriented, multi-asset approach rather than simple vector-store retrieval.


📡 Analysis

datasette 1.0a38 (+ 0.65.3 backport) — SQL Injection security fix

2026-08-06 · Post · tags: security, sql-injection, datasette

Both Datasette 1.0a38 and the legacy 0.65.3 were released to patch a SQL injection vulnerability affecting instances that serve a mix of public and private tables. Users running any Datasette instance with mixed table visibility should upgrade immediately. The simultaneous backport to the 0.x branch signals that the issue is serious enough to warrant patching even the older stable line.


Simon Willison on Technical Blogging

2026-08-06 · Post · tags: blogging, interviews

Simon shares an interview with Cynthia Dunlop covering why he blogs, lessons learned, and advice for newcomers. His headline tip: "lower your standards" — aim to publish while still unhappy with what you've written, because the alternative is an ever-growing draft folder and nothing shipped. Practical and counter-intuitive advice for engineers who over-polish before publishing.


Sources: HuggingFace Papers API, GitHub Trending, simonwillison.net