smithery.ai

add-plugin

Guide for adding a new plugin to this marketplace. Use when creating or scaffolding a new plugin.

First seen Apr 14, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,632 B
  • docs SUMMARY.md 115 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

Plugin Development Guide

Guide for adding a new plugin to this marketplace.

Directory Structure

plugins/<plugin-name>/
├── .claude-plugin/
│   └── plugin.json      # Required: name, description, version
├── skills/
│   └── <skill-name>/
│       └── SKILL.md     # Skill definition
└── scripts/             # Complex logic as bash scripts
    └── *.sh

plugin.json Required Fields

{
  "name": "plugin-name",
  "description": "Plugin description",
  "version": "0.1.0"
}

SKILL.md Structure

---
name: skill-name
description: Skill description
---

# Skill Instructions

Detailed instructions for what the skill should do.

Register in marketplace.json

Add the new plugin to .claude-plugin/marketplace.json:

{
  "plugins": [
    {
      "name": "new-plugin",
      "source": "./plugins/new-plugin",
      "description": "Plugin description"
    }
  ]
}

Testing

claude --plugin-dir ./plugins/<plugin-name>

Using Complex Scripts

When complex logic is needed:

  1. Create bash scripts in scripts/ directory
  2. Reference script execution in SKILL.md
  3. Only script output goes to context, making it token-efficient

Reference

Read the official documentation for more details.

Official Documentation

https://platform.claude.com/docs/en/agents-and-tools/agent-skills/overview