Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By hyperskill
A comprehensive toolkit for creating, validating, and distributing Claude Code plugins
npx claudepluginhub joshuarweaver/cascade-code-general-misc-2 --plugin hyperskill-claude-code-marketplaceCreate a new sub-agent file with proper frontmatter and structure.
Create a new slash command file with proper frontmatter and structure.
Add or update hooks.json with a new hook configuration for automated behavior.
Create a new Skill folder with SKILL.md and supporting directories.
Scaffold a new Claude Code plugin with standard structure and starter files
Modifies files
Hook triggers on file write and edit operations
Uses power tools
Uses Bash, Write, or Edit tools
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Interactive plugin builder for Claude Code - serves as both an example plugin and a tool to create new plugins through guided prompts with specialized builder skills for each component type
A comprehensive toolkit for creating, validating, and distributing Claude Code plugins
Validates and optimizes Claude Code plugins against official best practices and file patterns
Plugin development toolkit with skills for creating agents, commands, hooks, MCP integrations, and comprehensive plugin structure guidance
Harness-native ECC plugin for engineering teams - 64 agents, 262 skills, 84 legacy command shims, reusable hooks, rules, MCP conventions, and operator workflows for Claude Code plus adjacent agent harnesses
Comprehensive skill pack with 66 specialized skills for full-stack developers: 12 language experts (Python, TypeScript, Go, Rust, C++, Swift, Kotlin, C#, PHP, Java, SQL, JavaScript), 10 backend frameworks, 6 frontend/mobile, plus infrastructure, DevOps, security, and testing. Features progressive disclosure architecture for 50% faster loading.
Runs pre-commands
Contains inline bash commands via ! syntax
Runs pre-commands
Contains inline bash commands via ! syntax
Bash prerequisite issue
Uses bash pre-commands but Bash not in allowed tools
Bash prerequisite issue
Uses bash pre-commands but Bash not in allowed tools
Share bugs, ideas, or general feedback.
A curated collection of Claude Code plugins maintained by the Hyperskill team.
Add the marketplace to Claude Code:
/plugin marketplace add hyperskill/claude-code-marketplace
Install a plugin:
/plugin install plugin-development@hyperskill-marketplace
Or clone locally for development:
git clone https://github.com/hyperskill/claude-code-marketplace.git
cd claude-code-marketplace
# Add your local marketplace
/plugin marketplace add ./
# Install the plugin-development plugin
/plugin install plugin-development@hyperskill-marketplace
For more details, see the Testing section below.
This marketplace provides:
.claude-plugin/marketplace.json): Central registry for all plugins following the official schemaplugin-development): Comprehensive toolkit for creating, validating, and managing plugins with:
docs/): Complete guides for plugin development, hooks, settings, commands, skills, and sub-agentsEdit .claude-plugin/marketplace.json to customize your marketplace:
{
"name": "hyperskill-marketplace",
"owner": {
"name": "Hyperskill Inc.",
"email": "dev@hyperskill.org"
},
"metadata": {
"description": "A curated collection of Claude Code plugins by Hyperskill team",
"version": "1.0.0"
},
"plugins": [
// Add your plugins here
]
}
Note: The name field should use kebab-case (lowercase with hyphens). See the Plugin Marketplaces documentation for complete schema details.
You can configure automatic marketplace installation for team projects by adding .claude/settings.json:
{
"extraKnownMarketplaces": {
"hyperskill": {
"source": {
"source": "github",
"repo": "hyperskill/claude-code-marketplace"
}
}
}
}
When team members trust the repository folder, Claude Code automatically installs these marketplaces. See Configure team marketplaces for details.
Navigate to your project directory:
cd claude-code-marketplace
Start Claude Code:
claude
Add your local marketplace:
/plugin marketplace add ./path-to-your-marketplace
Install a plugin:
/plugin install plugin-development@hyperskill-marketplace
Test commands:
/plugin-development:validate
Verify installation:
/help
Your plugin commands should appear in the help list.
Once published to GitHub, users can add your marketplace:
# Add marketplace from GitHub
/plugin marketplace add hyperskill/claude-code-marketplace
# Install plugins
/plugin install plugin-name@hyperskill-marketplace
This template includes a powerful plugin-development plugin that automates plugin scaffolding:
# After cloning and adding this marketplace
/plugin install plugin-development@hyperskill-marketplace
# Scaffold a new plugin
/plugin-development:init my-new-plugin
# Add components as needed
/plugin-development:add-command my-command "Description of what the command does"
/plugin-development:add-skill my-skill "Use when working with..."
/plugin-development:validate
See the plugin-development README for complete documentation.
# Create plugin directory
mkdir -p plugins/my-plugin/.claude-plugin
mkdir -p plugins/my-plugin/commands
# Create plugin metadata
touch plugins/my-plugin/.claude-plugin/plugin.json
touch plugins/my-plugin/README.md
Edit plugins/my-plugin/.claude-plugin/plugin.json: