Skill Creator (daymade edition)
A meta-skill for authoring new Claude Code skills, upgrading existing ones, and proving the change worked with tiered evals.
Dev & CodingAdvanced★ 1,323⑂ 212AI score 9/10Last updated: Aug 8, 2026
What it does
- Authors new skills by capturing intent (purpose, trigger phrases, output format) and drafting a SKILL.md bundle.
- Upgrades existing skills safely: snapshot the old bundle first, then run a regression audit so no runtime contract, reference, or eval quietly disappears.
- Picks the cheapest sufficient verification tier: targeted checks for bounded fixes, sampled behavior replay for uncertain instruction edits, full paired A/B eval pipeline for new or high-risk work.
- Optimizes trigger accuracy with a dedicated description-improver script.
- Three specialized distillations: wrap a session into a skill, mine chat history for reusable patterns, and learn preferences from an approved artifact corpus.
- Handles coexistence with the official skill-creator plugin via an opt-in SessionStart precedence hook.
Who it's for
- Power users and teams maintaining a growing library of skills
- Anyone whose skill exists but never fires at the right moment
- Authors who have lost behavior during a "cleanup" rewrite
- People shipping taste-driven skills (writing style, report tone) who still want a feedback loop
Examples
- "Turn this deploy-check session into a skill" → it extracts commands, ordering, and helper scripts into a SKILL.md + scripts bundle.
- "My report skill stopped triggering" → it rewrites the description, then replays real historical prompts old-vs-new to confirm the change is followed.
- "Refactor my data-analysis skill" → snapshot, edit, regression audit of every unmatched old unit, plus an independent fresh-context review written to a private review log.
· · · Install guide · · ·
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the daymade-skill/skill-creator folder from the GitHub repo daymade/claude-code-skills into my ~/.claude/skills/daymade-skill-creator/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/daymade/claude-code-skills.git && mkdir -p ~/.claude/skills && cp -r claude-code-skills/daymade-skill/skill-creator ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal (Terminal on macOS; WSL or Git Bash on Windows).
- Clone the repo:
git clone https://github.com/daymade/claude-code-skills.git - Make sure the skills folder exists:
mkdir -p ~/.claude/skills - Copy just this skill:
cp -r claude-code-skills/daymade-skill/skill-creator ~/.claude/skills/ - Make the bundled scripts executable:
chmod +x ~/.claude/skills/skill-creator/scripts/* - Restart Claude Code and say "help me create a skill" to confirm it activates.
- If you already have the official skill-creator plugin, the skill will offer a precedence hook — install it only if you want deterministic routing (undo with
scripts/setup_supersede_hook.sh uninstall).
View source on GitHub ↗License: MIT