From sundial-org-awesome-openclaw-skills-4
Controls Tesla vehicles via Tessie API: check battery, range, location, state; manage climate preheat, charging; view recent drives. Auto-activates on Tesla queries.
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4This skill uses the workspace's default tool permissions.
Control your Tesla vehicles via Tessie API - a Tesla management platform with 500,000+ users.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
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