feishu-multi-agent
Production blueprint for orchestrating multiple OpenClaw agents via Feishu with file-driven task queues, cron scheduling, and workspace sandbox workarounds.
Why use this skill?
Learn to orchestrate multiple AI agents using OpenClaw and Feishu. Build a scalable team with file-driven task queues and automated cron scheduling.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/evan966890/feishu-multi-agentWhat This Skill Does
The feishu-multi-agent skill provides a production-grade blueprint for orchestrating complex AI agent teams using the OpenClaw framework. It enables a hierarchical structure where a lead agent (the "Foreman" or "包工头") dispatches tasks to multiple subordinate agents. By leveraging Feishu (Lark) as the primary communication gateway, this skill establishes a file-driven task queue system. It uses custom workspace directory structures to ensure modularity, allowing agents to operate in isolation while maintaining a centralized command-and-control workflow. The architecture is specifically designed to bypass limitations in standard agent environments by utilizing cron-based heartbeat triggers and robust file-system orchestration.
Installation
To install this skill, you must first ensure your OpenClaw environment is configured with multiple Feishu app credentials. Add the skill to your foreman agent's SOUL.md configuration:
- Use the install command:
clawhub install openclaw/skills/skills/evan966890/feishu-multi-agent. - Create dedicated workspace directories for each subordinate agent (e.g.,
workspace-buyer,workspace-kb,workspace-gf) within your home directory. - Initialize the task structure by running
mkdir -p ~/.openclaw/workspace-*/tasks/{pending,done}. - Update your OpenClaw gateway configuration to bind specific Feishu accounts to corresponding agent IDs.
- Restart the OpenClaw gateway service to apply the configuration changes.
Use Cases
- Automated Business Workflows: Automating tasks like publishing articles, processing sales orders, or managing game industry production pipelines where agents need to work asynchronously.
- Multi-Agent Collaboration: Deploying specialized agents that communicate through file-based queues, ensuring that the main foreman can track progress without being blocked by individual task latencies.
- Continuous Background Automation: Utilizing cron job integration to ensure agents remain active 24/7, processing tasks as soon as they appear in their
pending/directories.
Example Prompts
- "Check the status of pending tasks in the buyer and kb workspaces, and report any failures to the main dashboard."
- "Create a new high-priority research task in the kb/tasks/pending folder regarding the latest AI market trends."
- "Summarize the completed tasks from the done folders of all subordinate agents and draft a weekly progress report."
Tips & Limitations
- Workspace Isolation: Use bash commands for cross-workspace interactions, as the built-in write tools are restricted to individual agent workspaces.
- Cron Integration: For sustained activity, configure high-frequency cron jobs that monitor for new files, ensuring a seamless flow from pending to done states.
- Scaling: When adding more than 5 agents, monitor the Feishu WebSocket connection limits and consider rotating app credentials to avoid rate limiting. Always verify permissions for each bot application in the Feishu Developer Console before deployment.
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-evan966890-feishu-multi-agent": {
"enabled": true,
"auto_update": true
}
}
}Tags(AI)
Flags: file-write, file-read, external-api, code-execution
Related Skills
Feishu App Setup
Skill by evan966890
ai-companion-setup
在 OpenClaw 上搭建有记忆、能发语音/自拍/文字的 AI 陪伴 agent(完整踩坑指南)
ai-companion-setup
在 OpenClaw 上搭建有记忆、能发语音/自拍/文字的 AI 陪伴 agent(完整踩坑指南)
agent-batch-guard
AI Agent 大任务防卡死指南。解决 agent 在批量操作中 session transcript 膨胀导致 compaction 超时、agent 卡死的问题。涵盖 session 保护策略、脚本化批处理、断点续传、熔断器、OpenClaw 配置调优和实战案例。