💼 Teams会議Pipeline
Teams会議の議事録作成を自動化する
📺 まず動画で見る(YouTube)
▶ 【自動化】AIガチ勢の最新活用術6選がこれ1本で丸分かり!【ClaudeCode・AIエージェント・AI経営・Skills・MCP】 ↗
※ jpskill.com 編集部が参考用に選んだ動画です。動画の内容と Skill の挙動は厳密には一致しないことがあります。
📜 元の英語説明(参考)
Operate the Teams meeting summary pipeline via Hermes CLI — summarize meetings, inspect pipeline status, replay jobs, manage Microsoft Graph subscriptions.
🇯🇵 日本人クリエイター向け解説
Teams会議の議事録作成を自動化する
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-17
- 取得日時
- 2026-05-17
- 同梱ファイル
- 1
💬 こう話しかけるだけ — サンプルプロンプト
- › Teams Meeting Pipeline で、私のビジネスを分析して改善案を3つ提案して
- › Teams Meeting Pipeline を使って、来週の会議用の資料を作って
- › Teams Meeting Pipeline で、現状の課題を整理してアクションプランに落として
これをClaude Code に貼るだけで、このSkillが自動発動します。
📖 Claude が読む原文 SKILL.md(中身を展開)
この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。
Teams Meeting Pipeline
Use this skill whenever the user asks about Microsoft Teams meeting summaries, transcripts, recordings, action items, Graph subscriptions, or any operational question about the Teams meeting pipeline. Works in any language — the triggers below are examples, not an exhaustive list.
Everything operator-facing is a hermes teams-pipeline subcommand run via the terminal tool. There are no new model tools for this pipeline — the CLI is the surface.
When to use this skill
The user is asking to:
- summarize a Teams meeting / extract action items / pull meeting notes
- check pipeline status, inspect a stored meeting job, or see recent meetings
- replay / re-run a stored job that failed or needs a fresh summary
- validate Microsoft Graph setup after changing env or config
- troubleshoot "meeting summary never arrived" or "no new meetings are ingesting"
- manage Graph webhook subscriptions (create, renew, delete, inspect)
- set up automated subscription renewal (see pitfall below)
Multilingual trigger examples (not exhaustive):
- English: "summarize the Teams meeting", "pipeline status", "replay job X"
- Turkish: "Teams meeting özetle", "action item çıkar", "toplantı notu", "pipeline durumu", "replay job"
Prerequisites
Before using the pipeline, verify these are set in ~/.hermes/.env:
MSGRAPH_TENANT_ID=...
MSGRAPH_CLIENT_ID=...
MSGRAPH_CLIENT_SECRET=...
If any are missing, direct the user to the Azure app registration guide at /docs/guides/microsoft-graph-app-registration — they need an Azure AD app registration with admin-consented Graph application permissions before the pipeline will work.
Command reference
Status and inspection (start here)
hermes teams-pipeline validate # config snapshot — run first after any change
hermes teams-pipeline token-health # Graph token status
hermes teams-pipeline token-health --force-refresh # force a fresh token acquisition
hermes teams-pipeline list # recent meeting jobs
hermes teams-pipeline list --status failed # only failed jobs
hermes teams-pipeline show <job-id> # full detail of one job
hermes teams-pipeline subscriptions # current Graph webhook subscriptions
Re-running / debugging
hermes teams-pipeline run <job-id> # replay a stored job (re-summarize, re-deliver)
hermes teams-pipeline fetch --meeting-id <id> # dry-run: resolve meeting + transcript without persisting
hermes teams-pipeline fetch --join-web-url "<url>" # dry-run by join URL
Subscription management
hermes teams-pipeline subscribe \
--resource communications/onlineMeetings/getAllTranscripts \
--notification-url https://<your-public-host>/msgraph/webhook \
--client-state "$MSGRAPH_WEBHOOK_CLIENT_STATE"
hermes teams-pipeline renew-subscription <sub-id> --expiration <iso-8601>
hermes teams-pipeline delete-subscription <sub-id>
hermes teams-pipeline maintain-subscriptions # renew near-expiry ones
hermes teams-pipeline maintain-subscriptions --dry-run # show what would be renewed
Decision tree for common asks
- User asks "why didn't I get a summary for today's meeting?" → start with
list --status failed, thenshow <job-id>on the relevant row. If the job doesn't exist at all, checksubscriptions— the webhook may have expired (see pitfall below). - User asks "is setup working?" →
validate, thentoken-health, thensubscriptions. If all three pass, request a test meeting and checklistfor a fresh row. - User asks "re-run summary for meeting X" →
listto find the job ID,run <job-id>to replay. If it fails again,show <job-id>to inspect the error andfetch --meeting-idto dry-run the artifact resolution. - User asks "add meeting X to the pipeline" → usually you don't — the pipeline is subscription-driven, not per-meeting. If they want a specific past meeting summarized, use
fetchto pull transcript +runafter a job is created.
Critical pitfall: Graph subscriptions expire in 72 hours
Microsoft Graph caps webhook subscriptions at 72 hours and will not auto-renew them. If maintain-subscriptions is not scheduled, meeting notifications silently stop arriving 3 days after any manual subscription creation.
When the user reports "the pipeline worked yesterday but nothing is arriving today":
- Run
hermes teams-pipeline subscriptions— if it's empty or all entries showexpirationDateTimein the past, that's the cause. - Recreate with
subscribeas shown above. - Set up automated renewal immediately via
hermes cron add, a systemd timer, or plain crontab. The operator runbook at/docs/guides/operate-teams-meeting-pipeline#automating-subscription-renewal-required-for-productionhas all three options. 12-hour interval is safe (6x headroom against the 72h limit).
Other pitfalls
- Transcript not available yet. Teams takes some time after a meeting ends to generate the transcript artifact.
fetch --meeting-idon a just-ended meeting may return empty. Wait 2-5 minutes and retry, or let the Graph webhook drive ingestion naturally. - Delivery mode mismatch. If summaries are produced (
listshows success) but nothing lands in Teams, checkplatforms.teams.extra.delivery_modeand the matching target config (incoming_webhook_urlORchat_idORteam_id+channel_id). The writer reads these from config.yaml orTEAMS_*env vars. - Graph app permissions. A token acquires cleanly (
token-healthpasses) but Graph API calls return 401/403 when permissions were added but admin consent wasn't re-granted. Have the user revisit the app registration in the Azure portal and click "Grant admin consent" again.
Related docs
Point the user to these when they need more depth than this skill covers:
- Azure app registration walkthrough:
/docs/guides/microsoft-graph-app-registration - Full pipeline setup:
/docs/user-guide/messaging/teams-meetings - Operator runbook (renewal automation, troubleshooting, go-live checklist):
/docs/guides/operate-teams-meeting-pipeline - Webhook listener setup:
/docs/user-guide/messaging/msgraph-webhook