wecomcli-get-meeting

Query WeCom meeting lists and retrieve meeting details via the wecom-pro CLI.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? It lets users look up their WeCom (Enterprise WeChat) meetings directly from the terminal or an AI agent, answering questions like "what meetings do I have this week" or "when is the tech review meeting" without opening the WeCom app. ## Core Features & Use Cases - Meeting List Query: Retrieve meeting ID lists for a user within a time range (limited to the current day plus or minus 30 days, up to 100 per page) with cursor-based pagination. - Meeting Detail Retrieval: Fetch full meeting information by meeting ID, including title, time, location, attendees, hosts, password settings, recurring rules, and sub-meetings. - Keyword Search Workflow: Find a meeting by matching keywords against titles pulled from the list and detail APIs. - Use Case: A user asks "帮我查一下本周有哪些会议"; the agent computes the week's date range, calls list_user_meetings, then get_meeting_info for each ID, and presents a formatted schedule. ## Quick Start Ask the AI to list your WeCom meetings for this week using the wecom-pro meeting command.

Frequently Asked Questions about wecomcli-get-meeting

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

FAQPage Schema
How do I list my WeCom meetings from the command line?▼

Run wecom-pro meeting list_user_meetings with a JSON argument containing begin_datetime and end_datetime in YYYY-MM-DD HH:mm format. The command returns meeting IDs and a next_cursor for pagination.

How to get WeCom meeting details by meeting ID?▼

Run wecom-pro meeting get_meeting_info with a JSON argument containing the meetingid obtained from list_user_meetings. It returns the title, start time, duration, location, attendees, hosts, meeting link, and recurring settings.

What is the time range limit for querying WeCom meetings?▼

The list_user_meetings API only supports meetings within the current day plus or minus 30 days. Each page returns up to 100 meetings, and you use the cursor parameter to fetch additional pages.

Can I search WeCom meetings by keyword or title?▼

There is no direct keyword search API. You first pull the meeting ID list for a time range, then call get_meeting_info for each ID and match the title against your keyword, stopping when a match is found.

What do the WeCom meeting status codes mean?▼

The status field uses integers: 1 means not started, 2 means in progress, 3 means ended, 4 means cancelled, and 5 means expired. Meeting type codes distinguish one-time, recurring, webinar, and other meeting kinds.