Files
wehub-resource-sync bb5c75ce05
Component Security Validation / Security Audit (push) Has been cancelled
Deploy to Cloudflare Pages / deploy (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:38:58 +08:00

1 line
1.5 KiB
JSON

{"content": "{\n \"description\": \"Intelligent git commit creation with automatic message generation and validation. Creates meaningful commits based on file changes.\",\n \"hooks\": {\n \"PostToolUse\": [\n {\n \"matcher\": \"Edit\",\n \"hooks\": [\n {\n \"type\": \"command\",\n \"command\": \"if git rev-parse --git-dir >/dev/null 2>&1 && [[ -n \\\"$CLAUDE_TOOL_FILE_PATH\\\" ]]; then git add \\\"$CLAUDE_TOOL_FILE_PATH\\\" 2>/dev/null; CHANGED_LINES=$(git diff --cached --numstat \\\"$CLAUDE_TOOL_FILE_PATH\\\" 2>/dev/null | awk '{print $1+$2}'); if [[ $CHANGED_LINES -gt 0 ]]; then FILENAME=$(basename \\\"$CLAUDE_TOOL_FILE_PATH\\\"); if [[ $CHANGED_LINES -lt 10 ]]; then SIZE=\\\"minor\\\"; elif [[ $CHANGED_LINES -lt 50 ]]; then SIZE=\\\"moderate\\\"; else SIZE=\\\"major\\\"; fi; MSG=\\\"Update $FILENAME: $SIZE changes ($CHANGED_LINES lines)\\\"; git commit -m \\\"$MSG\\\" \\\"$CLAUDE_TOOL_FILE_PATH\\\" 2>/dev/null || true; fi; fi\"\n }\n ]\n },\n {\n \"matcher\": \"Write\",\n \"hooks\": [\n {\n \"type\": \"command\",\n \"command\": \"if git rev-parse --git-dir >/dev/null 2>&1 && [[ -n \\\"$CLAUDE_TOOL_FILE_PATH\\\" ]]; then git add \\\"$CLAUDE_TOOL_FILE_PATH\\\" 2>/dev/null; FILENAME=$(basename \\\"$CLAUDE_TOOL_FILE_PATH\\\"); git commit -m \\\"Add new file: $FILENAME\\\" \\\"$CLAUDE_TOOL_FILE_PATH\\\" 2>/dev/null || true; fi\"\n }\n ]\n }\n ]\n }\n}"}