---
title: "Nutrient Document Authoring skill for AI coding agents"
canonical_url: "https://www.nutrient.io/guides/document-authoring/agent-skill/"
md_url: "https://www.nutrient.io/guides/document-authoring/agent-skill.md"
last_updated: "2026-06-11T19:04:32.867Z"
description: "Install the Nutrient Document Authoring skill so Claude Code, Codex, and other AI coding agents can build with Nutrient Document Authoring using up-to-date knowledge."
---

# Agent skill

The Nutrient Document Authoring skill gives AI coding agents — such as Claude Code, Codex, and Gemini CLI — up-to-date knowledge of Nutrient Document Authoring. 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/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/nutrient-skills
/plugin install nutrient-sdk-dev@nutrient-skills

```

The Nutrient Document Authoring skill then loads automatically in all future sessions.

## Codex

Add the marketplace from your shell:

```

codex plugin marketplace add PSPDFKit/nutrient-skills

```

Then run `/plugins` in Codex and install the `nutrient-sdk-dev` plugin.

## Gemini CLI

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

```

gemini skills install https://github.com/PSPDFKit/nutrient-skills.git --path plugins/nutrient-sdk-dev/skills/nutrient-document-authoring

```

## 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/nutrient-skills --skill nutrient-document-authoring

```
---

## Related pages

- [Document Authoring SDK](/guides/document-authoring.md)
- [Changelog for Document Authoring SDK](/guides/document-authoring/changelog.md)
- [Enhancing document authoring with CSP guidelines](/guides/document-authoring/content-security-policy-and-firewall-rules.md)
- [Use copy/paste and HTML interoperability](/guides/document-authoring/copy-paste-and-html-interoperability.md)
- [Customize actions and the toolbar](/guides/document-authoring/customize-actions-and-toolbar.md)
- [Get started with Document Authoring guides](/guides/document-authoring/intro.md)
- [Use events and integration APIs](/guides/document-authoring/events-and-integration.md)
- [How to self-host Document Authoring assets](/guides/document-authoring/self-hosting-assets.md)

