Back to list
powdream

add-plugin

by powdream

Claude Code plugins to boost your development workflow

0🍴 0📅 Jan 21, 2026

SKILL.md


name: add-plugin description: Guide for adding a new plugin to this marketplace. Use when creating or scaffolding a new plugin.

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

Score

Total Score

60/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon