Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Create, validate, and manage Claude Code skills through interactive agents that guide SKILL.md generation via phased workflows, CLI commands for listing skills in scoped trees and running quality/security checks, and templates for ground truth, initiatives, products, and stakeholders.
npx claudepluginhub youngleadersdottech/young-leaders-tech-marketplace --plugin skills-toolkitCreate a new Claude Code skill with guided interactive workflow
List available skills with organized structure showing personal, project, and shared skills
Validate existing skill file for quality, security, and standards compliance
Interactive guide for creating Claude Code skills with proper description engineering, PII validation, and file structure generation. Invokes when user requests skill creation, needs help writing SKILL.md files, or wants to add context to Claude Code.
Autonomous professional validator for Claude Code skills. Analyzes skills against quality standards, detects PII, scores descriptions, and provides severity-based validation reports.
Generic ground truth documentation template for creating verifiable reference skills. Auto-invoke when user requests ground truth skill creation, validation criteria framework, or canonical documentation templates. Do NOT load during actual ground truth usage (use project-specific skills instead).
Generic cross-functional initiative template for creating strategic initiative overview skills. Auto-invoke when user requests initiative skill creation, cross-team coordination framework, or strategic program templates. Do NOT load during specific project work (use project-specific skills instead).
Generic product context template for creating product vision, goals, and constraints skills. Auto-invoke when user requests product skill creation, product context framework, or strategic alignment templates. Do NOT load during actual product work (use project-specific skills instead).
Generic stakeholder discovery template for creating new project-specific stakeholder skills. Auto-invoke when user requests stakeholder skill creation, stakeholder analysis framework, or team context templates. Do NOT load during actual stakeholder discussions (use project-specific skills instead).
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.
Skill authoring guidance and best practices
Developer tools for maintaining Claude Code plugins. Upgrade skills, audit structure, and align with latest platform capabilities.
Create, test, measure, and iteratively improve Claude Code skills with category-aware design, gotchas-driven development, progressive disclosure coaching, and automated description optimization.
Meta-skills infrastructure for Claude Code plugin ecosystem - skill authoring, hook development, modular design patterns, and evaluation frameworks
Comprehensive UI/UX design plugin for mobile (iOS, Android, React Native) and web applications with design systems, accessibility, and modern patterns
Multi-model consensus engine integrating OpenAI Codex CLI, Gemini CLI, and Claude CLI for collaborative code review and problem-solving.
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