feishu-bot-dev

feishu-bot-dev is a skill for Claude Code from Yrzhe/claude-skills. It costs 85 tokens per session (6,539 once invoked), scanned A, original, MIT.

A development guide for Feishu bots, where Feishu is a collaboration platform used for chat, documents, and business workflows.

In plain words
What is it for?
Use it to create reminders, notifications, automated workflows, API integrations, message cards, and Feishu bots.
Why use it?
It explains the available ways to build bots, from visual workflows to code and AI-agent integrations.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the feishu-bot-dev plugin — 1 skill shipped together

Good fit Use it to create reminders, notifications, automated workflows, API integrations, message cards, and Feishu bots.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/yrzhe/claude-skills/feishu-bot-dev
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 Yrzhe/claude-skills --skill feishu-bot-dev
Clone the repo
git clone --depth 1 https://github.com/Yrzhe/claude-skills

Made for: Claude Code.

Or install feishu-bot-dev, the plugin that ships this one along with the rest of its 1 skill.

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 feishu-bot-dev

README.md
[![agentmods](https://agentmods.dev/badge/skills/yrzhe/claude-skills/feishu-bot-dev/github.svg)](https://agentmods.dev/skills/yrzhe/claude-skills/feishu-bot-dev)
Your own site
<a href="https://agentmods.dev/skills/yrzhe/claude-skills/feishu-bot-dev"><img src="https://agentmods.dev/badge/skills/yrzhe/claude-skills/feishu-bot-dev/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for feishu-bot-dev

Your own site · 80×15
<a href="https://agentmods.dev/skills/yrzhe/claude-skills/feishu-bot-dev"><img src="https://agentmods.dev/badge/skills/yrzhe/claude-skills/feishu-bot-dev.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 85 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,539 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00085 $0.06539
Opus 5 $0.00043 $0.03270
Sonnet 5 $0.00017 $0.01308
Haiku 4.5 $0.00009 $0.00654

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

Security

Grade A, and why

feishu-bot-dev scanned grade A with 1 finding 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 10d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/feishu_api.py), 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -X POST -H "Content-Type: application/json" \
plugins/feishu-bot-dev/skills/feishu-bot-dev/SKILL.md · 934 lines

How it starts

The opening of the file, as written. The whole thing — 934 lines — stays where its author put it; the contents beside it link to each section on GitHub.

飞书机器人开发完整指南

飞书机器人开发全栈指南,支持零代码、全代码、AI集成三种模式。


开发模式选择

模式 适用场景 技术要求 入口
飞书机器人助手 定时提醒、消息推送、自动化流程 无需编程 botbuilder.feishu.cn
飞书开放平台 API 复杂业务逻辑、系统深度集成 需要编程 open.feishu.cn
MCP Server 集成 AI Agent 协作、智能助手 需要编程 MCP 文档

开发者工具箱

工具 用途 链接
消息卡片搭建工具 可视化设计卡片消息,告别手写JSON Card Builder
API Explorer 在线调试API,一键生成代码 API Explorer
AI Playground 自然语言生成代码 AI Playground
opdev CLI 命令行开发工具 npm i -g @anthropic/opdev

第一部分:飞书机器人助手(零代码)

一、快速入门

1.1 创建机器人应用

  1. 访问 飞书机器人助手
  2. 点击 + 新建机器人应用
  3. 填写:
    • 应用名称:如"值班通知机器人"
    • 应用描述:说明机器人用途
    • 应用图标:支持默认或自定义

1.2 使用模板快速搭建

系统提供多种预设模板:

模板类型 典型场景
消息助手 行政通知、财务通知
群智能助手 入群欢迎、自动回复
新人入职 入职引导、信息收集
定时提醒 周报填写、任务催办
值班通知 排班提醒、签到管理
数据推送 系统告警、数据同步

1.3 核心概念

触发器:流程的起点,定义何时启动

  • 定时任务:按设定时间触发
  • 工作表变化:数据变动时触发
  • Webhook:外部系统调用触发
  • 新员工入职:人事变动触发
  • @机器人消息:群内互动触发

操作节点:触发后执行的动作

  • 发送飞书消息
  • 创建飞书群/文档
  • 查找/新增/修改多维表格记录
  • 发送 HTTP 请求

二、流程设计

2.1 触发器类型详解

系统内置触发器
触发器 说明 示例场景
定时任务 按时间和频率触发 每天9点发送周报提醒
工作表变化 新增/修改/删除记录 新员工入职自动欢迎
机器人会话首次创建 用户首次打开机器人 发送使用指南
单聊机器人消息 用户私聊关键词触发 关键词自助查询
@机器人群聊消息 群内@机器人触发 问题反馈汇总
飞书集成触发器
触发器 说明
新员工入职 账号激活或入职特定部门
多维表格内容变更 满足条件的记录变更
用户进群 用户加入指定群组
收到新审批 审批状态变更
应用连接器触发器
触发器 说明
Webhook 触发 接收外部 HTTP 请求
GitLab 事件 commit/MR/Issue 变动
Sentry 事件 新错误产生
Grafana 告警 监控报警触发
Gmail 新邮件 收到新邮件时触发

Read the full file on GitHub · 934 lines

Files

What ships with it

2 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. 10d ago First seen · 934 lines · 85 tokens per session scan A f592bb75228f

Subscribe to this mod's changes

feishu-bot-dev is a skill published in the GitHub repository Yrzhe/claude-skills (33 stars, last pushed 3mo ago), licensed MIT. It adds 85 tokens to every session and 6,539 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

mem0-oss-to-platform

Plan and then execute a migration of a project from the mem0 open-source / self-hosted SDK (the local Memory class) to the mem0 Platform / hosted / managed SDK (the MemoryClient class). Use this whenever a developer wants to move, switch, or migrate their mem0 usage off OSS/self-hosted to the hosted API — e.g.…

mem0ai/mem0 · 273 tokens

agui-dotnet-protobuf

Use the protobuf wire transport (instead of the default Server-Sent Events) for an AG-UI connection with the AG-UI .NET SDK — a compact binary event stream negotiated via the Accept header. USE FOR: making an AGUIChatClient prefer protobuf by wiring an AGUIEventStreamHandler with ProtobufEventStreamFormatter (then…

ag-ui-protocol/ag-ui · 162 tokens

azure-mgmt-botservice-dotnet

Azure Resource Manager SDK for Bot Service in .NET. Management plane operations for creating and managing Azure Bot resources, channels (Teams, DirectLine, Slack), and connection settings. Triggers: "Bot Service", "BotResource", "Azure Bot", "DirectLine channel", "Teams channel", "bot management .NET", "create bot".

microsoft/skills · 78 tokens

fastapi-router-py

Create FastAPI routers with CRUD operations, authentication dependencies, and proper response models. Use when building REST API endpoints, creating new routes, implementing CRUD operations, or adding authenticated endpoints in FastAPI applications.

microsoft/skills · 46 tokens

migrate-segw-to-rap

Reverse-engineer a SEGW-built OData V2 service (MPC/DPC/MPCEXT/DPCEXT) into a modern RAP V4 service — tables, CDS views (interface + projection), behavior definitions, draft entities, service definition + binding. Use when asked to "migrate this SEGW service to RAP", "convert OData V2 to V4 RAP", "modernize this…

arc-mcp/arc-1 · 106 tokens

telnyx-messaging-hosted-curl

Set up hosted SMS numbers, toll-free verification, and RCS messaging. Use when migrating numbers or enabling rich messaging features. This skill provides REST API (curl) examples.

team-telnyx/ai · 45 tokens