From 017e0f42f696b15d56cb1b77ba3607936739a5ce Mon Sep 17 00:00:00 2001 From: JackChen Date: Tue, 14 Apr 2026 21:30:30 +0800 Subject: [PATCH] docs: update README to reflect recent changes (glob tool, MCP shipped, source file count) --- README.md | 8 ++++---- README_zh.md | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index e9aed5e..8497c15 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ The lightweight multi-agent orchestration engine for TypeScript. Three runtime d CrewAI is Python. LangGraph makes you draw the graph by hand. `open-multi-agent` is the `npm install` you drop into an existing Node.js backend when you need a team of agents to work on a goal together. Nothing more, nothing less. -3 runtime dependencies · 35 source files · Deploys anywhere Node.js runs · Mentioned in [Latent Space](https://www.latent.space/p/ainews-a-quiet-april-fools) AI News (top AI engineering newsletter, 170k+ subscribers) +3 runtime dependencies · 41 source files · Deploys anywhere Node.js runs [![GitHub stars](https://img.shields.io/github/stars/JackChen-me/open-multi-agent)](https://github.com/JackChen-me/open-multi-agent/stargazers) [![license](https://img.shields.io/github/license/JackChen-me/open-multi-agent)](./LICENSE) @@ -19,7 +19,7 @@ CrewAI is Python. LangGraph makes you draw the graph by hand. `open-multi-agent` - **TypeScript-native, three runtime dependencies.** `@anthropic-ai/sdk`, `openai`, `zod`. That is the whole runtime. Embed in Express, Next.js, serverless functions, or CI/CD pipelines. No Python runtime, no subprocess bridge, no cloud sidecar. - **Multi-model teams.** Claude, GPT, Gemini, Grok, Copilot, or any OpenAI-compatible local model (Ollama, vLLM, LM Studio, llama.cpp) in the same team. Run the architect on Opus 4.6, the developer on GPT-5.4, the reviewer on local Gemma 4, all in one `runTeam()` call. Gemini ships as an optional peer dependency: `npm install @google/genai` to enable. -Other features (structured output, task retry, human-in-the-loop, lifecycle hooks, loop detection, observability) live below the fold and in [`examples/`](./examples/). +Other features (MCP integration, context strategies, structured output, task retry, human-in-the-loop, lifecycle hooks, loop detection, observability) live below the fold and in [`examples/`](./examples/). ## Philosophy: what we build, what we don't @@ -36,7 +36,6 @@ Our goal is to be the simplest multi-agent framework for TypeScript. Simplicity - **State persistence / checkpointing.** Not planned for now. Adding a storage backend would break the three-dependency promise, and our workflows run in seconds to minutes, not hours. If real usage shifts toward long-running workflows, we will revisit. **Tracking:** -- **MCP support.** Next up, see [#86](https://github.com/JackChen-me/open-multi-agent/issues/86). - **A2A protocol.** Watching, will move when production adoption is real. See [`DECISIONS.md`](./DECISIONS.md) for the full rationale. @@ -188,7 +187,7 @@ Run any with `npx tsx examples/02-team-collaboration.ts`. │ AgentRunner │ ┌──────────────────────┐ │ - conversation │───►│ ToolRegistry │ │ loop │ │ - defineTool() │ -│ - tool dispatch │ │ - 5 built-in tools │ +│ - tool dispatch │ │ - 6 built-in tools │ └───────────────────┘ └──────────────────────┘ ``` @@ -201,6 +200,7 @@ Run any with `npx tsx examples/02-team-collaboration.ts`. | `file_write` | Write or create a file. Auto-creates parent directories. | | `file_edit` | Edit a file by replacing an exact string match. | | `grep` | Search file contents with regex. Uses ripgrep when available, falls back to Node.js. | +| `glob` | Find files by glob pattern. Returns matching paths sorted by modification time. | ## Tool Configuration diff --git a/README_zh.md b/README_zh.md index 61fc156..bb49589 100644 --- a/README_zh.md +++ b/README_zh.md @@ -4,7 +4,7 @@ CrewAI 是 Python。LangGraph 需要你自己画图。`open-multi-agent` 是你现有 Node.js 后端里 `npm install` 一下就能用的那一层。当你需要让一支 agent 团队围绕一个目标协作时,只提供这个,不多不少。 -3 个运行时依赖 · 35 个源文件 · Node.js 能跑的地方都能部署 · 被 [Latent Space](https://www.latent.space/p/ainews-a-quiet-april-fools) AI News 提及(AI 工程领域头部 Newsletter,17 万+订阅者) +3 个运行时依赖 · 41 个源文件 · Node.js 能跑的地方都能部署 [![GitHub stars](https://img.shields.io/github/stars/JackChen-me/open-multi-agent)](https://github.com/JackChen-me/open-multi-agent/stargazers) [![license](https://img.shields.io/github/license/JackChen-me/open-multi-agent)](./LICENSE) @@ -19,7 +19,7 @@ CrewAI 是 Python。LangGraph 需要你自己画图。`open-multi-agent` 是你 - **TypeScript 原生,3 个运行时依赖。** `@anthropic-ai/sdk`、`openai`、`zod`。这就是全部运行时。可嵌入 Express、Next.js、Serverless 函数或 CI/CD 流水线。没有 Python 运行时,没有子进程桥接,没有云端 sidecar。 - **多模型团队。** Claude、GPT、Gemini、Grok、Copilot,或任何 OpenAI 兼容的本地模型(Ollama、vLLM、LM Studio、llama.cpp)可以在同一个团队中使用。让架构师用 Opus 4.6,开发者用 GPT-5.4,评审用本地的 Gemma 4,一次 `runTeam()` 调用全部搞定。Gemini 作为 optional peer dependency 提供:使用前需 `npm install @google/genai`。 -其他能力(结构化输出、任务重试、人机协同、生命周期钩子、循环检测、可观测性)在下方章节和 [`examples/`](./examples/) 里。 +其他能力(MCP 集成、上下文策略、结构化输出、任务重试、人机协同、生命周期钩子、循环检测、可观测性)在下方章节和 [`examples/`](./examples/) 里。 ## 哲学:我们做什么,不做什么 @@ -36,7 +36,6 @@ CrewAI 是 Python。LangGraph 需要你自己画图。`open-multi-agent` 是你 - **状态持久化 / 检查点。** 短期内不做。加存储后端会打破 3 个依赖的承诺,而且我们的工作流执行时间是秒到分钟级,不是小时级。如果真实使用场景转向长时间工作流,我们会重新评估。 **正在跟踪:** -- **MCP 支持。** 下一个要做的,见 [#86](https://github.com/JackChen-me/open-multi-agent/issues/86)。 - **A2A 协议。** 观望中,等生产级采纳到位再行动。 完整理由见 [`DECISIONS.md`](./DECISIONS.md)。 @@ -186,7 +185,7 @@ Tokens: 12847 output tokens │ AgentRunner │ ┌──────────────────────┐ │ - conversation │───►│ ToolRegistry │ │ loop │ │ - defineTool() │ -│ - tool dispatch │ │ - 5 built-in tools │ +│ - tool dispatch │ │ - 6 built-in tools │ └───────────────────┘ └──────────────────────┘ ``` @@ -199,6 +198,7 @@ Tokens: 12847 output tokens | `file_write` | 写入或创建文件。自动创建父目录。 | | `file_edit` | 通过精确字符串匹配编辑文件。 | | `grep` | 使用正则表达式搜索文件内容。优先使用 ripgrep,回退到 Node.js 实现。 | +| `glob` | 按 glob 模式查找文件。返回按修改时间排序的匹配路径。 | ## 工具配置