Agent skill
feishu:configure
Set up the Feishu channel — save the bot credentials and check connection status. Use when the user pastes Feishu app credentials, asks to configure Feishu, or wants to check channel status.
Install this agent skill to your Project
npx add-skill https://github.com/NanmiCoder/claude-code-skills/tree/main/plugins/feishu-channel/skills/configure
SKILL.md
Feishu Channel Configuration
This skill helps users configure their Feishu bot credentials for the Claude Code Feishu channel.
What you need
Prefer the official one-click tutorial:
- Follow 开发一个回声机器人
- Let the official flow create and publish the app
- Open the generated app and get the App ID and App Secret from "Credentials & Basic Info"
This path is preferred because the generated bot already has enough capability, event, and permission setup for basic Claude Code channel testing.
Configuration
When the user provides credentials, write them to ~/.claude/channels/feishu/.env:
FEISHU_APP_ID=<app_id>
FEISHU_APP_SECRET=<app_secret>
Optional fields:
FEISHU_ENCRYPT_KEY=<encrypt_key>
FEISHU_VERIFICATION_TOKEN=<verification_token>
FEISHU_BRAND=feishu
FEISHU_BRAND can be feishu (China, default) or lark (International).
Steps
- Create the directory if it doesn't exist:
mkdir -p ~/.claude/channels/feishu - Write the
.envfile with the credentials - Inform the user to restart Claude Code with the channel flag:
bashExplain that after
claude --allow-dangerously-skip-permissions --dangerously-load-development-channels plugin:feishu-channel@claude-code-skills/plugin install feishu-channel@claude-code-skills, reloading plugins is not enough — the user needs a full Claude Code restart.
Status Check
To check if the Feishu channel is configured:
- Check if
~/.claude/channels/feishu/.envexists and hasFEISHU_APP_IDset - Remind the user that Team / Enterprise orgs also need
channelsEnabled - Report the configuration status to the user
Security
- NEVER log or display the App Secret
- NEVER commit credentials to git
- Store credentials only in
~/.claude/channels/feishu/.env
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
news-extractor
新闻站点内容提取。支持微信公众号、今日头条、网易新闻、搜狐新闻、腾讯新闻。当用户需要提取新闻内容、抓取公众号文章、爬取新闻、或获取新闻JSON/Markdown时激活。
slides-generator
Generate interactive presentation slides using React + Tailwind. Triggers on keywords like "slides", "presentation", "PPT", "demo", "benchmark".
langchain-use
LangChain 1.0 使用指南。提供 Agent、Tool、Memory、Middleware 等核心概念的快速参考。当用户需要创建 AI Agent、集成 LangChain、或解决 LangChain 相关问题时激活。
srt-to-structured-data
将 SRT 字幕文件转换为结构化 JSON 数据。 触发场景: (1) 需要解析 SRT 字幕文件 (2) 需要将字幕转为 JSON/结构化格式 (3) 需要提取字幕时间码和文本 (4) 视频字幕数据处理和分析 (5) 生成字幕纯文本或统计信息
feishu:access
Manage Feishu channel access — approve pairings, edit allowlists, set DM/group policy. Use when the user asks to pair, approve someone, check who's allowed, or change policy for the Feishu channel.
agent-team-orchestrator
Agent Teams 智能编排决策引擎。自动分析任务复杂度,判断使用 Subagent 还是 Agent Teams。 触发场景: (1) 任务涉及多角度并行分析(如代码审查、竞争假说调试) (2) 需要成员之间互相通信、质疑、协作 (3) 跨层开发(前端/后端/测试各自负责) (4) 用户明确要求"创建团队"、"用 agent teams" (5) 任务描述包含"并行"、"同时"、"多人"、"协作"等关键词 (6) 使用 /team 命令
Didn't find tool you were looking for?