diff --git a/README.en.md b/README.en.md index 4cc803d..1fbf97d 100644 --- a/README.en.md +++ b/README.en.md @@ -1,249 +1,611 @@ -# code-terminator +
+ 简体中文 + · + English + · + API Docs + · + Contributing +
-- `leader` main orchestrator -- concurrent `worker` sub-agents -- concurrent `reviewer` sub-agents -- role-scoped `tools` and `skills` extension interfaces -- role prompt template loader +
+
+
+
+
+
+
+
+ 🧠 Agentic Runtime+The Leader interprets goals, decomposes tasks, maintains plan items, invokes tools, and consumes runtime events. Worker and Reviewer agents complete the execution loop. + |
+
+ 🌊 Observable Workflow+FastAPI + SSE streams conversations, plans, activity logs, and results into the React console. The runtime is designed to be watched while it works. + |
+
+ 🐳 Isolated Code Worker+Worker tasks are packaged into job bundles and can run inside Docker. Inputs, outputs, stdout, stderr, and structured results are persisted for replay and debugging. + |
+
+ 🔥 Incident-Driven Repair+The system accepts incident_new and incident_regressed events. An incident can wake the Leader, create a repair plan, and dispatch a Worker. + |
+
+ 🧬 Memory & Resume+SQLite checkpoints preserve runtime state, Chroma stores long-term memory, and runtime-state keeps conversations, plans, and settings. + |
+
+ 🔀 GitHub-Native Automation+Runtime settings can persist a GitHub token and inject it into Worker jobs as GITHUB_TOKEN / GH_TOKEN for branch, commit, and PR workflows. + |
+
+ English + · + 简体中文 + · + API Docs + · + Contributing +
-## Overview +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 🧠 Agentic Runtime+Leader 负责理解目标、拆解任务、维护计划、调用工具和吸收事件;Worker 负责执行任务;Reviewer 负责审查输出。整个运行时不是简单 prompt chaining,而是一个可恢复的图式状态系统。 + |
+
+ 🌊 Observable Workflow+FastAPI + SSE 将对话、计划、事件、日志和结果流式推到 Web 控制台。每次任务推进都有状态可见,适合接入研发控制台、任务看板或自动化平台。 + |
+
+ 🐳 Isolated Code Worker+Worker 任务会被打包成 job bundle,并可在 Docker 中执行。输入、输出、stdout、stderr、结构化结果都会落盘,方便审计、复现和问题定位。 + |
+
+ 🔥 Incident-Driven Repair+系统支持 incident_new / incident_regressed 事件。异常进入 hook bus 后,Leader 可以生成修复计划并派发 Worker,让系统具备事件驱动的自动修复雏形。 + |
+
+ 🧬 Memory & Resume+SQLite checkpoint 保存运行状态,Chroma 承载长期记忆,runtime-state 保存会话、计划和设置。长任务可以中断后恢复,不必从零开始。 + |
+
+ 🔀 GitHub-Native Automation+运行时可保存 GitHub Token,并注入到 Worker 的 GITHUB_TOKEN / GH_TOKEN。后续可以连接分支、提交、PR、审查和自动合并等真实协作链路。 + |
+
+ 完整中文主页 + · + English + · + API Docs + · + Contributing +
-> 一个不只会聊天的多智能体运行时骨架。 -> 现在它已经具备了 CLI、FastAPI、SSE 流式前端、可恢复计划状态、Docker 中的真实 Codex Worker、以及本地持久化运行时设置。 +