wecomcli-create-meeting

Creates scheduled WeCom meetings with invitees, settings, and reminders via the wecom-pro CLI.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires wecom-pro, and includes references (resource) components.

What problem does it solve? Scheduling meetings in WeCom (Enterprise WeChat) normally requires manual app interaction; this Skill lets an AI agent create scheduled meetings directly from the terminal, including invitees, locations, passwords, and reminder settings. ## Core Features & Use Cases - Scheduled Meeting Creation: Create meetings with title, start time, duration, description, location, and invitee lists through the wecom-pro meeting create_meeting command. - Advanced Meeting Settings: Configure passwords, waiting rooms, join-before-host rules, entry mute, external user restrictions, screen watermarks, and scoped ring reminders. - Multi-Bot Support: Route meeting creation through different configured bots (e.g., work vs. personal) using the global --bot flag. - Use Case: A user says "schedule a technical review tomorrow at 3pm with Zhang San and Li Si in meeting room 3" — the agent looks up user IDs via the contact skill, creates the meeting, and returns the meeting code and link. ## Quick Start Ask the agent to create a WeCom meeting with a title, start time, duration, and any invitees, for example: "Create a one-hour weekly sync meeting tomorrow at 3pm and invite Zhang San."

Frequently Asked Questions about wecomcli-create-meeting

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

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

Run wecom-pro meeting create_meeting with a JSON payload containing title, meeting_start_datetime in YYYY-MM-DD HH:mm format, meeting_duration in seconds, and an invitees object with user IDs. The command returns a meeting ID, meeting code, and join link.

How do I invite specific people to a WeCom meeting?▼

Pass an invitees object like {"userid": ["zhangsan", "lisi"]} in the create_meeting JSON payload. Resolve names to user IDs first by calling wecom-pro contact get_userlist and matching on name or alias.

Can I set a password or waiting room for a WeCom meeting?▼

Yes, the settings object supports password, enable_waiting_room, allow_enter_before_host, allow_external_user, and enable_screen_watermark options. Include them in the create_meeting JSON payload under the settings key.

How do I use a different bot when creating WeCom meetings?▼

Add the global --bot flag before the category, for example wecom-pro --bot work meeting create_meeting '{...}'. Without the flag, the default bot is used, which suits single-bot setups.

What time format does WeCom meeting creation require?▼

The meeting_start_datetime parameter must use the YYYY-MM-DD HH:mm format, and meeting_duration is an integer in seconds, so one hour is 3600. Invalid formats cause the API call to fail.