apps/desktop/openclaw-runtime/config/extensions/wecom-openclaw-plugin/skills/wecom-meeting-manage/SKILL.md
企业微信会议管理技能, 支持取消会议和更新会议受邀成员. 当用户需要"取消会议", "删除会议", "修改会议成员", "添加会议参与人", "移除会议成员"时触发.
npx skillsauth add polaris-dxz/xclaw wecom-meeting-manageInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
wecom_mcp是一个 MCP tool,所有操作通过调用该 tool 完成。
⚠️ 前置条件:首次调用
wecom_mcp前,必须按wecom-preflight技能执行前置条件检查,确保工具已加入白名单。
wecom-meeting-manage 提供企业微信会议管理能力, 包含以下功能:
查看可用命令列表:使用 wecom_mcp tool 调用 wecom_mcp list meeting
调用指定命令:使用 wecom_mcp tool 调用 wecom_mcp call meeting <tool_name> '<json_params>'
取消指定的预约会议.
使用 wecom_mcp tool 调用 wecom_mcp call meeting cancel_meeting '{"meetingid": "<会议id>"}'
| 参数 | 类型 | 必填 | 说明 |
| ----------------- | ------ | ---- | ---------------------------------- |
| meetingid | string | 是 | 会议 ID, 通过 wecom-meeting-query 技能获取 |
{
"errcode": 0,
"errmsg": "ok"
}
更新会议的受邀成员列表 (全量覆盖).
使用 wecom_mcp tool 调用 wecom_mcp call meeting set_invite_meeting_members '{"meetingid": "<会议id>", "invitees": [{"userid": "lisi"}, {"userid": "wangwu"}]}'
| 参数 | 类型 | 必填 | 说明 |
| ------------- | ------ | ---- | -------------------------------------- |
| meetingid | string | 是 | 会议 ID, 通过 wecom-meeting-query 技能获取 |
| invitees | array | 否 | 受邀成员列表, 每项包含 userid 字段 |
注意: invitees 为全量覆盖, 传入的列表将替换现有成员列表. invitees 的 userid 通过
wecom-contact-lookup技能获取
{
"errcode": 0,
"errmsg": "ok"
}
示例: 用户说 "帮我取消明天的技术方案评审会议"
步骤:
wecom-meeting-query 技能查询会议列表 + 关键词匹配找到目标会议.使用 wecom_mcp tool 调用 wecom_mcp call meeting cancel_meeting '{"meetingid": "<target_meetingid>"}'
✅ 会议已取消: 技术方案评审
示例: 用户说 "把王五加到技术方案评审会议里"
步骤:
wecom-meeting-query 技能查询会议列表 + 匹配找到目标会议.set_invite_members 为全量覆盖, 必须先通过 wecom-meeting-query 技能的 get_meeting_info 获取会议详情, 获取现有成员后再合并.wecom-contact-lookup 技能获取通讯录成员, 按姓名筛选出王五的 userid.使用 wecom_mcp tool 调用 wecom_mcp call contact get_userlist '{}'
在返回的 userlist 中筛选 name 包含 "王五" 的成员, 获取其 userid.
使用 wecom_mcp tool 调用 wecom_mcp call meeting set_invite_meeting_members '{"meetingid": "<target_meetingid>", "invitees": [{"userid": "zhangsan"}, {"userid": "lisi"}, {"userid": "wangwu"}]}'
✅ 会议成员已更新: 技术方案评审
👥 当前成员: 张三, 李四, 王五
wecom-contact-lookup 技能的 get_userlist 接口获取全量通讯录成员, 再按姓名/别名本地筛选匹配出对应的 userid. 该接口无入参, 返回当前用户可见范围内的成员列表 (含 userid, name, alias)wecom-meeting-query 技能查询到目标会议的 meetingidset_invite_members 传入的列表将替换现有成员列表, 需先获取当前成员再合并testing
公司财报追踪器。自动追踪科技公司财报发布日期并生成摘要。Keywords: 财报, earnings, financial report.
development
Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files). Triggers include: any mention of "Word doc", "word document", ".docx", or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a "report", "memo", "letter", "template", or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.
testing
Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This workflow helps users efficiently transfer context, refine content through iteration, and verify the doc works for readers. Trigger when user mentions writing docs, creating proposals, drafting specs, or similar documentation tasks.
content-media
内容复用引擎。将长文章/视频自动拆解为适合不同平台的短内容。Keywords: 内容复用, 多平台适配, content repurpose, 内容拆解.