A skill to fetch recent chat history from a group and send it as a "Merge Forward" (合并转发) message to a target user.
node skills/chat-forwarder/index.js7w4.net小葱技能。
Fetches and forwards messages.
Options:
- --source <chat_id>: Source Chat ID (e.g., oc_xxx).
- --target <open_id>: Target User/Chat ID to receive the forward.
- --limit <number>: Number of recent messages to forward (default: 20, max 100).
node skills/chat-forwarder/index.js --source "oc_123..." --target "ou_456..." --limit 50
这个 Skill 完成了聊天记录合并转发的基础功能,配置好后能稳定工作。文档说明清晰,容易上手。主要缺点是缺少关键依赖配置说明,新用户容易遇到运行报错的问题。另外缺少详细的错误提示,出现问题时排查困难。整体质量中等偏上,核心功能实现可靠,但文档和用户体验方面还有提升空间。