@echo off REM UClaude Updater — automatic Claude Code patch updater REM Usage: uclaude_update.bat [--check] [--force] [--settings-only] setlocal enabledelayedexpansion set "SCRIPT_DIR=%~dp0" cd /d "%SCRIPT_DIR%" REM Pull latest artifacts git pull --quiet 2>nul REM Run updater python uclaude_updater.py %* if errorlevel 1 ( echo. echo If you see permission errors, run this script as Administrator. pause )