Generate Videos in Codex + Claude Code with This...

TL;DR
Qwen's Terminal-Universe paper argues that terminal-agent trajectories are more useful when you reconstruct the workspace behind them, then generate new verifiable tasks from that environment.
| Research notes | |
|---|---|
| Primary paper | arXiv:2609.04148 |
| Hugging Face signal | HF Papers: Terminal-Universe, #1 paper of the day on September 4, 2026 |
| Discovery surfaces | Hugging Face daily and July monthly pages, HN Algolia exact-title checks, local duplicate screen, Google Trends attempt |
| Google Trends check | Attempted September 4, 2026 for terminal agent, coding agents, AI coding agents, Terminal-Bench, and Qwen agent. Pytrends returned HTTP 429 TooManyRequestsError, so no numerical Trends demand claim is used. |
Last updated: September 4, 2026
The best coding-agent training data is not the transcript. It is the environment the transcript came from.
That is the useful idea in Terminal-Universe, a new Qwen paper that hit Hugging Face Papers today as the #1 paper of the day. The paper starts from a practical bottleneck: terminal-agent trajectories are piling up, but reusable executable environments are still scarce. A trajectory is one frozen demonstration. An environment can be queried again, tested again, extended into new tasks, and used to train agents on feedback rather than imitation alone.
This sits directly beside the shift we covered in Terminal-Bench and StateM: agent quality is becoming a harness-and-environment problem, not only a model problem. It also extends the lesson from DataFlow-Harness, where the artifact that matters is not a plausible generated script but a persistent, platform-native system with checks around it.
Terminal-Universe gives that idea a data pipeline.
The paper describes a framework for turning terminal-agent trajectories into reusable terminal environments. Instead of treating a run as a one-time example of "what the agent did," it tries to reconstruct the workspace state in which the run happened.
The basic loop is:
| Step | What it produces |
|---|---|
| Replay file operations | A partial workspace before the agent changed it |
| Fill missing files and dependencies | A task-sufficient executable environment |
| Reconstruct the original intent | A query matching the original trajectory |
| Synthesize new tasks | More prompts grounded in the same workspace |
| Extend sessions | Multi-round interactions with iterative feedback |
| Train on the resulting corpus | Better terminal-agent behavior on benchmark tasks |
The reported scale is 37.3k task-sufficient environments. The paper says supervised fine-tuning Qwen3.5-27B on the derived corpus improves single-round performance on Terminal-Bench 2.1 by 11.9 points and multi-round performance on EvoCode-Bench v2 MT@4 by 13.8 points.
Those are paper claims, not independent benchmark confirmations. But the direction is important even before the exact numbers are reproduced: the training unit moves from "copy this past run" to "recover this workspace, ask new questions of it, and check what happens."
Raw trajectories are tempting because they are already there. Every coding agent run leaves commands, file reads, edits, test output, retries, and final messages. It feels like free data.
The problem is that a trajectory is entangled with one path through one task. It does not tell you what else was possible in the workspace. It does not expose alternate requirements. It does not necessarily preserve the pre-change state cleanly. And if you train too directly on it, you risk teaching the model to imitate surface behavior instead of learning how to operate inside a real project.
That is why the environment reconstruction step matters. A recovered workspace can be re-queried. It can support variants. It can expose dependency relationships across files and repositories. It can be validated through execution.
This is also why the paper pairs naturally with Harness Handbook. Harness Handbook maps behavior to source locations so an agent can plan edits inside a changing harness. Terminal-Universe uses old terminal behavior to rebuild places where future agents can practice. Both are really about the same constraint: agents need navigable workspaces, not just more context.
From the archive
Sep 1, 2026 • 7 min read
Aug 31, 2026 • 7 min read
Aug 31, 2026 • 10 min read
Aug 31, 2026 • 8 min read
If you build coding-agent infrastructure, the immediate takeaway is not "fine-tune Qwen3.5-27B." It is to stop throwing away the useful parts of agent runs.
Most teams keep logs for debugging and maybe observability. Terminal-Universe suggests a higher bar:
| Artifact | Keep it because |
|---|---|
| Pre-edit file state | You need the environment before the agent acted |
| Tool-execution history | It reveals dependency paths and task structure |
| Test commands and outputs | They become executable feedback, not prose labels |
| User follow-up turns | They create multi-round task variants |
| Final patch and side effects | They define what changed and what must be checked |
| Failure traces | They identify missing setup, brittle assumptions, and repair targets |
That does not require a research lab. It requires treating agent traces as structured product data. If your agent platform already records tool calls, file diffs, command output, and final state, you are close to having a training and evaluation corpus. If it records only chat messages, you are not.
The same point shows up in agent memory context ledgers: memory without provenance is not enough. For coding agents, provenance means knowing which workspace, which file state, which command result, and which follow-up instruction produced a reusable lesson.
The risky version of this idea is obvious: train agents on their own messy traces and call the result self-improvement.
Terminal-Universe tries to avoid that by reconstructing executable environments and generating verifiable tasks, but the caveats are still real:
| Risk | Why it matters |
|---|---|
| Incomplete reconstruction | Missing files or dependencies can turn a valid task into a broken one |
| Hidden leakage | A synthesized task may accidentally encode the answer path |
| Overfitting to terminal benchmarks | Better Terminal-Bench numbers may not transfer to product repos |
| Bad trajectory inheritance | Past agent shortcuts can become training habits |
| Synthetic user drift | Multi-round user-agent feedback may not match real developer feedback |
That is the healthy opposing read. This is not proof that all trajectory-derived data is good. It is a recipe for making some of it checkable.
The strongest version of the idea keeps deterministic verification under the generated tasks. The agent can propose, reconstruct, and extend. The environment and tests still decide whether the task is real.
The July Hugging Face monthly paper page was already pointing this way. Qwen-UI-Agent pushed GUI agents toward real-world operating surfaces. Harness Handbook made agent harnesses readable and editable by behavior. Several July agent papers focused on verifiers, task synthesis, memory, and long-horizon control loops rather than one-off chat performance.
Terminal-Universe is the September continuation: once agents are doing real terminal work, the run history itself becomes raw material for the next training loop.
That is a meaningful change in how teams should think about coding-agent data. The valuable asset is not a folder of transcripts. It is a library of reconstructed, executable situations: repo states, tasks, tests, dependencies, failures, repairs, and follow-up turns.
In other words, the future training corpus for coding agents may look less like Stack Overflow and more like a cleaned CI farm full of replayable workspaces.
Terminal-Universe is a Qwen research framework that reconstructs executable terminal workspaces from agent trajectories, then uses those environments to synthesize new verifiable tasks and multi-round interactions for coding-agent training.
It treats the workspace as the reusable training asset. A terminal transcript only shows one path through one task, while an executable environment can be queried, tested, modified, and extended.
No. The paper reports improvements from supervised fine-tuning Qwen3.5-27B on its generated corpus, but those are paper claims. The broader developer lesson is about environment-grounded data generation, not a final model ranking.
Ordinary memory often stores summaries or retrieved snippets. Terminal-Universe focuses on reconstructing task-sufficient executable environments from previous runs, so future tasks can be checked by code and tests instead of memory recall alone.
Store enough structure to make future verification possible: pre-edit state, diffs, tool calls, command output, test results, and user follow-up. Raw chat transcripts alone are weak data.
Terminal-Universe and terminal agent trajectories, fetched September 4, 2026.Read next
StateM pushes Terminal-Bench 2.1 to 95.3% raw accuracy by scaling the harness around the model. The lesson for coding-agent teams is that runbooks, state, and recovery loops now matter as much as model choice.
11 min readThe DataFlow-Harness paper is a useful reminder that coding agents should not just emit scripts. For data work, the durable artifact is an editable, validated pipeline.
8 min readAlibaba's Qwen-UI-Agent report is less interesting as a leaderboard and more interesting as a product spec: mobile, desktop, browser, CLI, and DeepSearch in one stateful agent runtime.
8 min readTechnical content at the intersection of AI and development. Building with AI agents, Claude Code, and modern dev tools - then showing you exactly how it works.
Open-source cloud sandboxes for AI agents. Isolated environments that start in under 200ms, run code in Python, JavaScri...
View ToolOpenAI's coding agent for terminal, cloud, IDE, GitHub, Slack, and Linear workflows. Reads repos, edits files, runs comm...
View ToolGives AI agents access to 250+ external tools (GitHub, Slack, Gmail, databases) with managed OAuth. Handles the auth and...
View ToolLightweight Python framework for multi-agent systems. Agent handoffs, tool use, guardrails, tracing. Successor to the ex...
View ToolSee exactly what your agent did, locally. No cloud, no signup.
View AppTurn a one-liner into a working Claude Code skill. From idea to installed in a minute.
View AppShare agent traces with a link. Keep history long enough to find the bug.
View AppConfigure Claude Code for maximum productivity -- CLAUDE.md, sub-agents, MCP servers, and autonomous workflows.
AI AgentsWhat MCP servers are, how they work, and how to build your own in 5 minutes.
AI AgentsStep-by-step guide to building an MCP server in TypeScript - from project setup to tool definitions, resource handling, testing, and deployment.
AI Agents
Buzz by Block: Open-Source Slack-Style Collaboration for Humans + AI Agents (Demo & Setup) Check out Arcade: https://arcade.dev.plug.dev/xiDRwlA Repo: https://github.com/block/buzz The video introd...

Build Anything with Vercel, the Agentic Infrastructure Stack Check out Vercel: https://vercel.plug.dev/cwBLgfW The video shows a behind-the-scenes walkthrough of how the creator rapidly builds and d...

Check out Trae here! https://tinyurl.com/2f8rw4vm In this video, we dive into @Trae_ai a newly launched AI IDE packed with innovative features. I provide a comprehensive demonstration...

StateM pushes Terminal-Bench 2.1 to 95.3% raw accuracy by scaling the harness around the model. The lesson for coding-ag...

The DataFlow-Harness paper is a useful reminder that coding agents should not just emit scripts. For data work, the dura...

Alibaba's Qwen-UI-Agent report is less interesting as a leaderboard and more interesting as a product spec: mobile, desk...

A July 2026 paper from Tencent Hunyuan turns agent harnesses into behavior-level maps. The useful lesson for builders is...

GitHub Trending is full of agent memory and context tools. The useful version is not magic recall. It is a context ledge...

The Rime CLI streams natural-sounding text-to-speech straight from your terminal, so Claude Code, Codex, Devin, and Open...

New tutorials, open-source projects, and deep dives on coding agents - delivered weekly.