.agents/skills/commitlint-husky-recipe/SKILL.md
Recipe for enforcing conventional commit messages with Husky commit-msg hook and commitlint. Use when standardizing commit semantics across frontend repositories.
npx skillsauth add filippovskii09/quize-audit commitlint-husky-recipeInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Enforce consistent commit messages at commit-msg stage.
From shared-ui:
.husky/commit-msg runs:npx --no -- commitlint --edit $1
commitlint.config.js extends @commitlint/config-conventionaltype-enum defines allowed commit types@commitlint/cli@commitlint/config-conventionalhuskynpm install -D @commitlint/cli @commitlint/config-conventional husky
commitlint.config.js) with type policy..husky/commit-msg hook to execute commitlint --edit $1.npx commitlint --from HEAD~1 --to HEAD --verbose
Invalid commit messages are blocked before commit is finalized.
development
Domain skill for React internationalization setup with react-intl, locale switching, and typed i18n context. Use when adding new translations or extending locale behavior.
development
Domain skill for reusable typed React hooks used in business logic. Use when extending or validating shared hooks like local storage and pagination.
development
Reusable Prettier formatting recipe for TypeScript and frontend repositories. Use when enforcing consistent code style and integrating format checks in hooks.
tools
Declarative pre-commit framework recipe for polyglot repositories with stage-aware hooks (pre-commit and pre-push). Use when repositories need non-Node quality gates or mixed toolchains.