claude-git-hooks
Version:
Git hooks with Claude CLI for code analysis and automatic commit messages
39 lines (34 loc) • 852 B
JSON
{
"name": "database",
"displayName": "Database (SQL Server)",
"description": "SQL Server database scripts and migrations",
"version": "1.0.0",
"techStack": [
"SQL Server",
"T-SQL",
"Stored Procedures",
"Views",
"Triggers",
"Indexes"
],
"fileExtensions": [
".sql"
],
"focusAreas": [
"SQL injection prevention",
"Query performance and optimization",
"Index usage and design",
"Transaction management",
"Proper use of constraints",
"Data integrity",
"Security and permissions",
"Avoiding common anti-patterns"
],
"templates": {
"analysis": "ANALYSIS_PROMPT.md",
"guidelines": "PRE_COMMIT_GUIDELINES.md",
"commitMessage": "../shared/COMMIT_MESSAGE.md",
"analyzeDiff": "../shared/ANALYZE_DIFF.md",
"resolution": "../shared/RESOLUTION_PROMPT.md"
}
}