Agent skill · Workflow & Productivity

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.

butterbase.ai2,831★ · +400/wk · 1 repos on radarProfile →
claude-codeMIT
Install
npx skills add butterbase-ai/butterbase-skills --skill meetings --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 6 KB
Bundled scripts: none
Path: skills/meetings/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 532

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. 1. When to Use
  2. 2. The Four SDK Methods
  3. 3. Typical Flow
  4. 4. Webhook Handler Skeleton
  5. 5. Cost-Aware Design
  6. 6. Vendor-Neutral Note
  7. 7. What This Skill Does NOT Cover
More from butterbase-skills
All skills →
About this skill
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.

Keep going