Agent Skills

Drop-in skills that teach Claude and other coding agents how to build on MeetStream, so they stop guessing at endpoints.

View as Markdown

A skill is a Markdown file with instructions an agent loads on demand. Ours encode the MeetStream API surface, the bot lifecycle, and the gotchas that usually cost people an afternoon, so an agent writes code that works on the first try instead of hallucinating endpoints.

Skills pair with the MeetStream MCP server. The MCP server lets an agent do things against the API. Skills teach it how and when to do them. Use both together.

Install the plugin (Claude Code)

All skills ship in one plugin marketplace.

$/plugin marketplace add meetstream-ai/claude-plugin
$/plugin install meetstream

Available skills

SkillWhat it is for
calendar-automationBuild Google Calendar-driven meeting automation on MeetStream , connect a Google Calendar once and a bot auto-joins every upcoming.
getting-startedFirst-time setup for MeetStream , guides a brand-new user through account signup, API key creation, environment configuration, and a.
meetstreamCore MeetStream API reference, lifecycle, decision tree, and live-verified endpoint catalog. Auto-activate on any mention of MeetStream.
notetakerBuild a complete MeetStream-powered AI meeting notetaker , bot joins, records, transcribes, generates an AI summary, and emails it to the.
sales-coachBuild a real-time AI sales coaching tool on MeetStream , live transcription streams to a server that detects objections, talk-time.
test-botSend a single test bot to a live meeting and stream every webhook event to the terminal in real time. Used to validate end-to-end.
verify-accountVerify a MeetStream account’s configuration before building. Checks API key validity, which transcription providers are configured.

Every file above is plain Markdown served over HTTPS. Any agent can fetch one directly, no install required:

$curl https://raw.githubusercontent.com/meetstream-ai/claude-plugin/main/skills/meetstream/SKILL.md

Machine-readable discovery

Agents can enumerate everything MeetStream offers without scraping these docs.

EndpointWhat it returns
/.well-known/agent-skills/index.jsonEvery skill with its description and raw URL
/.well-known/mcp.jsonMCP server discovery, remote and local
/llms.txtStructured index of the whole site
/llms-full.txtFull text of the key pages in one file
docs.meetstream.ai/llms.txtStructured index of these docs

Reading these docs as Markdown

Every page here is available as clean Markdown for agents.

  • Append .md to any page URL, for example /guides/get-started/create-your-first-bot.md
  • Append /llms.txt to any section URL for a section-scoped index
  • Connect to the read-only docs search server at https://docs.meetstream.ai/_mcp/server