meetings
Use when building features that join, record, or transcribe Zoom/Meet/Teams/Webex calls — meeting bots, call notetakers, sales-call summarizers, interview transcribers. Covers ctx.ai.meetings.start/get/stop/list, webhook setup, and credit metering.
npx skills add butterbase-ai/butterbase-skills --skill meetings --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Meeting Bots on Butterbase Guide for building features that spawn meeting bots via `ctx.ai.meetings`. Covers the four SDK methods, webhook handling, idempotency, and cost-aware design. --- ## 1. When to Use Reach for this skill when your feature involves any of: - **Meeting notetaker** — bot joins a recurring standup or sales call and stores a transcript. - **Sales call enricher** — join a customer call, wait for `bot.done`, then run an LLM over the transcript to populate a CRM record. - **Interview pipeline** — record and transcribe candidate interviews, then score against a rubric. - **Voice-of-customer transcripts** — capture support or discovery calls; feed chunks into a RAG collection for future search. If you need only audio/video file upload without a live meeting join, use `manage_storage` instead. --- ## 2. The Four SDK Methods | Method | What it does | One-line example | |--------|-------------|-----------------| | `bb.ai.meetings.start(opts)` | Spawns a bot and returns immediately with `status: "joining"` | `const { data: bot } = await bb.ai.meetings.start({ meetingUrl, transcript: true })` | | `bb.ai.meetings.get(id)` | Fetches current status + artifact URLs | `const
- 1. When to Use
- 2. The Four SDK Methods
- 3. Typical Flow
- 4. Webhook Handler Skeleton
- 5. Cost-Aware Design
- 6. Vendor-Neutral Note
- 7. What This Skill Does NOT Cover
What does the meetings skill do?
Use when building features that join, record, or transcribe Zoom/Meet/Teams/Webex calls — meeting bots, call notetakers, sales-call summarizers, interview transcribers. Covers ctx.ai.meetings.start/get/stop/list, webhook setup, and credit metering.
How do I install it?
Run `npx skills add butterbase-ai/butterbase-skills --skill meetings --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From butterbase-ai/butterbase-skills, a repository with 532 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.