Help us improve
Share bugs, ideas, or general feedback.
Personal Claude Code plugin marketplace
npx claudepluginhub youngleadersdottech/young-leaders-tech-marketplaceComplete toolkit for creating, validating, and managing Claude Code skills with intelligent agents, interactive commands, and professional templates
Share bugs, ideas, or general feedback.
Personal marketplace for Claude Code plugins.
| Plugin | Description |
|---|---|
| skills-toolkit | Complete toolkit for creating, validating, and managing Claude Code skills |
Add this marketplace to Claude Code using the raw URL:
https://github.com/YoungLeadersDotTech/young-leaders-tech-marketplace/raw/master/.claude-plugin/marketplace.json
Note: Use the
rawURL, not theblobURL, or the marketplace will fail to load.
To add a plugin to this marketplace:
Create your plugin directory under plugins/:
plugins/your-plugin-name/
├── .claude-plugin/
│ └── plugin.json
├── commands/
├── agents/
├── skills/
└── README.md
Ensure .claude-plugin/plugin.json has the correct format:
{
"name": "your-plugin-name",
"description": "What this plugin does",
"author": {
"name": "Your Name",
"email": "your@email.com"
},
"homepage": "https://github.com/YoungLeadersDotTech/young-leaders-tech-marketplace",
"version": "1.0.0",
"commands": ["./commands/command-name.md"],
"agents": ["./agents/agent-name.md"],
"skills": ["./skills/skill-name"]
}
Register the plugin in .claude-plugin/marketplace.json at the repo root.
Commit and push:
git add plugins/your-plugin-name/ .claude-plugin/marketplace.json
git commit -m "Add your-plugin-name plugin"
git push
All plugins must include:
.claude-plugin/plugin.json - Plugin manifest (5 core fields: name, description, author, homepage, version)README.md - Documentationcommands/, agents/, and/or skills/ directories as applicableAfter adding or updating plugins, update marketplace.json:
# Edit .claude-plugin/marketplace.json to add/update plugin entries