$git clone https://github.com/daymade/claude-code-skillsProfessional Claude Code skills marketplace featuring production-ready skills for enhanced development workflows.
| 1 | # Claude Code Skills Marketplace |
| 2 | |
| 3 | <div align="center"> |
| 4 | |
| 5 | [](./README.md) |
| 6 | [](./README.zh-CN.md) |
| 7 | |
| 8 | [](https://opensource.org/licenses/MIT) |
| 9 | [](https://github.com/daymade/claude-code-skills) |
| 10 | [](https://claude.com/code) |
| 11 | [](./CONTRIBUTING.md) |
| 12 | [](https://github.com/daymade/claude-code-skills/graphs/commit-activity) |
| 13 | |
| 14 | </div> |
| 15 | |
| 16 | Professional Claude Code skills marketplace featuring production-ready skills for enhanced development workflows. |
| 17 | |
| 18 | ## 📑 Table of Contents |
| 19 | |
| 20 | - [🌟 Essential Skill: skill-creator](#-essential-skill-skill-creator) |
| 21 | - [🚀 Quick Installation](#-quick-installation) |
| 22 | - [🇨🇳 Chinese User Guide](#-chinese-user-guide) |
| 23 | - [📦 Other Available Skills](#-other-available-skills) |
| 24 | - [🎬 Interactive Demo Gallery](#-interactive-demo-gallery) |
| 25 | - [🎯 Use Cases](#-use-cases) |
| 26 | - [📚 Documentation](#-documentation) |
| 27 | - [🛠️ Requirements](#️-requirements) |
| 28 | - [❓ FAQ](#-faq) |
| 29 | - [🤝 Contributing](#-contributing) |
| 30 | - [📄 License](#-license) |
| 31 | |
| 32 | --- |
| 33 | |
| 34 | ## 🌟 Essential Skill: skill-creator |
| 35 | |
| 36 | **⭐ Start here if you want to create your own skills!** |
| 37 | |
| 38 | The `skill-creator` is the **meta-skill** that enables you to build, validate, and package your own Claude Code skills. It's the most important tool in this marketplace because it empowers you to extend Claude Code with your own specialized workflows. |
| 39 | |
| 40 | ### Why This skill-creator? |
| 41 | |
| 42 | This is a **production-hardened fork** of [Anthropic's official skill-creator](https://github.com/anthropics/skills/tree/main/skills/skill-creator), born from building real skills and hitting every wall the official version doesn't warn you about. |
| 43 | |
| 44 | **The official skill-creator tells you _what_ to build. Ours also tells you _what not to try_ — and why.** |
| 45 | |
| 46 | | You're trying to... | Official | This Fork | |
| 47 | |---------------------|----------|-----------| |
| 48 | | Research before building | "Check available MCPs" (5 lines) | 8-channel search protocol with decision matrix: Adopt / Extend / Build | |
| 49 | | Create a skill interactively | Prose-based instructions | 9 structured AskUserQuestion checkpoints — user never loses context | |
| 50 | | Avoid common mistakes | No guidance | Cache edit warnings, prerequisite checks, security scan gate | |
| 51 | | Know the architecture options | Not mentioned | Inline vs Fork decision guide with examples (choosing wrong silently breaks your skill) | |
| 52 | | Validate before shipping | Basic YAML check | Expanded structural validator plus provenance-checked old-vs-new capability audit; packaging re-verifies the completed review instead of trusting a marker | |
| 53 | | Catch security issues | No tooling | `security_scan.py` with gitleaks integration — hard gate before packaging | |
| 54 | | Learn from real failures | No failure cases | Battle-tested methodology with documented failure patterns and gotchas | |
| 55 | | Distill past conversations safely | Not covered | Explicit local manifest, message-level time window, redaction, opaque source IDs, ignored `.enrich/` staging, and manual promotion into references/scripts | |
| 56 | | Turn approved artifacts into skill behavior | Not covered | Artifact-corpus distillation workflow: script-measured pattern extraction (≥3-artifact threshold), cataloging≠distillation gate, invariant-vs-register boundary, independent completeness audit | |
| 57 | | Survive concurrent sessions on one skill repo | Not covered | git-ref baselines, re-read-before-write, HEAD check before commit, own-paths-only staging, one-bump-per-outcome versioning | |
| 58 | | Ground knowledge skills in evidence | General advice | Authority ladder from real calls and machine-readable specs through production code, plus executable-example smoke checks and evidence-boundary rules | |
| 59 | | Have both installed at once | Coin flip — the two descriptions are near-identical | Detects the clash on trigger and offers a one-command, reversible SessionStart routing hook (only ever installed when both coexist); the official plugin stays usable by explicit request | |
| 60 | | Your own skill collides with an installed plugin | Not covered | `generate_supersede_kit.py` stamps the same conditional routing kit into your skill, plus a measured precedence decision guide (rename → description tiebreaker → hook → disable) | |
| 61 | |
| 62 | **Quality comparison** (independent audit, 8 dimensions): |
| 63 | |
| 64 | | Dimension | Official | This Fork | |
| 65 | |-----------|----------|-----------| |
| 66 | | Actionability | 7 | 9 | |
| 67 | | Error Prevention | 5 | 9 | |
| 68 | | Prior Art Research | 4 | 9 | |
| 69 | | Counter Review Process | 4 | 8 | |
| 70 | | Real-World Lessons | 3 | 8 | |
| 71 | | User Experience | 4 | 9 | |
| 72 | | **Total (out of 80)** | **42** | **65** | |
| 73 | |
| 74 | > Full methodology: [skill-creator/references/skill-development-methodology.md]( |