From sundial-org-awesome-openclaw-skills-4
Controls Tesla vehicles via Tessie API: check battery, range, location; manage climate, charging, and view recent drives.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sundial-org-awesome-openclaw-skills-4:tessieThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Control your Tesla vehicles via Tessie API - a Tesla management platform with 500,000+ users.
Control 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
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4Controls Tesla vehicles from macOS via the Tesla Owner API: auth, list cars, status, lock/unlock, climate, charging, location. Useful for checking car state or running safe remote commands with confirmation gates for disruptive actions.
Calculates real-world EV range by applying factors for temperature, speed, terrain, payload, and HVAC. Useful for trip planning or diagnosing range shortfalls.
Queries grid electricity forecasts and submits load events via Apple's EnergyKit framework. Helps build smart home apps, EV charger controls, and energy management dashboards.