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

# Agent Skills

> Install Money Dev Kit skills for coding agents

Money Dev Kit agent skills teach coding agents how to add Lightning payments to your app. Use them to set up checkout, connect the MCP server, build L402 paid APIs, and work with the Money Dev Kit agent wallet.

<Info>
  Skills give your agent reusable Money Dev Kit implementation guidance. For live account and app operations, use the [Money Dev Kit MCP server](/nextjs#install-with-ai-coding-tools) alongside these skills.
</Info>

## Install

Install the Money Dev Kit skills with the [Skills CLI](https://vercel.com/docs/agent-resources/skills):

```bash theme={null}
npx skills add moneydevkit/agent-skills
```

To install one skill from the collection:

```bash theme={null}
npx skills add moneydevkit/agent-skills --skill mdk-nextjs-checkout
```

To list the available skills before installing:

```bash theme={null}
npx skills add moneydevkit/agent-skills --list
```

## Available skills

| Skill                 | Use it for                                                                |
| --------------------- | ------------------------------------------------------------------------- |
| `mdk-nextjs-checkout` | Add `@moneydevkit/nextjs` checkout to a Next.js App Router app            |
| `mdk-replit-checkout` | Add `@moneydevkit/replit` checkout to a Replit Vite + React + Express app |
| `mdk-l402-api`        | Protect API routes with L402 pay-per-call payments                        |
| `mdk-mcp`             | Install or choose the Money Dev Kit MCP endpoint                          |
| `mdk-agent-wallet`    | Use `@moneydevkit/agent-wallet` for agent Lightning payments              |

## Example prompts

<Tabs>
  <Tab title="Next.js checkout">
    ```text theme={null}
    Use $mdk-nextjs-checkout to add Money Dev Kit checkout to this Next.js App Router app. Use MCP to create or connect the Money Dev Kit app if available.
    ```
  </Tab>

  <Tab title="Replit checkout">
    ```text theme={null}
    Use $mdk-replit-checkout to add Money Dev Kit checkout to this Replit Vite, React, and Express app. Follow the Replit docs exactly.
    ```
  </Tab>

  <Tab title="Paid API">
    ```text theme={null}
    Use $mdk-l402-api to protect this API route with Money Dev Kit L402 payments and add agent-readable usage docs.
    ```
  </Tab>

  <Tab title="Agent wallet">
    ```text theme={null}
    Use $mdk-agent-wallet to initialize an agent wallet, check its balance, and pay this L402 endpoint.
    ```
  </Tab>
</Tabs>

## Update

Refresh installed skills with:

```bash theme={null}
npx skills update
```

Each Money Dev Kit skill includes a version, review date, and canonical docs link. If your agent is unsure about an API or package behavior, tell it to compare the skill with the latest docs index at [llms.txt](https://docs.moneydevkit.com/llms.txt).
