> ## Documentation Index
> Fetch the complete documentation index at: https://docs.magicmealkits.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Skills

> Install the Magic Meal Kits skills and drive your deployment from any agent.

**MMK Skills** are ready-made automation commands that run on top of the
[`mmk` CLI](/cli/overview). Install them into your coding agent and you get slash
commands like `/mmk-notion` or `/mmk-paymint-send` that operate against *your* Magic Meal
Kits deployment — no glue code to write.

They're published in the open-source repo
[**magic-meal-kits/mmk-skills**](https://github.com/magic-meal-kits/mmk-skills) and work
with **Claude Code, Gemini CLI, OpenCode, Codex, Cursor, and 38+ other agents**.

<Note>
  The skills are in **beta** and evolve quickly. The repo is the source of truth for the
  full, current catalog.
</Note>

<Info>
  **Prerequisite:** install and connect the CLI first — see [CLI](/cli/overview)
  (`npm install -g @magic-meal-kits/cli@beta`, then `mmk config set server …` and
  `mmk auth login`). The skills call the CLI under the hood.
</Info>

## Install the skills

Pick the command for your agent:

<CodeGroup>
  ```bash Claude Code / OpenCode / Codex / Cursor theme={null}
  npx skills add https://github.com/magic-meal-kits/mmk-skills
  ```

  ```bash Gemini CLI theme={null}
  gemini extensions install https://github.com/magic-meal-kits/mmk-skills
  ```

  ```bash Claude Code plugin marketplace theme={null}
  /plugin marketplace add magic-meal-kits/mmk-skills
  ```
</CodeGroup>

<Tip>
  You don't have to install everything. The repo also lets you add skills **by service**
  or a **single sub-command** — see the README for the per-skill install paths.
</Tip>

## Use the skills

Once installed, type `/` in your agent to see the MMK commands, then run one:

```text theme={null}
/mmk-notion            # work with Notion pages, databases, comments…
/mmk-paymint-send      # send a Paymint payment request
/mmk-youtube-channel-summary   # a multi-step recipe
```

The agent reads the skill, calls the CLI against your deployment, and reports back.

## Skills by service

A summary of what's available. See the
[repo](https://github.com/magic-meal-kits/mmk-skills) for the full command list.

| Service     | \~Commands | Examples                                                                                |
| ----------- | ---------- | --------------------------------------------------------------------------------------- |
| **Notion**  | \~46       | `mmk-notion-page`, `mmk-notion-database`, `mmk-notion-comment`, `mmk-notion-meeting`    |
| **Paymint** | \~7        | `mmk-paymint-send`, `mmk-paymint-status`, `mmk-paymint-cancel`, `mmk-paymint-bulk-send` |
| **Plaud**   | \~25       | Audio recording / note / transcript management                                          |
| **Threads** | \~3        | Collect and search Threads posts                                                        |
| **YouTube** | \~3        | Metadata and transcript extraction                                                      |
| **Recipes** | multi-step | `mmk-notion-onboard`, `mmk-paymint-notion-invoice`, `mmk-youtube-channel-summary`       |

<Card title="Full catalog on GitHub" icon="github" href="https://github.com/magic-meal-kits/mmk-skills">
  Browse every skill, its parameters, and the per-service install commands.
</Card>
