飞书多 Agent 配置助手

飞书多 Agent 配置助手 is a skill for Claude Code, Codex from rfdiosuao/AgentSkill. It costs 30 tokens per session (1,006 once invoked), scanned A, original, MIT.

An interactive setup wizard for creating and configuring multiple Feishu bots, which are automated assistants in the Feishu collaboration platform. It supports role templates, separate workspaces, and checking application credentials.

In plain words
What is it for?
Use it to choose how many agents to create, select or customize roles, follow a Feishu bot tutorial, validate App IDs and App Secrets, create agents in batches, and view setup status.
Why use it?
It guides users through configuration instead of requiring them to assemble each bot's settings and credentials manually.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for openclaw. Also seen: built for openclaw.

Good fit Use it to choose how many agents to create, select or customize roles, follow a Feishu bot tutorial, validate App IDs and App Secrets, create agents in batches, and view setup status.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/rfdiosuao/agentskill/feishu-multi-agent-manager
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add rfdiosuao/AgentSkill --skill feishu-multi-agent-manager
Clone the repo
git clone --depth 1 https://github.com/rfdiosuao/AgentSkill

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for 飞书多 Agent 配置助手

README.md
[![agentmods](https://agentmods.dev/badge/skills/rfdiosuao/agentskill/feishu-multi-agent-manager.svg)](https://agentmods.dev/skills/rfdiosuao/agentskill/feishu-multi-agent-manager)
Your own site
<a href="https://agentmods.dev/skills/rfdiosuao/agentskill/feishu-multi-agent-manager"><img src="https://agentmods.dev/badge/skills/rfdiosuao/agentskill/feishu-multi-agent-manager.svg" alt="Measured on agentmods" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,006 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00030 $0.01006
Opus 5 $0.00015 $0.00503
Sonnet 5 $0.00006 $0.00201
Haiku 4.5 $0.00003 $0.00101

Measured 7d ago against content hash f23be65546d7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

飞书多 Agent 配置助手 scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

The scan reads SKILL.md. This mod also ships 54 executable files (dist/index.d.ts, dist/index.js, node_modules/@types/node/assert.d.ts, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

feishu-multi-agent-manager/SKILL.md · 131 lines

What it actually says

飞书多 Agent 配置助手 🤖

交互式引导配置多 Agent 系统,支持批量创建、凭证验证、角色模板

✨ 功能特性

1. 交互式配置向导

  • 像聊天一样完成配置
  • 询问创建几个 Agent(1-10)
  • 提供预设角色推荐

2. 批量创建支持

  • 一次性创建多个 Agent
  • 自动验证每个凭证
  • 详细的成功/失败报告

3. 飞书 Bot 创建教程

  • 7 步详细教程
  • 包含检查清单
  • 常见问题解答

4. 预设角色模板

  • 6 个经典角色(main/dev/content/ops/law/finance)
  • 每个角色包含完整人设文件
  • 支持完全自定义

5. 凭证验证

  • 自动验证 AppID 格式
  • 自动验证 AppSecret 长度
  • 友好的错误提示

6. 工作区隔离

  • 每个 Agent 独立 workspace
  • 记忆文件独立
  • 会话存储独立

🚀 使用方式

启动配置向导

await main(ctx, { action: 'start_wizard' });

选择 Agent 数量

await main(ctx, { action: 'select_count', count: '6' });

查看飞书教程

await main(ctx, { 
  action: 'show_tutorial',
  step: '1',
  agentName: '大总管'
});

批量创建 Agent

await main(ctx, {
  action: 'batch_create',
  agents: [
    { agentId: 'main', agentName: '大总管', appId: 'cli_xxx', appSecret: 'xxx', isDefault: true },
    { agentId: 'dev', agentName: '开发助理', appId: 'cli_xxx', appSecret: 'xxx' },
    { agentId: 'content', agentName: '内容助理', appId: 'cli_xxx', appSecret: 'xxx' }
  ]
});

查看配置状态

await main(ctx, { action: 'show_status' });

📋 配置流程

  1. 启动向导 - 回复「开始配置」
  2. 选择数量 - 告诉 Bot 创建几个 Agent
  3. 选择模式 - 预设/自定义/全新
  4. 创建飞书应用 - 按照教程创建每个 Bot
  5. 验证凭证 - 自动验证 AppID/AppSecret
  6. 批量创建 - 一次性创建所有 Agent
  7. 重启生效 - 重启 OpenClaw

🎯 预设角色

角色 职责 表情
main 大总管 - 统筹全局 🎯
dev 开发助理 - 技术架构 🧑‍💻
content 内容助理 - 文案创作 ✍️
ops 运营助理 - 用户增长 📈
law 法务助理 - 合同审核 📜
finance 财务助理 - 账目管理 💰

📚 完整文档

查看 GitHub README

🔗 相关链接


版本: 2.0.0
作者: rfdiosuao
许可证: MIT

Files

What ships with it

60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 131 lines · 30 tokens per session scan A f23be65546d7

Subscribe to this mod's changes

飞书多 Agent 配置助手 is a skill published in the GitHub repository rfdiosuao/AgentSkill (16 stars, last pushed 26d ago), licensed MIT. It adds 30 tokens to every session and 1,006 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.