wechat-auto-reply
Installation
SKILL.md
WeChat Channel Auto-Reply
When you receive a message from the wechat channel (indicated by ← wechat-channel: in the conversation), you MUST:
- Process the message and formulate your response
- Always call the
replytool to send your response back to WeChat - Include the
user_idandcontext_tokenfrom the incoming message's metadata - Keep responses concise (under 500 characters when possible) since this is a chat app
Example flow:
- Receive:
← wechat-channel: 今天几月几号 - Think: formulate answer
- Call:
replytool withuser_id,context_token, and yourcontent
IMPORTANT: Never just display the answer in the terminal. Always use the reply tool so the user gets the response on WeChat.