---
title: "Nutrient .NET SDK skill for AI coding agents"
canonical_url: "https://www.nutrient.io/guides/dotnet/agent-skill/"
md_url: "https://www.nutrient.io/guides/dotnet/agent-skill.md"
last_updated: "2026-06-11T20:56:00.420Z"
description: "Install the Nutrient .NET SDK skill so Claude Code, Codex, and other AI coding agents can build with Nutrient .NET SDK using up-to-date knowledge."
---

# Agent skill

The Nutrient.NET SDK skill gives AI coding agents — such as Claude Code, Codex, and Gemini CLI — up-to-date knowledge of Nutrient.NET 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/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.NET SDK 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-dotnet-server-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/nutrient-skills --skill nutrient-dotnet-server-sdk

```
---

## Related pages

- [ASP.NET PDF library](/guides/dotnet/aspnet.md)
- [Best practices for PDF processing in .NET](/guides/dotnet/best-practices.md)
- [C# and VB.NET code samples](/guides/dotnet/samples.md)
- [.NET core PDF library](/guides/dotnet/core.md)
- [Delphi PDF library](/guides/dotnet/delphi.md)
- [Explore interactive PDF SDK demos and features](/guides/dotnet/demo.md)
- [Download Nutrient .NET SDK (formerly GdPicture.NET)](/guides/dotnet/downloads.md)
- [C#.NET PDF library](/guides/dotnet.md)
- [Nutrient .NET SDK guides — Add advanced PDF features to your .NET applications](/guides/dotnet/intro.md)
- [C# Office library](/guides/dotnet/office.md)
- [Changelog for .NET](/guides/dotnet/changelog.md)
- [Example Project](/guides/dotnet/getting-started/catalog-example.md)
- [C# TIFF library](/guides/dotnet/tiff.md)
- [Troubleshooting](/guides/dotnet/troubleshoot.md)
- [VB.NET PDF library](/guides/dotnet/vbnet.md)
- [WinForms PDF library](/guides/dotnet/winforms.md)
- [WPF PDF and image library](/guides/dotnet/wpf.md)

