Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Installation

npx skills add https://github.com/wecomteam/wecom-cli --skill wecomcli-edit-meeting

Summary

企业微信会议管理技能, 支持取消会议和更新会议受邀成员. 当用户需要"取消会议", "删除会议", "修改会议成员", "添加会议参与人", "移除会议成员"时触发.

SKILL.md

企业微信会议管理技能

wecom-cli 是企业微信提供的命令行程序,所有操作通过执行 wecom-cli 命令完成。

概述

wecomcli-edit-meeting 提供企业微信会议管理能力, 包含以下功能:

  1. 取消会议 - 取消指定的预约会议
  2. 更新会议受邀成员 - 修改会议的参与人列表

命令调用方式

调用指定命令:

wecom-cli meeting <tool_name> '<json_params>'

---

命令详细说明

1. 取消会议 (cancel_meeting)

取消指定的预约会议.

调用命令
wecom-cli meeting cancel_meeting '{"meetingid": "<会议id>"}'
入参说明
参数类型必填说明
meetingidstring会议 ID, 通过 wecomcli-get-meeting 技能获取
返回参数
{
  "errcode": 0,
  "errmsg": "ok"
}

---

2. 更新会议受邀成员 (set_invite_meeting_members)

更新会议的受邀成员列表 (全量覆盖).

调用命令
wecom-cli meeting set_invite_meeting_members '{"meetingid": "<会议id>", "invitees": [{"userid": "lisi"}, {"userid": "wangwu"}]}'
入参说明
参数类型必填说明
meetingidstring会议 ID, 通过 wecomcli-get-meeting 技能获取
inviteesarray受邀成员列表, 每项包含 userid 字段

注意: invitees 为全量覆盖, 传入的列表将替换现有成员列表. invitees 的 userid 通过 wecomcli-lookup-contact 技能获取

返回参数
{
  "errcode": 0,
  "errmsg": "ok"
}

---

典型工作流

工作流 1: 取消会议

示例: 用户说 "帮我取消明天的技术方案评审会议"

步骤:

  1. 定位会议: 通过 wecomcli-get-meeting 技能查询会议列表 + 关键词匹配找到目标会议.
  2. 直接执行取消:
wecom-cli meeting cancel_meeting '{"meetingid": "<target_meetingid>"}'
  1. 展示结果:
✅ 会议已取消: 技术方案评审

---

工作流 2: 更新会议成员

示例: 用户说 "把王五加到技术方案评审会议里"

步骤:

  1. 定位会议: 通过 wecomcli-get-meeting 技能查询会议列表 + 匹配找到目标会议.
  2. 获取当前受邀成员: set_invite_meeting_members 为全量覆盖, 必须先通过 wecomcli-get-meeting 技能的 get_meeting_info 获取会议详情, 获取现有成员后再合并.
  3. 通讯录查询: 调用 wecomcli-lookup-contact 技能获取通讯录成员, 按姓名筛选出王五的 userid.
wecom-cli contact get_userlist '{}'

在返回的 userlist 中筛选 name 包含 "王五" 的成员, 获取其 userid.

  1. 合并成员列表: 将现有成员 + 新增成员合并 (全量覆盖).
  2. 执行更新:
wecom-cli meeting set_invite_meeting_members '{"meetingid": "<target_meetingid>", "invitees": [{"userid": "zhangsan"}, {"userid": "lisi"}, {"userid": "wangwu"}]}'
  1. 展示结果:
✅ 会议成员已更新: 技术方案评审
👥 当前成员: 张三, 李四, 王五

---

注意事项

  • 参与人仅支持企业内成员, 不支持外部人员
  • 通讯录查询: 涉及参与人时, 需先通过 wecomcli-lookup-contact 技能的 get_userlist 接口获取全量通讯录成员, 再按姓名/别名本地筛选匹配出对应的 userid. 该接口无入参, 返回当前用户可见范围内的成员列表 (含 userid, name, alias)
  • 定位会议: 管理操作需先通过 wecomcli-get-meeting 技能查询到目标会议的 meetingid
  • 成员更新为全量覆盖: set_invite_meeting_members 传入的列表将替换现有成员列表, 需先获取当前成员再合并

Recommended skills

Browse all →

Related guides

Hand-picked reading to help you choose, install, and use agent skills.