Inkbox

> # Documentation index
> Fetch the complete documentation index at: https://inkbox.ai/sitemap.xml
> Use this file to discover all available pages before exploring further.

---

# Claude Code plugin
description: Install Inkbox as a plugin in Claude Code to load every Inkbox skill in one step

---


# Claude Code plugin

The Inkbox plugin for [Claude Code](https://claude.com/claude-code) bundles every Inkbox [skill](/docs/skills/overview) (TypeScript SDK, Python SDK, CLI, agent self-signup, and OpenClaw) so your agent can use the full Inkbox surface immediately after install.

[View the source →](https://github.com/inkbox-ai/inkbox/tree/main/.claude-plugin)

## Prerequisites

- [Claude Code](https://claude.com/claude-code) installed
- An [Inkbox API key](https://inkbox.ai/console/), exported as `INKBOX_API_KEY`
- The SDK or CLI installed in the project you're working on (see [Skills overview](/docs/skills/overview))

## Install

Inside Claude Code, add the Inkbox marketplace, install the plugin, and reload:

```
/plugin marketplace add inkbox-ai/inkbox   # <github-owner>/<repo>
/plugin install inkbox@inkbox              # <plugin-name>@<marketplace-name>
/reload-plugins
```

That's it. Claude Code now knows how to use every Inkbox feature.

## Manual install

If you'd rather skip the marketplace, clone the repo and copy the skills into your Claude Code skills directory:

```bash
git clone https://github.com/inkbox-ai/inkbox
cp -r inkbox/skills/* ~/.claude/skills/
```

## What gets installed

The plugin bundles every skill listed on the [Skills overview](/docs/skills/overview):

| Skill | What it teaches your agent |
|---|---|
| [TypeScript SDK](/docs/skills/typescript) | `@inkbox/sdk`: identities, email, phone, text/SMS, contacts, notes, contact rules, vault, TOTP, webhooks |
| [Python SDK](/docs/skills/python) | `inkbox`: same surface as TypeScript, in Python |
| [CLI](/docs/skills/cli) | `@inkbox/cli`: shell-native workflows |
| [Agent self-signup](/docs/skills/agent-self-signup) | End-to-end register / verify / resend / status |
| [OpenClaw](/docs/skills/openclaw) | Inkbox capabilities for OpenClaw agents |

## Source layout

The plugin manifest lives at [`.claude-plugin/plugin.json`](https://github.com/inkbox-ai/inkbox/blob/main/.claude-plugin/plugin.json) in the Inkbox repo, with a marketplace entry at [`.claude-plugin/marketplace.json`](https://github.com/inkbox-ai/inkbox/blob/main/.claude-plugin/marketplace.json). The skills it points to live under [`skills/`](https://github.com/inkbox-ai/inkbox/tree/main/skills).
