Claude Code Instructions for Skills Marketplace Development
Description
**Repository:** claude-skills-marketplace **Purpose:** Development guidelines for creating high-quality Claude Code skills and plugins ---
Installation
claude install-skill https://github.com/mhattingpete/claude-skills-marketplace README
Claude Code Instructions for Skills Marketplace Development
**Repository:** claude-skills-marketplace **Purpose:** Development guidelines for creating high-quality Claude Code skills and plugins
🎯 Repository Context
This is the **Claude Skills Marketplace** - a collection of reusable skills and plugins for Claude Code. When working in this repository, you are helping develop skills that will be used by many developers.
Current Plugins
- undefined
🏗️ Plugin Structure Standards
Required Directory Structure
{plugin-name}-plugin/
├── .claude-plugin/
│ └── plugin.json # REQUIRED: Plugin metadata ONLY (no skills array)
├── skills/ # Skills directory (auto-discovered)
│ └── {skill-name}/
│ ├── SKILL.md # REQUIRED: Skill specification
│ ├── references/ # OPTIONAL: Reference materials (markdown)
│ │ └── *.md # Additional context/guides
│ └── scripts/ # OPTIONAL: Helper scripts
│ └── *.py # Python scripts, shell scripts, etc.
├── agents/ # OPTIONAL: Agents directory (auto-discovered)
│ └── {agent-name}/
│ └── AGENT.md # Agent specification
├── commands/ # OPTIONAL: Commands directory (auto-discovered)
│ └── {command-name}.md
├── README.md # REQUIRED: Plugin documentation
├── CHANGELOG.md # RECOMMENDED: Version history
└── EXAMPLES.md # RECOMMENDED: Usage examples
**CRITICAL: Skills are auto-discovered!**
- undefined
**Directory purposes:**
- undefined
Critical Files
1. `.claude-plugin/plugin.json`
**Location matters!** Must be in `.claude-plugin/` subdirectory, not at root.
{
"name": "example-skills",
"version": "1.0.0",
"description": "Clear, concise description of what the plugin provides",
"author": {
"name": "author-name"
}
}
**Key points:**
- undefined
Related Skills
next.js
| The React Framework | 138360 | 1503 | 1 |
Development community sharing-skills
skill for guidance.
Development community root-cause-tracing
Use when errors occur deep in execution and you need to trace back to find the original trigger.
Development community Template Skill
Minimal skeleton for a new skill project structure.
Development community Third-party Notices
THE FOLLOWING SETS FORTH ATTRIBUTION NOTICES FOR THIRD PARTY SOFTWARE THAT MAY BE CONTAINED IN PORTIONS OF THIS PRODUCT. ---
Development official Claude API
When code imports anthropic/@anthropic-ai/sdk/claude_agent_sdk, or user asks to use Claude APIBuild apps with the Claude API or Anthropic SDK
Development official