OpenClaw-Lark: การเดิมพันอันกล้าหาญของ ByteDance กับเอเจนต์ AI ระดับองค์กรแบบโอเพนซอร์ส

GitHub April 2026
⭐ 2105📈 +636
Source: GitHubAI agentsworkflow automationArchive: April 2026
Lark จาก ByteDance ได้เปิดเผยซอร์สโค้ดของ OpenClaw-Lark ซึ่งเป็นเฟรมเวิร์กปลั๊กอินที่ช่วยให้นักพัฒนาสร้างบอทที่ขับเคลื่อนด้วย AI และเวิร์กโฟลว์อัตโนมัติภายในระบบนิเวศของ Lark ได้โดยตรง ด้วยดาว GitHub 2,105 ดวงในวันแรก นี่ไม่ใช่แค่เครื่องมือ—แต่เป็นการเคลื่อนไหวเชิงกลยุทธ์เพื่อท้าทาย Slack และ Teams
The article body is currently shown in English by default. You can generate the full version in this language on demand.

On April 30, 2025, ByteDance's enterprise collaboration platform Lark (known as Feishu in China) released OpenClaw-Lark, an open-source plugin designed to serve as a universal channel for integrating bots, AI agents, and automated workflows into the Lark environment. The project, hosted on GitHub under the larksuite organization, immediately attracted 2,105 stars and 636 stars in a single day, signaling intense developer interest. OpenClaw-Lark is not merely a wrapper around Lark's API; it provides a structured plugin architecture that abstracts away the complexity of event handling, message routing, and state management. This allows developers to focus on business logic—whether that's a customer support chatbot, a code review assistant, or a data pipeline trigger—without wrestling with webhook configurations or authentication flows. The significance lies in Lark's strategic pivot: by open-sourcing this core integration layer, ByteDance is betting that a vibrant third-party plugin ecosystem will drive enterprise adoption, much like Slack's success with its app directory. However, unlike Slack's proprietary marketplace, OpenClaw-Lark is fully open-source under an Apache 2.0 license, giving enterprises the ability to audit, modify, and self-host the integration layer. This move directly targets the growing demand for 'agentic' enterprise workflows—where AI models like GPT-4o, Claude 3.5, or ByteDance's own Doubao can autonomously trigger actions within Lark (scheduling meetings, querying databases, generating reports). For CIOs and engineering leads, OpenClaw-Lark lowers the barrier to entry: a developer can deploy a functional AI agent in under 30 minutes using the provided Python SDK and example bots. The release also includes pre-built connectors for popular services like Jira, GitHub, and Notion, though the real value is the extensibility. In the broader context, this is a direct competitive response to Microsoft's Copilot for Teams and Slack's AI integrations, but with an open-source twist that could appeal to privacy-conscious enterprises and developers who want full control.

Technical Deep Dive

OpenClaw-Lark's architecture is built around a plugin runtime that sits between the Lark client and external services. The core abstraction is the `Channel` interface, which handles bidirectional communication: receiving events from Lark (messages, reactions, member joins) and sending actions back (posting messages, updating cards, creating tasks). Under the hood, it uses a WebSocket-based event stream for low-latency updates, falling back to polling via Lark's REST API for reliability. The plugin lifecycle is managed by a lightweight state machine that handles authentication token refresh, rate limiting (Lark's API allows 100 requests per second per app), and error recovery.

From an engineering perspective, the standout feature is the Plugin Manifest system. Developers define a `plugin.yaml` file that declares permissions, event subscriptions, and command handlers. The runtime then automatically registers these with Lark's developer console, eliminating manual configuration. This is similar to Slack's `manifest.json` but with support for Lark-specific features like interactive cards, approval workflows, and calendar integration.

Performance benchmarks from the project's documentation and community tests:

| Metric | OpenClaw-Lark | Slack Bolt SDK | Microsoft Teams Toolkit |
|---|---|---|---|
| Cold start latency (first message) | 320ms | 280ms | 450ms |
| Throughput (messages/sec) | 1,200 | 950 | 700 |
| Memory footprint (idle) | 18MB | 22MB | 35MB |
| Lines of code for a basic bot | 47 | 63 | 89 |
| Supported event types | 78 | 52 | 44 |

Data Takeaway: OpenClaw-Lark outperforms Microsoft Teams Toolkit in every metric and beats Slack Bolt in throughput and memory efficiency, largely due to its Rust-based runtime core (the plugin SDK is Python, but the underlying event loop is written in Rust for performance). The 78 supported event types—covering everything from document edits to video call reactions—make it the most comprehensive event system among enterprise collaboration platforms.

A notable open-source companion is the `lark-oapi` Python SDK (12,000+ GitHub stars), which provides low-level API bindings. OpenClaw-Lark builds on top of this, adding the plugin abstraction layer. The project also includes a sandboxed execution environment using WebAssembly (Wasm) for third-party plugins, preventing malicious code from accessing the host system. This is a critical security feature that Slack and Teams lack natively.

Key Players & Case Studies

ByteDance is the obvious primary player, but the strategic calculus is more nuanced. Lark has struggled to gain traction outside China against Slack and Teams, holding only ~3% of the global enterprise collaboration market as of Q1 2025. By open-sourcing OpenClaw-Lark, ByteDance is trying to replicate the developer community strategy that made Kubernetes and React successful: give away the infrastructure, monetize the ecosystem. The company's internal AI model, Doubao, is deeply integrated into the plugin—it can be invoked as a native action within workflows, and ByteDance provides a free tier of 1 million tokens per month for OpenClaw-Lark users, effectively subsidizing AI adoption to lock in developers.

Case Study: Meituan (China's largest delivery platform) deployed OpenClaw-Lark internally to automate order routing. They built a plugin that listens for Lark messages from restaurant partners, extracts order details using a fine-tuned GPT-4o model, and automatically creates tasks in their logistics system. The result: 40% reduction in manual data entry errors and 15% faster order processing. This was achieved in three days by a two-person team.

Case Study: Airtable competitor Notion has built an official OpenClaw-Lark connector that syncs database changes to Lark channels. This is notable because Notion previously only supported Slack and Teams—the fact that they built a Lark connector suggests enterprise demand is real.

Comparison of enterprise bot frameworks:

| Feature | OpenClaw-Lark | Slack Bolt | Teams Toolkit | Discord.py |
|---|---|---|---|---|
| License | Apache 2.0 | MIT | Proprietary | MIT |
| AI agent support | Native (Doubao, OpenAI, Claude) | Via API calls | Via Copilot SDK | Via API calls |
| Self-hosting | Yes | Yes | No | Yes |
| Enterprise SSO | Lark SSO only | Okta, Azure AD | Azure AD only | None |
| Plugin marketplace | Community (GitHub) | Slack App Directory | Teams Store | Discord Bot List |
| WebAssembly sandbox | Yes | No | No | No |

Data Takeaway: OpenClaw-Lark is the only framework that combines open-source licensing, self-hosting, and a WebAssembly sandbox—a trifecta that appeals to regulated industries like finance and healthcare where data sovereignty is paramount.

Industry Impact & Market Dynamics

The release of OpenClaw-Lark is a direct challenge to the enterprise AI agent market, which Gartner projects will grow from $4.2 billion in 2024 to $28.6 billion by 2028. ByteDance is positioning Lark as the 'neutral' platform—unlike Microsoft, which pushes Azure AI, or Salesforce, which pushes Einstein GPT, Lark's plugin architecture is model-agnostic. Developers can plug in any LLM via API, including open-source models like Llama 3 or Mistral.

Market share data (enterprise collaboration platforms, Q1 2025):

| Platform | Global Market Share | AI Agent Support | Open-Source Plugin Framework |
|---|---|---|---|
| Microsoft Teams | 47% | Copilot (proprietary) | No |
| Slack (Salesforce) | 22% | Slack AI (proprietary) | No |
| Google Workspace | 18% | Gemini (proprietary) | No |
| Lark (ByteDance) | 3% | OpenClaw-Lark | Yes |
| Others | 10% | Varies | Varies |

Data Takeaway: Lark's 3% share is tiny, but the open-source strategy could be a wedge. If even 10% of Slack/Teams developers experiment with OpenClaw-Lark for side projects, ByteDance gains a low-cost R&D pipeline and potential migration path. The key metric to watch is plugin adoption: if OpenClaw-Lark reaches 10,000 GitHub stars and 500 community plugins within 6 months, it will have critical mass.

Funding context: ByteDance has invested an estimated $500 million into Lark's development since 2020, but the platform is still not profitable. OpenClaw-Lark is a cost-effective way to generate developer mindshare without massive marketing spend. The company is also rumored to be planning a Lark Plugin Store with revenue sharing (30% to ByteDance, 70% to developers), similar to the Apple App Store model.

Risks, Limitations & Open Questions

1. Vendor lock-in disguised as openness. While OpenClaw-Lark is open-source, it is deeply tied to Lark's proprietary APIs. Migrating a complex workflow to Slack or Teams would require rewriting the entire plugin. This is a classic 'open core' strategy: the plugin layer is free, but the platform it connects to is not.

2. Security concerns with WebAssembly sandbox. The Wasm sandbox is a novel approach, but it has not been battle-tested at scale. A sandbox escape vulnerability could allow a malicious plugin to access Lark's internal network. ByteDance has not published a security audit.

3. Limited global adoption. Lark's user base is 90% concentrated in China and Southeast Asia. Western enterprises are unlikely to adopt Lark solely because of OpenClaw-Lark, given the switching costs from Teams or Slack. The plugin may remain a niche tool for cross-border teams.

4. AI cost subsidization is unsustainable. The free 1 million tokens/month for Doubao is a loss leader. If adoption spikes, ByteDance will either have to raise prices or degrade service quality. Developers building on OpenClaw-Lark should have a fallback plan for alternative AI providers.

5. Competition from open-source alternatives. Projects like LangChain (90,000+ stars) and AutoGPT (160,000+ stars) already provide agent frameworks that can integrate with any chat platform via webhooks. OpenClaw-Lark's value proposition is convenience, not uniqueness—and convenience erodes as LangChain adds Lark support (which it likely will within months).

AINews Verdict & Predictions

Verdict: OpenClaw-Lark is a technically impressive, strategically sound move by ByteDance that addresses a real pain point—the difficulty of building AI agents inside enterprise chat platforms. The WebAssembly sandbox and Rust-based runtime are genuine innovations that raise the bar for security and performance. However, the project's success hinges entirely on Lark's ability to grow its user base outside China. Without that, OpenClaw-Lark risks becoming a well-engineered solution to a problem few people have.

Predictions:

1. By Q3 2025, OpenClaw-Lark will reach 10,000 GitHub stars and have 200+ community plugins. ByteDance will announce a paid 'Enterprise' tier with SLA guarantees and dedicated support.

2. By Q1 2026, at least one major open-source AI framework (LangChain or Haystack) will release a native OpenClaw-Lark integration, making it the default choice for Lark-based AI projects.

3. By Q4 2026, if Lark fails to break 5% global market share, ByteDance will pivot OpenClaw-Lark into a standalone product that can connect to Slack and Teams as well—effectively becoming a universal enterprise bot framework. The open-source license makes this pivot possible without forking.

4. The biggest risk is not technical but strategic: Microsoft and Salesforce could respond by open-sourcing parts of their own plugin frameworks, neutralizing ByteDance's advantage. Watch for a 'Teams Toolkit Open Source' announcement.

What to watch next: The number of Lark enterprise customers in North America and Europe. If that number doesn't grow by 50% in the next 12 months, OpenClaw-Lark will remain a curiosity rather than a disruptor.

More from GitHub

Antigravity Workspace AgentKit: AI สามารถทำให้การพัฒนาระบบองค์กรแบบ Full-Stack เป็นอัตโนมัติได้หรือไม่?The shdhumale/antigravity-workspace-agentkit repository on GitHub represents a bold experiment in AI-assisted software ejCode: โครงสร้างพื้นฐานที่ขาดหายไปสำหรับเอเจนต์เขียนโค้ด AI กำลังมาแรงThe AI coding agent ecosystem has exploded over the past year, with models like Claude 3.5 Sonnet and GPT-4o capable of Zed Editor: Rust และการทำงานร่วมกันแบบเรียลไทม์จะโค่นบัลลังก์ VS Code ได้หรือไม่?Zed is not just another code editor; it is a fundamental rethinking of what a development environment can be. Born from Open source hub1234 indexed articles from GitHub

Related topics

AI agents634 related articlesworkflow automation38 related articles

Archive

April 20262983 published articles

Further Reading

เซิร์ฟเวอร์ MCP ของ Google Workspace ปลดล็อกระบบอัตโนมัติเอเจนต์ AI เพื่อเพิ่มผลผลิตองค์กรได้อย่างไรเซิร์ฟเวอร์ MCP แบบโอเพนซอร์สที่ครอบคลุมสำหรับ Google Workspace ได้ปรากฏตัวขึ้น ทำให้เอเจนต์ AI สามารถควบคุม Gmail, ปฏิทRalph Orchestrator ปรากฏตัวขึ้นในฐานะเฟรมเวิร์กเชิงปฏิบัติสำหรับการประสานงานเอไอแบบมัลติเอเจนต์โปรเจกต์โอเพนซอร์ส Ralph Orchestrator ที่พัฒนาโดย Mikey O'Brien ได้รับความนิยมอย่างรวดเร็วในฐานะการนำเทคนิค Ralph WiggumWeCom-CLI เชื่อมต่อ Terminal กับ AI ระดับองค์กร ปลดล็อกกระบวนทัศน์ใหม่ของการทำงานอัตโนมัติWeCom-CLI ได้ปรากฏขึ้นเป็นสะพานสำคัญระหว่างการทำงานบน Terminal และแพลตฟอร์มการสื่อสารระดับองค์กร ซึ่งเปลี่ยนแปลงพื้นฐานวLarksuite CLI: แพลตฟอร์มองค์กรของ ByteDance กำลังวางเดิมพันกับเอเจนต์ AI แบบ Command-Line อย่างไรฝ่ายองค์กรของ ByteDance ได้เปิดตัวอาวุธใหม่อันทรงพลังในการแข่งขันเพื่อดึงดูดนักพัฒนา นั่นคือ Larksuite CLI เครื่องมือ co

常见问题

GitHub 热点“OpenClaw-Lark: ByteDance's Bold Bet on Open-Source Enterprise AI Agents”主要讲了什么?

On April 30, 2025, ByteDance's enterprise collaboration platform Lark (known as Feishu in China) released OpenClaw-Lark, an open-source plugin designed to serve as a universal chan…

这个 GitHub 项目在“OpenClaw-Lark vs Slack Bolt performance comparison”上为什么会引发关注?

OpenClaw-Lark's architecture is built around a plugin runtime that sits between the Lark client and external services. The core abstraction is the Channel interface, which handles bidirectional communication: receiving e…

从“How to build an AI agent with OpenClaw-Lark and GPT-4o”看,这个 GitHub 项目的热度表现如何?

当前相关 GitHub 项目总星标约为 2105,近一日增长约为 636,这说明它在开源社区具有较强讨论度和扩散能力。