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-secure-audit
作者 pensivefei
只读安全合规插件:提示注入检测、中文隐私信息脱敏与本地配置审计报告。
dsh-sandbox-escalation-fix
作者 hakureimonika
Session-aware sandbox escalation compatibility plugin for DeepSeek Harness/DSH第三方模型会话沙箱升级兼容插件
08数据与来源
npx skills add TencentCloud/tencentmeeting-cli -y -g
腾讯会议命令行工具(CLI),基于腾讯会议开放平台 OAuth2 授权,支持会议管理、录制管理、参会报告等功能。
页面基于项目公开文档、仓库元数据和 DSH Plugins 的结构化解析生成;最后核验于 2026-08-21。发现错误?提交更正。
最佳 DeepSeek Harness 插件
从全目录挑出的 12 个值得优先安装的插件,覆盖各个分类。
