惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

腾讯CDC
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 叶小钗
人人都是产品经理
人人都是产品经理
博客园 - 聂微东
The Cloudflare Blog
爱范儿
爱范儿
阮一峰的网络日志
阮一峰的网络日志
WordPress大学
WordPress大学
小众软件
小众软件
博客园 - 三生石上(FineUI控件)
Last Week in AI
Last Week in AI
Jina AI
Jina AI
V
V2EX
罗磊的独立博客
V
Visual Studio Blog
A
About on SuperTechFans
IT之家
IT之家
P
Proofpoint News Feed
B
Blog
博客园 - Franky
Blog — PlanetScale
Blog — PlanetScale
Google DeepMind News
Google DeepMind News
Y
Y Combinator Blog

The Decoder

The AI industry's platform trap is starting to look a lot like Microsoft's OpenAI buys Ona to push Codex toward long-running, autonomous coding tasks Jeff Bezos' AI startup Prometheus closes $12 billion round at a $41 billion valuation Free Deezer tool lets users on any streaming service check their playlists for AI music OpenAI vs. Anthropic: A price war over API tokens is brewing Dario Amodei's new essay reads like a Cold War playbook for the AI age Claude Fable 5: Anthropic admits "wrong tradeoff" after invisibly throttling rival AI researchers Google's new open model DiffusionGemma generates text from noise instead of word by word OpenAI's IPO slips as Altman tells staff to expect a public offering "within the next year" Anthropic study shows AI needs hours, not weeks, to build exploits from security patches OpenAI wants its biggest data center yet, and Nvidia would back the bill Claude Fable 5: The first Mythos model is powerful, expensive, and heavily filtered Germany's National Security Council greenights an AI Safety Institute modeled after the UK's AISI Google's NotebookLM now runs its own cloud computer with code execution and agent-based research Anthropic releases Claude Fable 5 and Mythos 5 with major gains in coding and science Google's Gemini 3.5 Live Translate delivers real-time voice translation across 70+ languages SpaceX wants to put data centers in orbit, and Musk says it's no big deal Landmark German ruling declares Google's AI Overviews are Google's own words and makes it liable for false answers Beijing's $295 billion AI buildout would require 80 percent domestic chips, locking out US suppliers Apple Intelligence gets a second shot with help from Google and Nvidia OpenAI now says "entirely automating everything is not the future we want" OpenAI says going public is "a complicated set of tradeoffs" and is unsure about the timing Microsoft Research's Lens proves detailed captions matter more than raw scale for training efficient image generators Intel gets a second life as Google and Nvidia explore it as a TSMC backup for AI chips Most companies are flying blind on AI spending Frontier Radar #3: How agentic AI is turning tokens into a business metric Instagram AI chatbot breach may have affected over to 20,000 accounts, Meta discloses Microsoft tightens rules for conflict zones after investigation into Israel's military use of Azure Moonshot AI targets a $30 billion valuation, more than six times its late-2025 worth Deepseek topped Ramp's trending software vendors in June 2026 as US companies chase cheaper AI
AI won't become a real coworker until it stops answering ...
Jonathan Kemper · 2026-06-28 · via The Decoder

The central question is no longer how a model produces a better answer, but how it reliably turns intent into finished work, the researchers say. The goal shifts from reactive Q&A to delegated task execution.

Illustrated mountain path showing five stages of AI system evolution, from chatbot through thinking LLM, agent, and OpenClaw to the summit labeled Next Paradigm for human-AI partnership.
The paper traces the evolution of large language models through five stages, from basic chatbot to autonomous digital colleague. | Image: Tencent Youtu Lab

From fast answers to slow thinking

In the chatbot era, models mostly generated text fast. They stored language patterns and facts in their parameters, then wrote answers in one pass, token by token, following the most likely continuation without checking intermediate steps or searching for solutions.

Diagram of the thinking LLM era showing input, a reasoning core with branching thought tree, error detection, and backtracking, plus a structured chain-of-thought output.
Thinking LLMs invest extra compute at inference time, exploring solution paths, verifying intermediate steps, and correcting errors before the final answer. | Image: Tencent Youtu Lab

The thinking-LLM era, initiated by OpenAI's o1 and Deepseek-R1, pours more compute into the moment of answering. These models produce long chains of thought, check intermediate steps, and learn through reinforcement learning to search and self-correct. Only verifiably correct solutions get rewarded. The researchers frame this as a shift from fast, intuitive "System 1" thinking to slow, deliberate "System 2" reasoning, borrowing psychologist Daniel Kahneman's framework.

From tool calls to work environments

First-generation agents could call APIs, write code, and browse the web, but they remained fragile. The researchers identify four structural bottlenecks: agents perceived their environment only in fragments, tool calls left no lasting state, unexpected behavior broke them, and they rarely finished tasks.

Diagram of the OpenClaw era showing a project brief as input, a persistent workspace with editor, terminal, skill library, governance, and activity log, plus a verified end state as task closure.
In the OpenClaw era, the model operates in a persistent, secure workspace with files, terminals, reusable skills, and verification loops until verifiable completion. | Image: Tencent Youtu Lab

The OpenClaw era is where the environment itself becomes persistent. Files, sessions, logs, browsers, permissions, and skills all survive across the entire workflow. The paper cites OpenHands and SWE-agent, both of which embed agents in controlled development environments.

Workspace plus skill as the missing link

The paper's core argument is that combining workspace and skill is what enables the real performance leap. A workspace provides state, storage, and consequences, while a skill packages operational knowledge into reusable bundles. Anthropic's Agent Skills already formalize this pattern as folders containing a SKILL.md file with instructions, scripts, and resources.

Three-stage graphic from chaotic ad-hoc prompting to packaging workflows into a SKILL.md file with scripts, dependencies, and safety checks, to a composable digital worker.
The workspace-plus-skill approach bundles recurring workflows into versioned skill packages instead of reinventing every task through one-off prompts. | Image: Tencent Youtu Lab

According to the researchers, skills aren't prompts, and they aren't traditional tools either. They sit between the model's reasoning and workspace execution, letting organizations capture know-how in modular, testable, portable form. But the authors also warn that reusable procedures can go stale, overfit to specific workflows, or become attack vectors.

Why training and evaluation need to change

The shift also transforms how these systems are trained and evaluated. Chatbots learned from instruction-response pairs and were graded on answer accuracy. Workspace-based systems learn from state-action-observation trajectories instead. Success is no longer about plausible responses, the researchers argue, but about task closure: whether the system brings the target environment to a verifiable end state.

Diagram of the evaluation shift in three stages, from grading final answers to verifying the reasoning process to task-closure assessment in a diagnostic sandbox.
Evaluation is shifting from grading final answers to verifying the entire process and confirmed task completion. | Image: Tencent Youtu Lab

Benchmarks like SWE-bench, OSWorld, and WebArena demand reproducible starting states, executable tools, trajectory logs, and end-state checks. GPT-4 initially completed just 14 percent of WebArena tasks, showing how far realistic web environments are from static Q&A scenarios.

Security becomes an operational problem

Persistent workspaces also expand the attack surface. Agents hold credentials, local files, identity tokens, and communication channels. Projects like OpenClaw PRISM and ClawGuard are trying to establish permissions, provenance tracking, and audit logs as runtime safeguards. Data sovereignty matters just as much, the authors argue, since workspace agents observe sensitive repos, internal documents, and intermediate results that could later become memories, skills, or training data.

Three-part diagram of open challenges for reliable AI autonomy covering long-horizon tasks and rollback, safety and governance, and persistent memory.
As autonomy grows, mistakes become longer-lived and harder to undo. Open problems include rollback, governance, and persistent memory. | Image: Tencent Youtu Lab

The authors acknowledge the workspace-plus-skill combination isn't a complete solution. Skills can overfit, and workspaces fill up with stale files and broken artifacts. Reliable deployment, the researchers argue, requires skill lifecycle management, workspace hygiene, permission controls, sandboxing, rollback, and trajectory-based evaluation. Reuse without governance just creates new failure modes, they warn.

Diagram of future self-evolving AI ecosystems in three stages, from capturing execution traces to beyond-gradient synthesis to collaboration as digital colleagues.
The paper sketches future systems that learn from their own execution traces and gradually improve as digital colleagues. | Image: Tencent Youtu Lab

A recent survey by Meta, Stanford, and the University of Illinois Urbana-Champaign made a related argument from a different angle: autonomous system performance depends less on the base model than on the software layer around it. This "harness" bundles tools, sandboxed execution environments, and verification mechanisms.

The "skill" half of this argument gets complicated in practice, according to a recent Vercel evaluation. It found that coding agents didn't even call a provided skill system 56 percent of the time, while a compressed documentation index embedded in an AGENTS.md file hit 100 percent success. The skill system topped out at 79 percent. Passive, always-present context beat active skill retrieval, tilting the balance toward the workspace.