wecomcli-edit-meeting

Cancels WeCom meetings and updates meeting invitee lists via the wecom-pro CLI.

3|Updated Apr 2, 2026
One-click install
npx skills add https://github.com/Liangdi/wecom-pro --skill wecomcli-edit-meeting-liangdi
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: wecomcli-edit-meeting
Source: https://github.com/Liangdi/wecom-pro/tree/main/skills/wecomcli-edit-meeting
Command: npx skills add https://github.com/Liangdi/wecom-pro --skill wecomcli-edit-meeting-liangdi

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Managing existing WeCom (Enterprise WeChat) meetings from the terminal is cumbersome when you need to cancel a scheduled meeting or change its participant list. This Skill lets an AI agent perform those meeting management operations directly through the wecom-pro command-line tool. ## Core Features & Use Cases - Cancel Meetings: Cancel a scheduled meeting by its meeting ID with a single command. - Update Invitees: Replace the invited member list of a meeting, noting that updates are full-coverage replacements requiring the current member list first. - Use Case: A user says "add Wang Wu to tomorrow's design review meeting." The agent locates the meeting via the get-meeting skill, resolves Wang Wu's userid from the contact list, merges it with existing invitees, and updates the meeting. ## Quick Start Ask the agent to cancel a specific WeCom meeting or add a colleague to an existing meeting, and it will run the appropriate wecom-pro meeting command.

Frequently Asked Questions about wecomcli-edit-meeting

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I cancel a WeCom meeting from the command line?▼

Run wecom-pro meeting cancel_meeting with a JSON payload containing the meetingid, for example wecom-pro meeting cancel_meeting '{"meetingid": "xxx"}'. You obtain the meetingid by querying the meeting list first.

How do I add a member to an existing WeCom meeting?▼

Use set_invite_meeting_members with the meetingid and an invitees array of userid objects. Because the update fully replaces the list, first fetch current invitees from the meeting details, merge in the new member, then submit the combined list.

Does updating meeting invitees merge or replace the member list?▼

It replaces the list entirely. The invitees array passed to set_invite_meeting_members overwrites existing members, so you must retrieve current participants and merge additions or removals before calling the command.

Can I invite external people to a WeCom meeting?▼

No. Meeting participants are limited to members inside the enterprise. External contacts cannot be added through the invitees list, and each participant must be resolved to an internal userid from the contact directory.

How do I find a user's userid for meeting invitations?▼

Call wecom-pro contact get_userlist with an empty JSON object to retrieve visible directory members, then filter the returned userlist by name or alias to find the matching userid for the person you want to invite.