> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.meetstream.ai/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.meetstream.ai/_mcp/server.

# Agent Skills

> MeetStream agent skills for Claude Code and other agent clients. Install the plugin marketplace or fetch any SKILL.md directly.

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](/build-with-ai/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.

```bash
/plugin marketplace add meetstream-ai/claude-plugin
/plugin install meetstream
```

## Available skills

| Skill                                                                                                                           | What it is for                                                                                                                              |
| ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- |
| [`calendar-automation`](https://raw.githubusercontent.com/meetstream-ai/claude-plugin/main/skills/calendar-automation/SKILL.md) | Build Google Calendar-driven meeting automation on MeetStream ,  connect a Google Calendar once and a bot auto-joins every upcoming.        |
| [`getting-started`](https://raw.githubusercontent.com/meetstream-ai/claude-plugin/main/skills/getting-started/SKILL.md)         | First-time setup for MeetStream ,  guides a brand-new user through account signup, API key creation, environment configuration, and a.      |
| [`meetstream`](https://raw.githubusercontent.com/meetstream-ai/claude-plugin/main/skills/meetstream/SKILL.md)                   | Core MeetStream API reference, lifecycle, decision tree, and live-verified endpoint catalog. Auto-activate on any mention of MeetStream.    |
| [`notetaker`](https://raw.githubusercontent.com/meetstream-ai/claude-plugin/main/skills/notetaker/SKILL.md)                     | Build a complete MeetStream-powered AI meeting notetaker ,  bot joins, records, transcribes, generates an AI summary, and emails it to the. |
| [`sales-coach`](https://raw.githubusercontent.com/meetstream-ai/claude-plugin/main/skills/sales-coach/SKILL.md)                 | Build a real-time AI sales coaching tool on MeetStream ,  live transcription streams to a server that detects objections, talk-time.        |
| [`test-bot`](https://raw.githubusercontent.com/meetstream-ai/claude-plugin/main/skills/test-bot/SKILL.md)                       | Send 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-account`](https://raw.githubusercontent.com/meetstream-ai/claude-plugin/main/skills/verify-account/SKILL.md)           | Verify 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:

```bash
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.

| Endpoint                                                                                            | What it returns                              |
| --------------------------------------------------------------------------------------------------- | -------------------------------------------- |
| [`/.well-known/agent-skills/index.json`](https://meetstream.ai/.well-known/agent-skills/index.json) | Every skill with its description and raw URL |
| [`/.well-known/mcp.json`](https://meetstream.ai/.well-known/mcp.json)                               | MCP server discovery, remote and local       |
| [`/llms.txt`](https://meetstream.ai/llms.txt)                                                       | Structured index of the whole site           |
| [`/llms-full.txt`](https://meetstream.ai/llms-full.txt)                                             | Full text of the key pages in one file       |
| [`docs.meetstream.ai/llms.txt`](https://docs.meetstream.ai/llms.txt)                                | Structured 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`