.claude/skills/claude-code-hooks/SKILL.md
Configure Claude Code PostToolUse hooks for real-time auto-linting. Automatically runs linters after Edit/Write operations for immediate code quality feedback.
npx skillsauth add efiadm/informatik-ai-studio claude-code-hooksInstall 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 PostToolUse hooks for real-time auto-linting as Claude Code edits files.
Enable automatic linting after every file edit by Claude Code:
Identify:
python .claude/skills/claude-code-hooks/scripts/setup_claude_hooks.py
What the script does:
.claude/settings.json{
"description": "Auto-lint files after Claude Code edits",
"hooks": {
"PostToolUse": [
{
"matcher": "Edit|Write",
"hooks": [
{
"type": "command",
"command": "if [[ \"$CLAUDE_TOOL_FILE_PATH\" == *.ts ]]; then npx eslint \"$CLAUDE_TOOL_FILE_PATH\" --fix 2>/dev/null || true; fi"
}
]
}
]
}
}
npx eslint "$CLAUDE_TOOL_FILE_PATH" --fix 2>/dev/null || true
black "$CLAUDE_TOOL_FILE_PATH" 2>/dev/null || true
rubocop "$CLAUDE_TOOL_FILE_PATH" --auto-correct 2>/dev/null || true
gofmt -w "$CLAUDE_TOOL_FILE_PATH" 2>/dev/null || true
rustfmt "$CLAUDE_TOOL_FILE_PATH" 2>/dev/null || true
{
"hooks": {
"PostToolUse": [
{
"matcher": "Edit|Write",
"hooks": [
{
"type": "command",
"command": "if [[ \"$CLAUDE_TOOL_FILE_PATH\" == *.py ]]; then black \"$CLAUDE_TOOL_FILE_PATH\" 2>/dev/null || true; elif [[ \"$CLAUDE_TOOL_FILE_PATH\" == *.ts || \"$CLAUDE_TOOL_FILE_PATH\" == *.tsx ]]; then npx eslint \"$CLAUDE_TOOL_FILE_PATH\" --fix 2>/dev/null || true; fi"
}
]
}
]
}
}
2>/dev/null || true--fix flags.claude/settings.json for teamsSee references/claude-hook-patterns.md for:
.claude/settings.json existsdevelopment
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.