---
title: "Nutrient Web SDK skill for AI coding agents"
canonical_url: "https://www.nutrient.io/guides/web/agent-skill/"
md_url: "https://www.nutrient.io/guides/web/agent-skill.md"
last_updated: "2026-07-29T00:00:00.000Z"
description: "Install the Nutrient Web SDK skill so Claude Code, Codex, and other AI coding agents can build with Nutrient Web SDK using up-to-date knowledge."
---

# Agent skill

The Nutrient Web SDK skill gives AI coding agents — such as Claude Code, Codex, and Gemini CLI — up-to-date knowledge of Nutrient Web SDK. With the skill installed, your agent scaffolds integrations, wires up the SDK, and debugs against the real API instead of guessing.

The skill is published in the [`nutrient-skills`](https://github.com/pspdfkit-labs/nutrient-skills) marketplace as part of the `nutrient-sdk-dev` plugin, which bundles a skill for every Nutrient SDK.

## Claude Code

Run the following in Claude Code to add the marketplace and install the plugin:

```

/plugin marketplace add pspdfkit-labs/nutrient-skills
/plugin install nutrient-sdk-dev@nutrient-skills

```

The Nutrient Web SDK skill then loads automatically in all future sessions.

## Codex

Run the following in your shell to add the marketplace and install the plugin:

```

codex plugin marketplace add pspdfkit-labs/nutrient-skills
codex plugin add nutrient-sdk-dev@nutrient-skills

```

## Gemini CLI

Gemini CLI installs an agent skill straight from a git repository:

```

gemini skills install https://github.com/pspdfkit-labs/nutrient-skills.git --path plugins/nutrient-sdk-dev/skills/nutrient-web-sdk

```

## Other agents

The skills CLI also supports Cursor, GitHub Copilot, and [50+ other agents](https://github.com/vercel-labs/skills#supported-agents). Pass `-a <agent>` to target one, or omit it to choose interactively:

```

npx skills add pspdfkit-labs/nutrient-skills --skill nutrient-web-sdk

```

## Related setup options

If you only need a first integration prompt, start with the [AI quick start](https://www.nutrient.io/sdk/web/getting-started.md) on the Web SDK getting started page. It gives your agent copy-paste instructions for choosing the right setup and reading the relevant guides.

For ongoing SDK context in MCP-compatible clients, connect the [Nutrient Web SDK MCP server](https://www.nutrient.io/guides/web/mcp-server.md). It exposes guides, API types, examples, and changelogs as tools. Use the MCP server, this agent skill, or both, depending on what your agent supports.
---

## Related pages

- [JavaScript PDF library](/guides/web.md)
- [Appian PDF viewer](/guides/web/appian.md)
- [JavaScript barcode library: Scan, read, and generate barcodes](/guides/web/barcodes.md)
- [Best practices](/guides/web/best-practice.md)
- [Changelog for Web](/guides/web/changelog.md)
- [Explore interactive JavaScript PDF demos](/guides/web/demo.md)
- [Download our JavaScript library](/guides/web/downloads.md)
- [Developer guides for JavaScript PDF library](/guides/web/intro.md)
- [Knowledge base](/guides/web/kb.md)
- [MCP server](/guides/web/mcp-server.md)
- [Mendix PDF viewer](/guides/web/mendix.md)
- [Contributing to Nutrient projects](/guides/web/miscellaneous/contributing.md)
- [Perform OCR on PDF documents](/guides/web/ocr.md)
- [OutSystems PDF viewer](/guides/web/outsystems.md)
- [Samples](/guides/web/samples.md)
- [Self-host assets in Web SDK](/guides/web/self-host-assets.md)

