Loading...
Loading...
Feishu video conferencing and Minutes operation guide. It supports searching historical meeting records, obtaining meeting minutes and verbatim transcripts, and viewing Minutes information. It is used when users request "search meetings", "meeting records", "meeting minutes", "verbatim transcript", "Minutes", "meeting", "vc search", "minutes", "view recent meetings". It is also applicable to scenarios where users want to learn the content of a specific meeting, obtain meeting summaries, download meeting verbatim transcripts, etc.
npx skill4agent add riba2534/feishu-cli feishu-cli-vcfeishu-cli: If you have not installed it yet, please go to riba2534/feishu-cli to get the installation method.
FEISHU_APP_IDFEISHU_APP_SECRET~/.feishu-cli/config.yamlvc:room:readonlyvc:meeting:readonlyminutes:minutes:readonlyfeishu-cli auth statusfeishu-cli vc search [options]| Parameter | Type | Description |
|---|---|---|
| string | Start time (Unix timestamp in seconds) |
| string | End time (Unix timestamp in seconds) |
| string | Exact match of meeting number |
| int | Meeting status (1=in progress, 2=ended) |
| int | Number of items per page (default 20) |
| string | Pagination token (returned from previous page) |
| string | Output in JSON format |
--meeting-id--minute-tokenfeishu-cli vc notes [options]| Parameter | Type | Description |
|---|---|---|
| string | Obtain minutes by meeting ID (mutually exclusive with |
| string | Obtain minutes by Minutes token (mutually exclusive with |
| string | Output in JSON format |
feishu-cli minutes get <minute_token> [options]| Parameter | Type | Description |
|---|---|---|
| string | Minutes token (required, positional parameter) |
| string | Output in JSON format |
# Search for meetings in the last week (assuming current timestamp is 1711584000)
feishu-cli vc search --start 1710979200 --end 1711584000
# Search for ended meetings
feishu-cli vc search --meeting-status 2
# Exact search by meeting number
feishu-cli vc search --meeting-no "123456789"
# Get more meeting records with pagination
feishu-cli vc search --page-size 50
# Get meeting minutes by meeting ID
feishu-cli vc notes --meeting-id "6911xxxxx"
# Get minutes by Minutes token
feishu-cli vc notes --minute-token "obcnxxxxx"
# Get basic Minutes information
feishu-cli minutes get obcnxxxxx
# Output in JSON format (easy for program parsing)
feishu-cli vc search --meeting-status 2 -o json
feishu-cli minutes get obcnxxxxx -o json# 1. Search for meetings within the time range
feishu-cli vc search --start 1710979200 --end 1711584000 -o json
# → Get the meeting_id of the target meeting
# 2. Get meeting minutes
feishu-cli vc notes --meeting-id "<meeting_id>"
# → Output meeting summary and verbatim transcript
# 3. If you have Minutes token, you can also view Minutes details
feishu-cli minutes get <minute_token>| Function | Required Permission |
|---|---|
| Search meeting records | |
| Meeting room information | |
| Get Minutes information | |
--start--enddate +%svc notesvc searchminutes gethttps://xxx.feishu.cn/minutes/<minute_token>vc:meeting:readonlyminutes:minutes:readonly