Creating A Plugin logo

Creating A Plugin

Organization
ed3dai
creating-a-plugin

Use when creating a new Claude Code plugin or setting up plugin structure - provides complete file organization, manifest format, and component definitions for commands, agents, skills, hooks, and MCP servers

Overview

Publishered3dai
Repositoryed3d-plugins
Skill namecreating-a-plugin
Stars
249
Forks
33
Bundled files
Instructions only
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by ed3dai on GitHub. Read the source before you install it.

Installation

Install the Creating A Plugin AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/ed3dai/ed3d-plugins.git /tmp/ed3d-plugins
mkdir -p .claude/skills
cp -r /tmp/ed3d-plugins/plugins/ed3d-extending-claude/skills/creating-a-plugin .claude/skills/creating-a-plugin
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Creating A Plugin in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Creating A Plugin on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Creating A Plugin is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Creating a Plugin

Overview

A Claude Code plugin packages reusable components (commands, agents, skills, hooks, MCP servers) for distribution. Create a plugin when you have components that work across multiple projects.

Don't create a plugin for:

  • Project-specific configurations (use .claude/ in project root)
  • One-off scripts or commands
  • Experimental features still in development

Plugin storage locations:

  • Development: Anywhere during development, installed via file:/// path
  • User-level: ~/.claude/plugins/ (after installation)
  • Project-level: .claude/plugins/ (project-specific installations)

Quick Start Checklist

Minimal viable plugin:

  1. Create directory: my-plugin/
  2. Create .claude-plugin/plugin.json with at minimum:
    json
    {
      "name": "my-plugin"
    }
  3. Add components (commands, agents, skills, hooks, or MCP servers)
  4. Test locally: /plugin install file:///absolute/path/to/my-plugin
  5. Reload: /plugin reload

Directory Structure

my-plugin/
 .claude-plugin/
    plugin.json              # Required: plugin manifest
 commands/                    # Optional: slash commands
    my-command.md
 agents/                      # Optional: specialized subagents
    my-agent.md
 skills/                      # Optional: reusable techniques
    my-skill/
        SKILL.md
 hooks/                       # Optional: event handlers
    hooks.json
 .mcp.json                    # Optional: MCP server configs
 README.md                    # Recommended: documentation

Critical: The .claude-plugin/ directory with plugin.json inside must exist at plugin root.

Component Reference

ComponentLocationFile FormatWhen to Use
Commandscommands/*.mdMarkdown + YAML frontmatterCustom slash commands for repetitive tasks
Agentsagents/*.mdMarkdown + YAML frontmatterSpecialized subagents for complex workflows
Skillsskills/*/SKILL.mdMarkdown + YAML frontmatterReusable techniques and patterns
Hookshooks/hooks.jsonJSONEvent handlers (format code, validate, etc.)
MCP Servers.mcp.jsonJSONExternal tool integrations

plugin.json Format

Minimal valid manifest:

json
{
  "name": "my-plugin"
}

Complete annotated manifest:

json
{
  "name": "my-plugin",                    // Required: kebab-case identifier
  "version": "1.0.0",                     // Recommended: semantic versioning
  "description": "What this plugin does", // Recommended: brief description

  "author": {                             // Optional but recommended
    "name": "Your Name",
    "email": "you@example.com",
    "url": "https://github.com/yourname"
  },

  "homepage": "https://github.com/yourname/my-plugin",
  "repository": "https://github.com/yourname/my-plugin",
  "license": "MIT",
  "keywords": ["productivity", "automation"],

  "commands": [                           // Optional: explicit command paths
    "./commands/cmd1.md",
    "./commands/cmd2.md"
  ],

  "agents": [                             // Optional: explicit agent paths
    "./agents/agent1.md"
  ],

  "hooks": [                              // Optional: inline hooks
    {
      "event": "PostToolUse",
      "matcher": "Edit|Write",
      "command": "npx prettier --write \"$CLAUDE_FILE_PATHS\""
    }
  ],

  "mcpServers": {                         // Optional: inline MCP configs
    "my-server": {
      "command": "${CLAUDE_PLUGIN_ROOT}/servers/my-server",
      "args": ["--port", "8080"],
      "env": {
        "API_KEY": "${API_KEY}"
      }
    }
  }
}

Key points:

  • name is required, everything else is optional
  • Use ${CLAUDE_PLUGIN_ROOT} to reference plugin directory
  • Commands/agents auto-discovered from commands/ and agents/ directories if not listed explicitly
  • Skills auto-discovered from skills/*/SKILL.md pattern

Creating Commands

File location: commands/my-command.md creates /my-command slash command

Nested commands: commands/feature/sub-command.md creates /plugin-name:feature:sub-command

Template:

markdown
---
description: Brief description of what this command does
allowed-tools: Read, Grep, Glob, Bash
model: sonnet
argument-hint: "[file-path]"
---

# Command Name

Your command prompt goes here.

You can use:
- $1, $2, etc. for positional arguments
- $ARGUMENTS for all arguments as single string
- @filename to include file contents
- !bash command to execute shell commands

Example implementation instructions...

Frontmatter fields:

  • description - Brief description shown in /help
  • allowed-tools - Comma-separated list: Read, Grep, Glob, Bash, Edit, Write, TodoWrite, Task
  • model - Optional: haiku, sonnet, or opus (defaults to user's setting)
  • argument-hint - Optional: shown in help text
  • disable-model-invocation - Optional: true to prevent auto-run

Complete example (commands/review-pr.md):

markdown
---
description: Review pull request for security and best practices
allowed-tools: Read, Grep, Glob, Bash
model: opus
argument-hint: "[pr-number]"
---

# Pull Request Review

Review pull request #$1 for:

1. Security vulnerabilities
2. Performance issues
3. Best practices compliance
4. Error handling

Steps:
1. Use Bash to run: gh pr diff $1
2. Use Read to examine changed files
3. Use Grep to search for common anti-patterns
4. Provide structured feedback with file:line references

Focus on critical issues first.

Creating Agents

File location: agents/code-reviewer.md creates agent named "code-reviewer"

Template:

markdown
---
name: agent-name
description: When and why to use this agent (critical for auto-delegation)
tools: Read, Edit, Write, Grep, Glob, Bash
model: opus
---

# Agent Name

Detailed instructions and system prompt for this agent.

## Responsibilities
- Task 1
- Task 2

## Tools Available
- Read: File operations
- Grep: Code search
- Bash: Shell commands

## Workflow
1. Step 1
2. Step 2

Frontmatter fields:

  • name - Required: kebab-case identifier
  • description - Required: Max 1024 chars, used for auto-delegation
  • tools - Comma-separated list of allowed tools
  • model - Optional: haiku, sonnet, or opus

Complete example (agents/security-auditor.md):

markdown
---
name: security-auditor
description: Use when reviewing code for security vulnerabilities, analyzing authentication flows, or checking for common security anti-patterns like SQL injection, XSS, or insecure dependencies
tools: Read, Grep, Glob, Bash
model: opus
---

# Security Auditor Agent

You are a security expert specializing in web application security and secure coding practices.

## Your Responsibilities

1. Identify security vulnerabilities (SQL injection, XSS, CSRF, etc.)
2. Review authentication and authorization logic
3. Check for insecure dependencies
4. Verify input validation and sanitization
5. Review cryptographic implementations

## Workflow

1. **Scan for patterns:** Use Grep to find common vulnerability patterns
2. **Read suspicious code:** Use Read to examine flagged files
3. **Check dependencies:** Use Bash to run security audit tools
4. **Report findings:** Provide severity ratings and remediation steps

## Common Vulnerability Patterns

- SQL injection: String concatenation in queries
- XSS: Unescaped user input in templates
- CSRF: Missing CSRF tokens
- Auth bypass: Missing authorization checks
- Hardcoded secrets: API keys, passwords in code

## Reporting Format

For each finding:
- **Severity:** Critical/High/Medium/Low
- **Location:** `file:line`
- **Issue:** What's vulnerable
- **Impact:** What attacker could do
- **Fix:** How to remediate

Creating Skills

REQUIRED SUB-SKILL: Use writing-skills for complete guidance on skill structure, testing, and deployment.

Skills follow a specific structure.

File location: skills/my-skill/SKILL.md

Minimal template:

markdown
---
name: my-skill-name
description: Use when [specific triggers] - [what it does]
---

# Skill Name

## Overview
Core principle in 1-2 sentences.

## When to Use
- Symptom 1
- Symptom 2
- When NOT to use

## Quick Reference
[Table or bullets for common operations]

## Implementation
[Code examples, patterns]

## Common Mistakes
[What goes wrong + fixes]

Key principles:

  • name uses only letters, numbers, hyphens (no special chars)
  • description starts with "Use when..." in third person
  • Keep token-efficient (<500 words if frequently loaded)
  • One excellent example beats many mediocre ones
  • Use writing-skills skill for complete guidance

Creating Hooks

File location: hooks/hooks.json or inline in plugin.json

Standalone hooks file:

json
{
  "hooks": [
    {
      "event": "PreToolUse",
      "matcher": "Bash",
      "command": "echo 'About to run: $CLAUDE_TOOL_NAME'"
    },
    {
      "event": "PostToolUse",
      "matcher": "Edit|Write",
      "command": "npx prettier --write \"$CLAUDE_FILE_PATHS\""
    },
    {
      "event": "SessionStart",
      "matcher": "*",
      "command": "${CLAUDE_PLUGIN_ROOT}/scripts/setup.sh"
    }
  ]
}

Hook events:

  • PreToolUse - Before tool execution (can block)
  • PostToolUse - After tool execution
  • UserPromptSubmit - When user submits prompt
  • Stop - When Claude finishes responding
  • SessionStart - Session initialization
  • SessionEnd - Session cleanup
  • Notification - On Claude Code notifications
  • SubagentStop - When subagent completes
  • PreCompact - Before context compaction

Matcher patterns:

  • Specific tool: "Bash"
  • Multiple tools: "Edit|Write"
  • All tools: "*"

Environment variables:

  • $CLAUDE_EVENT_TYPE - Event type
  • $CLAUDE_TOOL_NAME - Tool being used
  • $CLAUDE_TOOL_INPUT - Tool input (JSON)
  • $CLAUDE_FILE_PATHS - Space-separated file paths

Creating MCP Server Configs

File location: .mcp.json at plugin root or inline in plugin.json

Standalone .mcp.json:

json
{
  "mcpServers": {
    "database-tools": {
      "command": "${CLAUDE_PLUGIN_ROOT}/servers/db-server",
      "args": ["--config", "${CLAUDE_PLUGIN_ROOT}/config.json"],
      "env": {
        "DB_URL": "${DB_URL}",
        "API_KEY": "${API_KEY:-default-key}"
      }
    },
    "web-scraper": {
      "command": "npx",
      "args": ["web-mcp-server", "--port", "3000"]
    }
  }
}

Configuration fields:

  • command - Executable path or command name
  • args - Array of arguments
  • env - Environment variables (supports ${VAR} or ${VAR:-default})

Special variable:

  • ${CLAUDE_PLUGIN_ROOT} - Resolves to plugin root directory

Setting Up Dev Marketplace

For local development, create a marketplace to organize your plugins:

File: dev-marketplace/.claude-plugin/marketplace.json

json
{
  "$schema": "https://anthropic.com/claude-code/marketplace.schema.json",
  "name": "my-dev-marketplace",
  "version": "1.0.0",
  "owner": {
    "name": "Your Name",
    "email": "you@example.com"
  },
  "metadata": {
    "description": "Local development marketplace for my plugins",
    "pluginRoot": "./plugins"
  },
  "plugins": [
    {
      "name": "my-plugin-one",
      "version": "1.0.0",
      "description": "What this plugin does",
      "source": "./plugins/my-plugin-one",
      "category": "development",
      "author": {
        "name": "Your Name",
        "email": "you@example.com"
      }
    },
    {
      "name": "my-plugin-two",
      "version": "0.1.0",
      "description": "Experimental plugin",
      "source": "./plugins/my-plugin-two",
      "category": "productivity",
      "strict": false
    }
  ]
}

Directory structure:

dev-marketplace/
 .claude-plugin/
    marketplace.json
 plugins/
     my-plugin-one/
        .claude-plugin/
           plugin.json
        commands/
     my-plugin-two/
         .claude-plugin/
            plugin.json
         agents/

Install dev marketplace:

bash
/plugin marketplace add file:///absolute/path/to/dev-marketplace
/plugin browse
/plugin install my-plugin-one@my-dev-marketplace

Plugin entry fields:

  • name - Required: plugin identifier
  • source - Required: relative path or git URL
  • version - Recommended: semantic version
  • description - Recommended: brief description
  • category - Optional: development, productivity, security, etc.
  • author - Optional: author details
  • strict - Optional: default true (requires plugin.json), set false to use marketplace entry as manifest

Source formats:

json
// Local relative path
"source": "./plugins/my-plugin"

// GitHub repository
"source": {
  "source": "github",
  "repo": "owner/repo"
}

// Git URL
"source": {
  "source": "url",
  "url": "https://gitlab.com/team/plugin.git"
}

Naming Conventions

Use kebab-case everywhere:

  • Plugin names: my-awesome-plugin
  • Command names: review-code
  • Agent names: security-auditor
  • Skill names: test-driven-development

Filename mapping:

  • commands/my-command.md/my-command
  • commands/project/build.md/plugin-name:project:build
  • agents/code-reviewer.md � agent name code-reviewer
  • skills/my-skill/SKILL.md � skill name my-skill

Testing Locally

Development workflow:

  1. Create plugin structure:

    bash
    mkdir -p my-plugin/.claude-plugin
    echo '{"name":"my-plugin"}' > my-plugin/.claude-plugin/plugin.json
  2. Add components (commands, agents, skills)

  3. Install locally:

    bash
    /plugin install file:///absolute/path/to/my-plugin
  4. Test functionality:

    bash
    /my-command arg1 arg2
    # Use Task tool with your agent
    # Use Skill tool with your skill
  5. Iterate:

    • Edit plugin files
    • Run /plugin reload
    • Test again

Using dev marketplace:

  1. Create marketplace structure
  2. Add marketplace:
    bash
    /plugin marketplace add file:///absolute/path/to/dev-marketplace
  3. Browse and install:
    bash
    /plugin browse
    /plugin install my-plugin@my-dev-marketplace

Common Mistakes

IssueSymptomFix
Missing .claude-plugin/Plugin not recognizedCreate .claude-plugin/plugin.json at root
Invalid plugin.jsonParse error on loadValidate JSON syntax, ensure name field exists
Wrong tool nameTool not available in command/agentCheck spelling: Read, Grep, Glob, Bash, Edit, Write
Description too longWarning or truncationKeep under 1024 characters total
Not using third personDescription sounds wrongUse "Use when..." not "I will..."
Absolute paths in plugin.jsonBreaks on other machinesUse relative paths or ${CLAUDE_PLUGIN_ROOT}
Forgetting /plugin reloadChanges not visibleRun /plugin reload after edits
Command not foundSlash command doesn't workCheck filename matches expected command, reload plugin
Agent not auto-delegatedAgent never gets usedImprove description with specific triggers and symptoms

Distribution

For production/team use:

  1. Push plugin to Git repository (GitHub, GitLab, etc.)
  2. Create or update team's marketplace repository
  3. Add plugin entry to marketplace.json
  4. Team members install:
    bash
    /plugin marketplace add user-or-org/marketplace-repo
    /plugin install plugin-name@marketplace-name

For public distribution:

Refer to official Claude Code documentation for publishing to public marketplaces.

Reference Links

Frequently asked questions

What does the Creating A Plugin AI skill do?

Use when creating a new Claude Code plugin or setting up plugin structure - provides complete file organization, manifest format, and component definitions for commands, agents, skills, hooks, and MCP servers

Why use Creating A Plugin on TypingMind?

Because you install it once and use it with any model. Creating A Plugin is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Creating A Plugin in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/ed3dai/ed3d-plugins/tree/main/plugins/ed3d-extending-claude/skills/creating-a-plugin. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Creating A Plugin?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Creating A Plugin?

As many as you like. As long as a model supports skills, you can use Creating A Plugin with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Creating A Plugin AI skill free?

It is published on GitHub by ed3dai. Check the repository for licensing terms. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇