1 line
632 B
JSON
1 line
632 B
JSON
{"content": "{\n \"description\": \"Automatically backup files before editing. Creates timestamped backups in a .backups directory when files are modified.\",\n \"hooks\": {\n \"PreToolUse\": [\n {\n \"matcher\": \"Edit|MultiEdit\",\n \"hooks\": [\n {\n \"type\": \"command\",\n \"command\": \"if [[ -n \\\"$CLAUDE_TOOL_FILE_PATH\\\" && -f \\\"$CLAUDE_TOOL_FILE_PATH\\\" ]]; then mkdir -p .backups && cp \\\"$CLAUDE_TOOL_FILE_PATH\\\" \\\".backups/$(basename \\\"$CLAUDE_TOOL_FILE_PATH\\\").$(date +%Y%m%d_%H%M%S).bak\\\"; fi\"\n }\n ]\n }\n ]\n }\n}"} |