cc-plugins
1.1.0
dotnet tool install --global cc-plugins --version 1.1.0
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest
dotnet tool install --local cc-plugins --version 1.1.0
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=cc-plugins&version=1.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
nuke :add-package cc-plugins --version 1.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
cc-plugins
CLI tool for packaging, validating, and publishing Claude Code plugins.
Installation
dotnet tool install -g cc-plugins
Usage
List plugins in a directory
cc-plugins list ./plugins
cc-plugins list ./plugins --json
Validate a plugin
cc-plugins validate ./my-plugin
Package a plugin
cc-plugins pack ./my-plugin
cc-plugins pack ./my-plugin -o ./dist
Package all plugins in a directory
cc-plugins pack-all ./plugins -o ./dist
Bump plugin version
cc-plugins version ./my-plugin --bump patch
cc-plugins version ./my-plugin --bump minor
cc-plugins version ./my-plugin --bump major
Publish a plugin to marketplace
cc-plugins publish ./my-plugin
cc-plugins publish ./my-plugin.plugin --url https://marketplace.example.com
Plugin Structure
A valid Claude Code plugin has this structure:
my-plugin/
├── .claude-plugin/
│ └── plugin.json # Required: Plugin manifest
├── commands/
│ └── my-command.md # Slash commands
├── skills/
│ └── my-skill/
│ └── SKILL.md # Skills
└── agents/
└── my-agent.md # Agents
plugin.json
{
"name": "my-plugin",
"owner": "my-username",
"version": "1.0.0",
"description": "My awesome plugin",
"author": {
"name": "Your Name"
},
"keywords": ["example", "demo"]
}
License
MIT
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.1.0 | 159 | 12/14/2025 |