Install
openclaw skills install teslaControl your Tesla vehicles — lock/unlock, climate, location, charge status, and more. Supports multiple vehicles via Tesla Fleet API.
openclaw skills install teslaControl your Tesla vehicles from OpenClaw. Supports multiple cars on one account.
Fleet API Update (2026): Tesla is deprecating direct
/commandREST calls. Vehicles on firmware 2024.26+ require the Vehicle Command Protocol (VCP) SDK. Thetesla-fleet-apiPython package (v1.x+) handles this automatically.
TESLA_EMAIL="you@email.com" python3 {baseDir}/scripts/tesla.py auth
This will:
TESLA_EMAIL — Your Tesla account email~/.tesla_cache.jsonUse --car or -c to specify which vehicle:
# List all vehicles
python3 {baseDir}/scripts/tesla.py list
# Commands for specific car
python3 {baseDir}/scripts/tesla.py --car "Snowflake" status
python3 {baseDir}/scripts/tesla.py -c "Stella" lock
Without --car, commands target your first vehicle.
# List all vehicles
python3 {baseDir}/scripts/tesla.py list
# Get vehicle status
python3 {baseDir}/scripts/tesla.py status
python3 {baseDir}/scripts/tesla.py --car "Stella" status
# Lock/unlock
python3 {baseDir}/scripts/tesla.py lock
python3 {baseDir}/scripts/tesla.py unlock
# Climate
python3 {baseDir}/scripts/tesla.py climate on
python3 {baseDir}/scripts/tesla.py climate off
python3 {baseDir}/scripts/tesla.py climate temp 72
# Charging
python3 {baseDir}/scripts/tesla.py charge status
python3 {baseDir}/scripts/tesla.py charge start
python3 {baseDir}/scripts/tesla.py charge stop
# Location
python3 {baseDir}/scripts/tesla.py location
# Honk & flash
python3 {baseDir}/scripts/tesla.py honk
python3 {baseDir}/scripts/tesla.py flash
# Wake up (if asleep)
python3 {baseDir}/scripts/tesla.py wake
Uses the unofficial Tesla Owner API documented at: https://tesla-api.timdorr.com
~/.tesla_cache.json