📌 项目地址:code-yeongyu/oh-my-openagent | ⭐ 60,077 颗星 | 🔧 TypeScript | 📜 NOASSERTION
首先,这个项目叫 oh-my-opencode,不是 openagent
你拿到的链接是 code-yeongyu/oh-my-openagent,但仓库里所有内容都指向 oh-my-opencode。Star 数 60077 是事实,但 README 开头第一句是安全警告,不是功能介绍。
安全警告:ohmyopencode.com 是冒牌网站
官网是 GitHub Releases,不是那个带支付墙的站点:
Security warning: impersonation site
ohmyopencode.com is NOT affiliated with this project. We do not operate or endorse that site.
Because the impersonation site is behind a paywall, we cannot verify what it distributes. Treat any downloads from it as potentially unsafe.
安装命令只有一条:
npm install -g oh-my-opencode@latest
如果你搜到 ohmyopencode.com,直接关掉,别填任何信息。项目维护者明确说下载可能不安全。
Anthropic 在 2026 年 1 月封了它
这是项目的核心新闻点。Anthropic 限制第三方 OAuth 访问,并直接引用 oh-my-opencode 作为封堵理由(来源:@thdxr 的推文)。项目维护者承认:
As of January 2026, Anthropic has restricted third-party OAuth access citing ToS violations.
Indeed, some plugins that spoof Claude Code’s oauth request signatures exist in the community.
I personally cannot recommend to use those.
他明确说“技术上可以用,但我不能推荐使用”。而且特意强调:
This project is not responsible for any issues arising from the use of unofficial tools, and we do not have any custom implementations of those oauth systems.
项目技术架构:后台 Agent + LSP/AST + MCP + 兼容层
尽管有封堵,项目的技术设计仍有参考价值。README 对自己的描述:
This is coding on steroids—
oh-my-opencodein action. Run background agents, call specialized agents like oracle, librarian, and frontend engineer. Use crafted LSP/AST tools, curated MCPs, and a full Claude Code compatibility layer.
拆开看:
- 后台 Agent 调度:可以跑多个后台 agent,不阻塞当前编辑。具体怎么调度?README 没细说,但概念明确。
- 专用 Agent:按角色分。oracle 处理需要大量推理的查询,librarian 管理代码库索引,frontend engineer 专门改前端代码。
- LSP/AST 工具:利用语言服务器协议和抽象语法树做精确操作,重构、重命名、批量替换时能理解代码结构,不是字符串替换。
- MCP 集成:模型上下文协议(Model Context Protocol),让 Agent 调用外部资源(文件系统、数据库、Web API)。项目带了一批精选 MCP 工具,开箱可用。
- Claude Code 兼容层:允许用类似 Claude Code CLI 的方式发指令,后端走本地 Agent 系统。这个兼容层正是引起 Anthropic 封堵的点。
商业化:Sisyphus Labs
项目维护者在做一个产品化版本:
We’re building a fully productized version of Sisyphus to define the future of frontier agents. Join the waitlist here.
这符合“开源项目验证技术,再推商业产品”的常见路线。团队用代码质量和社区信任吸引早期用户。
我的看法
| 你的目的 | 建议 |
|---|---|
| 学习 Agent 调度、LSP/AST 工具设计、MCP 集成 | 值得读源码。后台 Agent 调度和代码分析工具的实现有参考价值。但跑起来注意:别连 Claude 账号。 |
| 想绕过 Claude Code 付费限制 | 别干。账号可能被封。Anthropic 已经盯着了。 |
| 需要一个好用的 AI 编程辅助工具 | 用官方 Claude Code、Cursor、GitHub Copilot 更省心。几块钱的事不值得冒风险。 |
这个项目最大的价值不是 OAuth 兼容层,而是 Agent 调度和 LSP/AST 工具的实现。如果你在研究 Agent 架构,代码值得看。但运行它时,不要碰任何与 Claude 账号相关的功能。
社区在 Discord(https://discord.gg/PUwSMR9XNk),更新动态由 @justsisyphus 发布(原项目 X 账号被误封)。项目维护者 GitHub:@code-yeongyu。
最后,记住项目 README 的最后一句话:“I cannot recommend using it。” 当一个开源项目的维护者自己都这么说,你应该认真掂量。