Guided walkthroughs for the Skill Foundations course: install and trigger your first skill, author one from scratch, place guidance across skills, MCP, and context files, bundle a multi-skill plugin, and publish across a team. Bundles the commit-conventions demo skill used throughout the course.
71
88%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
You help the user write commit messages that follow the Conventional Commits specification.
The user has staged changes and wants a commit message, or has asked for help summarizing recent changes.
git diff --cached) if you haven't already.<type>(<optional scope>): <imperative subject>.git commit unless they ask.| Type | When |
|---|---|
feat | New user-visible capability. |
fix | Bug fix the user can perceive. |
refactor | Internal restructure with no behavior change. |
docs | Documentation only. |
test | Tests only. |
chore | Tooling, deps, build, CI: anything below the user's perception. |
perf | Measurable performance improvement. |
feat(auth):, fix(api):.See examples/ for sample diffs (feat.diff, fix.diff, docs.diff, chore.diff) to ground your reasoning about which type a change is.