What problem does it solve? Sending structured, interactive messages through WeCom (Enterprise WeChat) requires building card payloads that strictly conform to Tencent's template card JSON Schema, which is error-prone when done by hand. This Skill guides the AI to emit a valid card JSON block in its reply, which the wecom plugin automatically extracts and sends. ## Core Features & Use Cases - Five card types: text_notice and news_notice for one-way notifications, plus button_interaction, vote_interaction, and multiple_interaction for user actions like approvals, polls, and multi-dimension selections. - Schema-grounded generation: All fields, nesting, and enums must match the JSON Schema in references/api-template-card-types.md, with a decision flowchart and required-field cheat sheet to pick the right card type. - Simplified vote and selector formats: vote_interaction and multiple_interaction use simplified fields (options, selectors) that the plugin code converts to the official API format automatically. - Use Case: A user says "ask the team whether they prefer plan A or plan B" — the Skill produces a button_interaction card with two styled buttons and a unique task_id, sent directly in the wecom channel. ## Quick Start Ask the assistant to send a WeCom template card, for example: send a vote card asking the team to choose between hiking, dinner, and escape room for the team-building event.