ディレクトリに戻る

tencentmeeting-cli

メンテナンス: 活発

tencentcloud/tencentmeeting-cli

テンセント会議(Tencent Meeting)の CLI ツール。オープンプラットフォームの OAuth2 認証を利用し、会議管理、録画管理、参加者レポートなどに対応

インストール方法
$ npm install -g @tencentcloud/tmeet

223

スター

12

フォーク

Go

言語

NOASSERTION

ライセンス

2026-04-07

作成日

2026-08-18

最終プッシュ

MIT ライセンスの Tencent Meeting CLI(tmeet)を `npx skills add` でエージェントスキルとして導入。会議・録画・議事録・参加レポートを OAuth2 経由で操作できます。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

02DeepSeek 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`

インストール手順

  1. 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

  2. 02

    Install the agent skill: `npx skills add TencentCloud/tencentmeeting-cli -y -g`

    $ npx skills add TencentCloud/tencentmeeting-cli -y -g

  3. 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 統合と能力の範囲

DSH 統合互換

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 listscreated / 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 members
  • Recording, minutes & transcript access

    meeting ID / meeting code / time range / record file IDrecording 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 confirmation
  • OAuth2 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 directory
  • Troubleshooting export & feedback

    optional time range, `--upload`, feedback category/intentlocal 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.
2026-04-072026-08-18v1.0.15

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` でエージェントスキルを登録します。README は DeepSeek Harness を明示しておらず、汎用的なエージェントスキルとして配布されているため、DSH での利用はこの導入手順からの推定であり、公式な記載ではありません。

ネイティブの dsh プラグインですか、それとも MCP サーバーですか?

いずれでもありません。単体の Go 製 CLI(`tmeet`)とエージェントスキルで構成され、エージェントが CLI コマンドを呼び出します。認証は `tmeet auth login` による OAuth2 デバイスコード方式で、API キーも MCP エンドポイントも不要です。

事前条件は何が必要ですか?

推奨手順には Node.js LTS(npm 同梱)が必要です。ソースからビルドする場合は Go 1.22+ が要ります。また、ブラウザでの OAuth2 スキャン認証を完了するために Tencent Meeting のアカウントが必要です。CLI は認可結果を 5 分間のタイムアウトでポーリングします。

認証情報やデータはどこに保存されますか?

認証情報は AES-256-GCM で暗号化されローカル(設定ディレクトリ `~/.tmeet/`)に保存され、平文はディスクに書き出されません。会議・録画の操作はすべてネットワーク経由で Tencent Meeting オープンプラットフォームに送信され、あなたの認可範囲内で実行されます。`tmeet auth logout` でローカルの認証情報は削除されます。

利用上の制約はありますか?

v1.0.5 以降、旧ページング引数(`--page` / `--pos` / `--size`)は非推奨で、将来削除される可能性があります。代わりに `--page-token` + `--page-size` を使ってください。また、認可後はエージェントが会議の管理やファイルのエクスポートを行えます。README はモデルのハルシネーションやプロンプトインジェクションのリスクを明記しており、異常が疑われる場合は直ちにログアウトしてください。

08データと出典

  • 自動推定github.com0407d61aa333…

    npx skills add TencentCloud/tencentmeeting-cli -y -g

  • 作者による申告github.com0407d61aa333…

    腾讯会议命令行工具(CLI),基于腾讯会议开放平台 OAuth2 授权,支持会议管理、录制管理、参会报告等功能。

このページは、プロジェクトの公開ドキュメント、リポジトリのメタデータ、および DSH Plugins の構造化解析に基づいて生成されています。最終検証日:2026-08-21。誤りを見つけた場合は、修正を送信してください。

DSH Plugins は DeepSeek Harness プラグインの独立したコミュニティ ディレクトリです。DeepSeek との提携・公認はありません。サードパーティ製プラグインはセキュリティ監査を受けていません。インストール前にソースコードをご確認ください。

DeepSeek Harnessの新着プラグインを毎週お届け。スパムはありません。