.claude/skills/git-hooks-setup/SKILL.md
Set up Git hooks (Husky, lint-staged, commitlint) for commit-time code quality enforcement. Configures pre-commit, commit-msg, and pre-push hooks based on CLAUDE.md requirements.
npx skillsauth add efiadm/informatik-ai-studio git-hooks-setupInstall 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.
Configure Git hooks for commit-time code quality enforcement using Husky, lint-staged, and commitlint.
Automate the configuration of Git hooks to enforce code quality standards at commit time:
Read CLAUDE.md to extract:
python .claude/skills/git-hooks-setup/scripts/setup_hooks.py
What the script does:
.husky/After setup:
.husky/ directory exists#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"
pnpm lint-staged
Runs lint-staged on staged files only for fast execution.
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"
pnpm exec commitlint --edit "$1"
Validates commit message against Conventional Commits format.
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"
pnpm test && pnpm type-check && pnpm build
Runs full test suite and build validation before push.
module.exports = {
'*.{ts,tsx,js,jsx}': ['eslint --fix', 'prettier --write'],
'*.{json,md,css}': ['prettier --write'],
};
module.exports = {
extends: ['@commitlint/config-conventional'],
};
See references/hook-patterns.md for:
git commit --no-verify
git push --no-verify
development
Comprehensive frontend development skill for building modern, performant web applications using ReactJS, NextJS, TypeScript, Tailwind CSS. Includes component scaffolding, performance optimization, bundle analysis, and UI best practices. Use when developing frontend features, optimizing performance, implementing UI/UX designs, managing state, or reviewing frontend code.
tools
Comprehensive DevOps skill for CI/CD, infrastructure automation, containerization, and cloud platforms (AWS, GCP, Azure). Includes pipeline setup, infrastructure as code, deployment automation, and monitoring. Use when setting up pipelines, deploying applications, managing infrastructure, implementing monitoring, or optimizing deployment processes.
development
World-class data science skill for statistical modeling, experimentation, causal inference, and advanced analytics. Expertise in Python (NumPy, Pandas, Scikit-learn), R, SQL, statistical methods, A/B testing, time series, and business intelligence. Includes experiment design, feature engineering, model evaluation, and stakeholder communication. Use when designing experiments, building predictive models, performing causal analysis, or driving data-driven decisions.
development
World-class data engineering skill for building scalable data pipelines, ETL/ELT systems, and data infrastructure. Expertise in Python, SQL, Spark, Airflow, dbt, Kafka, and modern data stack. Includes data modeling, pipeline orchestration, data quality, and DataOps. Use when designing data architectures, building data pipelines, optimizing data workflows, or implementing data governance.