PrimeAgent-Self-Improving-RLM-Agent
Prime Agent:Self-Improving RLM Agent(Prime Intellect 開源專案)
> 來源:https://github.com/PrimeIntellect-ai/prime-agent > 存入:2026-08-09|分類:技術深讀 / AI Agent 架構 > 狀態:10k stars、988 forks、MIT License、v0.7.1(2026-08-07)、4,480 commits
一句話
開源的 coding/research agent,以「遞迴語言模型(RLM)+ 持續強化架構(Continual Harness)」為核心,讓 agent 的工作脈絡與可重用模式能跨對話存活、並透過小步證據更新自我改進。
核心架構(兩個抽象)
1. Recursive Language Model(RLM)
2. Continual Harness(arXiv:2605.09998)
關鍵特性
rlm(...) 產生真實子代理做平行/背景工作,程式化取回結果/refine 檢視軌跡,對 harness 狀態做小步更新;不重寫不可變的 base system prompt與 Hermes Agent 的對照(有意思的部分)
| 概念 | Prime Agent | Hermes(我們) | |------|------------|---------------| | 持久控制環境 | 持久 IPython | terminal session + tools | | Skills | importable Python packages | SKILL.md + references/scripts | | 子代理 | rlm() 內建 | delegate_task | | Harness 自我改進 | /refine(小步證據更新) | skill_manage patch | | 背景長任務 | daemon + reattach | cron jobs + background terminal | | 自主模式 | /autonomous(turn/token/time 預算) | cron 全自動執行 |
→ 兩者設計哲學高度相似:持久狀態 + 可執行 skill + 子代理 + 自我改進。值得持續追蹤其架構演進。
其他
pi(earendil-works/pi)建構