Install
openclaw skills install tessieClawHub Security found sensitive or high-impact capabilities. Review the scan results before using.
Control and monitor your Tesla vehicles via Tessie API for battery, climate, charging, drives, location, and vehicle state management.
openclaw skills install tessieControl your Tesla vehicles via Tessie API - a Tesla management platform with 500,000+ users.
Get your Tessie API credentials:
skills:
entries:
tessie:
apiKey: "your-tessie-api-key-here"
Or via environment variable:
export TESSIE_API_KEY="your-tessie-api-key-here"
Note: Vehicle ID and VIN are auto-detected from API. No manual configuration needed.
# Check battery and range
"tessie battery"
"tessie how much charge"
"tessie range"
# Preheat the car (assumes Fahrenheit if > 50)
"tessie preheat 72"
"tessie precool"
"tessie turn on climate"
# Check drives
"tessie show my drives"
"tessie recent drives"
"tessie drives 5"
# Charging commands
"tessie start charging"
"tessie stop charging"
"tessie set charge limit to 90%"
"tessie charging status"
# Vehicle location
"tessie where is my car"
"tessie location"
# Vehicle state
"tessie is the car locked?"
"tessie vehicle status"
All requests require:
Authorization: Bearer <api-key>
GET https://api.tessie.com/vehicles
Returns full vehicle list with last_state embedded
GET https://api.tessie.com/{VIN}/drives?limit=10
Returns recent drive history
GET https://api.tessie.com/{VIN}/idles?limit=10
Returns parked sessions with climate/sentry usage
All control commands use VIN (not vehicle_id):
POST https://api.tessie.com/{VIN}/command/{command}
Available commands:
start_climate, stop_climate, set_temperaturesstart_charging, stop_charging, set_charge_limitlock, unlock, enable_sentry, disable_sentryactivate_front_trunk, activate_rear_trunkopen_windows, close_windows, vent_windowsFull list: See https://developer.tessie.com