用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/vellum-ai/meeting-bot --skill meeting-bot命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | meeting-bot |
| description | Send a note-taking bot into a meeting via Recall.ai; only when the user explicitly asks. |
| metadata | {"emoji":"🎙️","vellum":{"category":"voice","display-name":"Meeting Bot"}} |
Use this skill when the user explicitly asks the assistant to send a bot into a meeting to take notes or transcribe (e.g. "join this call", "have the bot take notes on this Zoom", usually with a meeting URL in context). The bot appears as a visible participant, so never do it proactively.
The Recall API key must be stored in the credential store. If joining fails with a 401 error, load the meeting-bot-setup skill to guide the user through providing their key.
Trigger on clear, explicit user requests only, paired with a meeting URL:
Do NOT trigger on:
Run the join script with the meeting URL and the current conversation ID. IMPORTANT: invoke it with a 3-minute timeout (180000 ms, longer than the default). The script waits for the bot to actually enter the call before reporting the outcome, and admission can take up to 2 minutes; a shorter timeout kills the script mid-wait and hides the result.
bun skills/meeting-bot/scripts/join.ts --meeting-url "https://meet.google.com/abc-defg-hij" --conversation-id "<current conversation id>"
The script reads the plugin's resolved config, resolves the Recall API key from the credential store, creates the bot, and registers the session. Recall.ai handles joining the call and begins streaming live transcript and participant events to the plugin's realtime receiver.
After creating the bot, the script confirms the bot actually enters the call (polling Recall for the recall provider, or the Vellum Runtime's status endpoint for the vellum provider), so a silent join failure (invalid or expired URL, locked meeting, admission denied, bot spawn failure) is reported with its reason instead of looking like success. Only treat the join as successful when the script says the bot is in the call. If the bot is still waiting to be admitted when the wait window closes, the script reports that it was created but has not entered the call yet.
The script outputs the bot id. Keep it to leave later.
Run the leave script when the user says the bot can go:
bun skills/meeting-bot/scripts/leave.ts --bot-id "<id>"
When only one bot is active, --bot-id can be omitted:
bun skills/meeting-bot/scripts/leave.ts
Recall.ai supports Google Meet, Zoom, Microsoft Teams, Webex, and more. Any meeting URL Recall accepts works here.