MIT 授權的騰訊會議 CLI(tmeet),透過 `npx skills add` 以 Agent 技能形式安裝,涵蓋會議、錄影、紀要與參會報告。README 未提及 DeepSeek Harness,DSH 整合由技能安裝路徑推斷。
DSH 整合
相容
自動推斷
安全稽核
未稽核
最後核實
2026-08-21
授權條款
作者未說明
01它能幫你完成什麼?
Manage Tencent Meeting schedules from an AI agent conversation
JSON results for creating, querying, updating, searching and cancelling meetings (including recurring ones) and adding/removing/replacing invitees via `tmeet meeting` commands
Developers and team assistants who want meeting scheduling automated inside an agent harness such as DeepSeek Harness
Retrieve meeting recordings, smart minutes and transcripts for an agent to summarize or search
Recording lists, download URLs, smart minutes (zh/en/ja), transcript details/paragraphs and keyword search over transcribed content via `tmeet record` commands
Teams that want agents to fetch and digest meeting content without opening the Tencent Meeting client
Pull participant reports and look up enterprise contacts
Participant lists, waiting-room logs, async participant detail export (xlsx/json with a 2-hour download link), and contact search/lookup by username, email or phone
Meeting organizers and ops staff automating post-meeting reporting workflows
02如何將外掛接入 DeepSeek Harness?
先決條件
- Node.js LTS (includes npm) — the README points users without npm to install Node.js LTS first
- Or Go 1.22+ if building from source (`go build` / `make build`)
- A Tencent Meeting account to complete OAuth2 authorization during `tmeet auth login`
安裝步驟
- 01
Install the CLI (recommended): `npm install -g @tencentcloud/tmeet` — after installation the `tmeet` command is directly usable; alternatively clone the repo and build from source with `go build -ldflags "-X tmeet/cmd.Version=v1.0.0" -o tmeet .` or `make build VERSION=v1.0.0`
$ npm install -g @tencentcloud/tmeet
- 02
Install the agent skill: `npx skills add TencentCloud/tencentmeeting-cli -y -g`
$ npx skills add TencentCloud/tencentmeeting-cli -y -g
- 03
Log in: `tmeet auth login` — opens the authorization URL in the default browser (add `--no-browser` to get the URL only); the CLI polls for the result (5-minute timeout) and saves the encrypted credentials locally
驗證整合成功
作者未說明
03DSH 整合程度與能力邊界
Installed as an agent skill via `npx skills add TencentCloud/tencentmeeting-cli -y -g`; the README never mentions DeepSeek Harness/dsh, so DSH usage is inferred from this generic skills install path, not author-stated.
Meeting lifecycle management
`tmeet meeting` flags: subject, ISO 8601 start/end, recurrence options, invitee open_id lists→created / updated / cancelled meetings (normal and recurring), invitee add / remove / replace, meeting search and lists
creates, modifies and cancels real meetings on the Tencent Meeting platform and sends invitations to membersRecording, minutes & transcript access
meeting ID / meeting code / time range / record file ID→recording lists, download addresses, smart minutes, transcript details/paragraphs and transcript keyword search
`record permission-apply-commit` is a write operation that formally submits a recording-permission approval request after user confirmationOAuth2 device-code login with encrypted local credentials
`tmeet auth login` (optionally `--no-browser`)→login status, AES-256-GCM encrypted credentials stored locally (config under `~/.tmeet/`), plaintext never written to disk
opens the system browser for authorization and writes encrypted credential files to the local config directoryTroubleshooting export & feedback
optional time range, `--upload`, feedback category/intent→local logs packaged as a zip at `~/tmeet_ts_{datetime}.zip`; feedback reported to the server
writes a zip file locally; `--upload` sends logs to the server and `tshoot feedback` reports issues to the server (login required)
04適合誰?何時不該用?
適合
- Developers and team assistants who want meeting scheduling automated inside an agent harness such as DeepSeek Harness
- Teams that want agents to fetch and digest meeting content without opening the Tencent Meeting client
- Meeting organizers and ops staff automating post-meeting reporting workflows
不適合
- Once authorized, the AI agent gains your Tencent Meeting data access (user info, meeting/recording/minutes management and file export) and acts under your identity within the authorized scope; the README warns model hallucination or prompt injection may cause data leakage or unexpected operations — run `tmeet auth logout` immediately if you suspect misuse.
- All operations require network access to the Tencent Meeting Open Platform plus an OAuth2 device-code login; authorization polling times out after 5 minutes, and some features (log upload, feedback) need a logged-in session.
05相容性、維護與安全提醒
- Once authorized, the AI agent gains your Tencent Meeting data access (user info, meeting/recording/minutes management and file export) and acts under your identity within the authorized scope; the README warns model hallucination or prompt injection may cause data leakage or unexpected operations — run `tmeet auth logout` immediately if you suspect misuse.
- All operations require network access to the Tencent Meeting Open Platform plus an OAuth2 device-code login; authorization polling times out after 5 minutes, and some features (log upload, feedback) need a logged-in session.
- Since v1.0.5 the legacy pagination flags (`--page` / `--pos` / `--size`) are deprecated and may be removed in future versions; use `--page-token` + `--page-size` instead.
MIT (per README) · actively maintained (latest release v1.0.15, 2026-08-07)
06常見問題
tencentmeeting-cli 如何接入 DeepSeek Harness?
先安裝 CLI(`npm install -g @tencentcloud/tmeet`),再執行 `npx skills add TencentCloud/tencentmeeting-cli -y -g` 註冊 Agent 技能。README 並未指名 DeepSeek Harness——它以通用 Agent 技能形式散布,因此 DSH 接入是從這條安裝路徑推斷出來的,並非官方文件說明。
它是原生 dsh 外掛還是 MCP 服務?
兩者皆非。它是一個獨立的 Go CLI(`tmeet`)加上一個 Agent 技能,由 Agent 呼叫 CLI 指令完成任務。認證採用 `tmeet auth login` 的 OAuth2 裝置碼流程,不需要 API key,也不是 MCP 端點。
需要哪些前置條件?
推薦方式需要 Node.js LTS(內含 npm);也可以從原始碼建置,要求 Go 1.22+。另外需要一個騰訊會議帳號,用於在瀏覽器中完成 OAuth2 掃碼授權——CLI 會輪詢授權結果,逾時時間為 5 分鐘。
憑證和資料存放在哪裡?
憑證使用 AES-256-GCM 加密後儲存在本機(設定目錄為 `~/.tmeet/`),明文不寫入磁碟。所有會議、錄影操作都透過網路呼叫騰訊會議開放平台,並在你的授權範圍內執行。執行 `tmeet auth logout` 會刪除本機憑證。
有哪些使用限制?
自 v1.0.5 起,舊的分頁參數(`--page` / `--pos` / `--size`)已棄用,未來可能移除,請改用 `--page-token` + `--page-size`。此外,完成授權後 Agent 即可管理你的會議並匯出檔案,README 明確提示了模型幻覺與提示詞注入風險,若發現異常請立即登出。
07相關的 DSH 工作流程
dsh-auto-review
作者 perrylink
第二模型 AI 自動評審:只讀評審子智慧體對審批請求返回結構化允許或拒絕結論,預設關閉、全程可審計。
dsh-permission-rules
作者 perrylink
Claude Code 風格宣告式許可權規則:按序 allow/deny/ask 匹配工具、引數與工作區路徑
dsh-clawrouter
作者 blockrunai
DSH 安全閘道器:危險工具呼叫先由更強模型審查,另含視覺能力與 67 種模型按次計費
dsh-agy
作者 chaos-03x
Google Antigravity(agy)OAuth 認證與模型訪問外掛:多賬戶池、429 輪換、裝置指紋與 CLI 或 Web 登入。
08資料與來源
npx skills add TencentCloud/tencentmeeting-cli -y -g
腾讯会议命令行工具(CLI),基于腾讯会议开放平台 OAuth2 授权,支持会议管理、录制管理、参会报告等功能。
此頁面根據專案公開文件、儲存庫中繼資料與 DSH Plugins 的結構化解析所產生;最後核實於 2026-08-21。發現錯誤?提交更正。
