# MIT CSAIL 提出极简智能体框架 JAZ

- 来源：elvis (@omarsar0)
- 发布时间：2026-09-26 20:40
- AIHOT 分数：47
- AIHOT 链接：https://aihot.news/items/cmuido5h90ibbrov0n7zpqwp3
- 原文链接：https://x.com/omarsar0/status/2103826930181308720

## AI 摘要

MIT CSAIL 提出极简智能体框架 JAZ，仅有一个原语 invoke：LLM 编写代码、可递归调用 invoke，并将全部输入与历史视为代码环境中的变量。

## 正文

Keep your agent harness minimal, folks.

This paper from MIT CSAIL shows why.

(bookmark it)

While being very minimal it looks effective and promising for building self-improving agents.

They present JAZ, an agent framework with one primitive, invoke. The LLM writes code, can call invoke recursively, and sees all of its inputs and history as variables in the code environment.

With prompting only and no memory system, it beats Letta (MemGPT) by 8% at half the cost on the recall-heavy part of StuLife.

On AppWorld it beats ACE, a self-improvement method, by 4% at lower cost.

Memory and self-improvement are usually built as separate subsystems. Here both are code the agent writes inside the loop, and hooks handle the constraints and monitoring you want to enforce.

Paper: https://arxiv.org/abs/2609.26891

Explore Paper: https://academy.dair.ai/papers/harness-as-a-language-a-minimalist-agent-framework-with-maximal-expressivity-2609.26891
