Loading...
Loading...
Tencent Meeting CLI (tmeet): supports OAuth authorized login/logout/status query, meeting management (create/update/cancel/query/invitee management), recording management (list/download link/smart minutes/transcript), and meeting reports (participants/waiting room). This skill is used when users need to operate Tencent Meeting via the command line.
npx skill4agent add tencentcloud/tencentmeeting-cli tmeet-skilltmeettmeettmeetnpm install -g @tencentcloud/tmeetNote: Automatic installation requires network connection and npm environment support. If the installation fails, please manually execute the above command or check your network environment.
meeting_idmeeting_codemeeting_idmeeting_codemeeting_idmeeting_type=1sub_meeting_idmeeting_record_idrecord_file_id# Login (output authorization URL, open in browser to complete authorization)
tmeet auth login
# Logout (clear local credentials)
tmeet auth logout
# View current login status and Token validity (can be executed without login)
tmeet auth statusNote: Except forandauth login, all commands require login first. If you are not logged in, the command will promptauth status.user config is empty
Note: When calling thecommand for the first time or switching models, you must write the currently used agent type (e.g. Cursor/Claude Desktop/Cline/CodeBuddy) and model name (e.g. Claude 3.5 Sonnet/GPT-4o/DeepSeek) into theauth loginandTMEET_AGENTenvironment variables respectively, no need to ask the user.TMEER_MODEL
| Format | Example |
|---|---|
| With time zone (with seconds) | |
| With time zone (without seconds) | |
Note: Date-only format (e.g.) is not supported, must include time and time zone information.2026-03-12
Time logic check: If the end time provided by the user ≤ start time (e.g. "4 o'clock to 3 o'clock"), do not infer the user's intention by yourself, you must first confirm with the user whether it is cross-day or a typo before executing the command.
tmeet
├── auth
│ ├── login # OAuth authorized login
│ ├── logout # Log out and clear credentials
│ └── status # View current login status and Token validity
├── meeting
│ ├── create # Create meeting (supports normal/recurring)
│ ├── update # Update meeting information
│ ├── cancel # Cancel meeting
│ ├── get # Get meeting details
│ ├── list # Get meeting list (in progress/upcoming)
│ ├── list-ended # Get list of ended meetings
│ └── invitees-list # Get list of meeting invitees
├── record
│ ├── list # Query recording list
│ ├── address # Get recording file download address
│ ├── smart-minutes # Get smart minutes
│ ├── transcript-get # Get transcription details (paged)
│ ├── transcript-paragraphs # Get transcription paragraph list
│ └── transcript-search # Search transcription content
└── report
├── participants # Get participant list
└── waiting-room-log # Get waiting room member listreferences/tmeet-auth.mdreferences/tmeet-meeting.mdreferences/tmeet-record.mdreferences/tmeet-report.md| Command | Risk Description |
|---|---|
| Cancel meeting, unrecoverable |
| Modify meeting information (time, topic, etc.), affecting all participants |
| Clear local login credentials |
meeting_codemeeting_id| Error Phenomenon | Cause | Solution |
|---|---|---|
| Not logged in | Execute |
| Invalid time format (e.g. missing time zone) | Use format like |
| Missing required parameter | Supplement the corresponding required parameter |
| Already logged in, repeated login execution | Use directly, or execute logout first then login |