Auto-discovered marketplace from rehan-ul-haq/my-skills
npx claudepluginhub rehan-ul-haq/my-skillsClaude Code skills for containerization, MCP development, Kubernetes deployment, frontend design, and productivity workflows
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 80 focused plugins, 185 specialized agents, and 153 skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
Share bugs, ideas, or general feedback.
A collection of Claude Code custom skills (plugin) for containerization, MCP development, Kubernetes deployment, frontend design, and productivity workflows.
Add the marketplace and install the plugin:
/plugin marketplace add <github-username>/my-skills
/plugin install my-skills@my-skills
Or from the CLI:
claude plugin marketplace add <github-username>/my-skills
claude plugin install my-skills@my-skills
git clone <repo-url> my-skills
Then add the local marketplace:
/plugin marketplace add ./my-skills
/plugin install my-skills@my-skills
Copy the skills/ directory into your personal Claude Code skills folder:
cp -r skills/* ~/.claude/skills/
Copy specific skills into your project's .claude/skills/ directory:
cp -r skills/writing-dockerfile .claude/skills/
| Skill | Type | Description |
|---|---|---|
| containerize-apps | Builder | Containerizes applications with impact-aware Dockerfiles and docker-compose configurations |
| creating-chatgpt-widgets | Builder | Create production-grade widgets for ChatGPT Apps using OpenAI Apps SDK |
| discovering-intent | Guide | Conducts discovery conversations to understand user intent before taking action |
| fetch-library-docs | Automation | Fetches official library documentation with 60-90% token savings via content filtering |
| frontend-design | Builder | Create distinctive, production-grade frontend interfaces avoiding generic AI aesthetics |
| mcp-builder | Guide | High-quality MCP server development in TypeScript or Python |
| mcp-chatkit-integration | Guide | Build MCP servers and integrate with OpenAI ChatKit and Agents SDK |
| minikube-deploy | Automation | Zero-shot deployment of any containerized application to local Kubernetes |
| skill-creator-pro | Meta | Create production-grade, reusable skills that extend Claude's capabilities |
| skill-validator | Validator | Validates skills against 9-category production-level criteria with scoring |
| writing-dockerfile | Builder | Generate secure, production-ready Dockerfiles with multi-stage builds |
my-skills/
├── .claude-plugin/
│ ├── plugin.json # Plugin manifest
│ └── marketplace.json # Marketplace catalog for distribution
├── skills/
│ └── <skill-name>/
│ ├── SKILL.md # Main skill instructions (required)
│ ├── references/ # Domain knowledge and patterns
│ ├── assets/ # Templates and boilerplate
│ └── scripts/ # Executable automation
└── README.md
Each skill follows the Claude Code plugin convention:
SKILL.md -- Entry point with YAML frontmatter (name, description) and core instructionsreferences/ -- Detailed domain documentation loaded on demandassets/ -- Templates, Dockerfiles, Helm charts, and other reusable filesscripts/ -- Shell and Python scripts for automation tasksSkills are invoked automatically by Claude when their description matches the current task, or manually via slash commands:
/containerize-apps
/writing-dockerfile
/fetch-library-docs react
/minikube-deploy
/skill-creator-pro
skills/ using kebab-case (max 64 characters)SKILL.md with YAML frontmatter:---
name: your-skill-name
description: What this skill does and when Claude should use it.
---
# Skill Title
Instructions for Claude...
references/, templates in assets/, scripts in scripts/SKILL.md under 500 lines -- move detailed content to reference files