精选理由
Simon 用他的 LLM 库搞了个编码代理,能读写文件、跑命令,还支持 TDD 开发流程,很实用。
Simon Willison 发布了 llm-coding-agent 0.1a0,一个基于其 LLM 库演化的代理框架的编码代理工具。它实现了类似 Claude Code 的代理功能,包含编辑文件、执行命令、搜索文件等 5 种工具。可通过 uvx --prerelease=allow --with llm-coding-agent llm code 命令运行,也提供了 Python API,如 CodingAgent(model="gpt-5.5", root="/path").run()。该工具由 Fable 5 实验驱动,README 列出了 llm code --yolo 等使用模式。
AI 翻译 · 中文
Simon Willison 发布了 llm-coding-agent 0.1a0,一个基于其 LLM 库演化的代理框架的编码代理工具。它实现了类似 Claude Code 的代理功能,包含编辑文件、执行命令、搜索文件等 5 种工具。可通过 uvx --prerelease=allow --with llm-coding-agent llm code 命令运行,也提供了 Python API,如 CodingAgent(model="gpt-5.5", root="/path").run()。该工具由 Fable 5 实验驱动,README 列出了 llm code --yolo 等使用模式。
Release: llm-coding-agent 0.1a0 Another Fable 5 experiment. Now that my LLM library has evolved into more of an agent framework it's time to see what a simple coding agent would look like built on it. I started a new Pyt…