← 返回 Skills 市场
李高伟自动回复助手
作者
runkecheng
· GitHub ↗
· v1.1.1
· MIT-0
69
总下载
0
收藏
0
当前安装
4
版本数
在 OpenClaw 中安装
/install ligaowei-auto-responder
功能描述
飞书自动回复助手。定时扫描用户的私聊消息,发现业务咨询问题(商户、费率、结算等)后自动回复对方。触发场景:(1) cron定时扫描未回复消息 (2) 用户说「帮我回复」「自动回复一下」手动触发。用于收钱吧内部员工的消息自动响应。
使用说明 (SKILL.md)
李高伟自动回复助手
定时扫描戚文珺的未回复私聊消息,发现商户相关问题后自动回复对方。
适用场景
两种触发方式:
- 手动触发 — 用户转发消息说「帮我回复」「自动回复一下」→ 立即处理该消息
- 自动扫描 — 每30秒扫描未回复私聊消息,发现业务咨询直接回复
能处理的问题类型
| 类型 | 举例 |
|---|---|
| 💰 商户问题 | "商户费率多少?""结算到账多久?""退款流程" |
| 📊 交易查询 | "帮我查一下流水""交易记录怎么查" |
| 📋 流程咨询 | "商户入驻怎么弄""需要什么材料" |
自动跳过:
- 纯问候("在吗""在不在" → 只回一句"在的")
- 个人私事、闲聊
- 需要用户本人决策的问题
- 上级布置任务
工作流
Step 1: 检测消息
搜索最近发给戚文珺但未处理的同事消息:
- 私聊消息:用
feishu_im_user_search_messages搜索chat_type="p2p",relative_time="last_30_minutes",sender_type="user"。过滤掉发送者是戚文珺本人的消息。
Step 2: 去重
检查记录文件,跳过已回复的消息ID。
Step 3: 判断是否可回复
对每条未回复消息判断:
- 问候类("在吗""在不在""忙吗") → 回复一句"在的",记录并结束
- 纯闲聊/个人私事 → 跳过,不回复
- 需要决策/审批 → 跳过
- 上级/老板布置任务 → 跳过
- 业务咨询 → 继续处理
Step 4: 关键词匹配
对业务咨询类消息进行关键词匹配:
| 主题 | 关键词 | 回复内容 |
|---|---|---|
| 商户问题 | 商户, 商家, 费率, 结算, 退款, 交易, 流水, 收款 | 此为ai助手自动回复,若有疑义,稍后联系 |
| 到账打款 | 到账, 打款 | 本消息由 AI 自动生成,仅供参考\ |
| 每月20号左右打款,若有问题可咨询涂雅青 |
匹配规则:消息文本中包含任一关键词即视为匹配
Step 5: 合成回复
按匹配的主题选择对应回复模板:
| 主题 | 回复模板 |
|---|---|
| 商户问题 | 此为ai助手自动回复,若有疑义,稍后联系 |
| 到账打款 | 本消息由 AI 自动生成,仅供参考\x3Cbr>每月20号左右打款,若有问题可咨询涂雅青 |
Step 6: 发送回复
使用 feishu_im_user_message 工具 action=reply,回复原消息。
Step 7: 记录归档
在 memory/ligaowei-auto-responder.md 追加记录:
## YYYY-MM-DD HH:MM
- 消息ID: om_xxx | 发送者: 姓名 | 问题: 问题摘要
- 已回复 ✅ | 回复摘要: 回复内容
配置信息
- 戚文珺 open_id:
ou_a63ddcd1219a304eef62d46cb4e3f59a - 戚文珺姓名:戚文珺
- 自动回复记录:/workspace/memory/ligaowei-auto-responder.md
安全使用建议
Install only if the Feishu account owner and organization have explicitly approved automated scanning and replies. Review the configured target user, keywords, reply templates, rate limits, and log location first, and prefer dry-run or approval-before-send operation for sensitive or external business conversations.
能力评估
Purpose & Capability
The stated purpose is coherent with the artifacts: it scans Feishu private messages for merchant/payment topics and replies with fixed templates. The concern is the high-impact capability itself: private-message access plus automatic replies on a user's behalf.
Instruction Scope
The skill scopes searches to p2p Feishu messages from the last 30 minutes and a named user, but the automatic mode runs every 30 seconds and sends replies directly on keyword match without requiring confirmation or a dry-run review step.
Install Mechanism
The package contains a SKILL.md, metadata, and a Python helper script. No dependency or installer behavior was found, and static scan metadata reports no suspicious patterns.
Credentials
Private internal workplace messages and business communications are sensitive. The skill discloses that it scans and replies, but it does not clearly document user/operator consent, affected sender scope beyond private chats, or what happens when a keyword match is wrong.
Persistence & Privilege
The skill instructs agents to append reply records containing message IDs, sender names, question summaries, and reply summaries to /workspace/memory/ligaowei-auto-responder.md, while the helper script also writes a cache under the user's home cache directory. Retention and access controls are not defined.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install ligaowei-auto-responder - 安装完成后,直接呼叫该 Skill 的名称或使用
/ligaowei-auto-responder触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.1.1
拆分到账/打款为独立主题,回复内容指向涂雅青
v1.1.0
新增定时扫描工作流:每30秒扫描戚文珺的私聊消息,匹配关键词后自动回复
v1.0.1
新增私聊(dm_only)模式、实现脚本、精简配置
v1.0.0
初始版本:飞书自动回复技能,支持关键词匹配、多主题配置、冷却时间控制
元数据
常见问题
李高伟自动回复助手 是什么?
飞书自动回复助手。定时扫描用户的私聊消息,发现业务咨询问题(商户、费率、结算等)后自动回复对方。触发场景:(1) cron定时扫描未回复消息 (2) 用户说「帮我回复」「自动回复一下」手动触发。用于收钱吧内部员工的消息自动响应。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 69 次。
如何安装 李高伟自动回复助手?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install ligaowei-auto-responder」即可一键安装,无需额外配置。
李高伟自动回复助手 是免费的吗?
是的,李高伟自动回复助手 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
李高伟自动回复助手 支持哪些平台?
李高伟自动回复助手 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 李高伟自动回复助手?
由 runkecheng(@runkecheng)开发并维护,当前版本 v1.1.1。
推荐 Skills