技能详情(站内镜像,无评论)
作者:Aanish Bhirud @baanish
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v2.0.3
统计:⭐ 3 · 3.1k · 3 current installs · 3 all-time installs
⭐ 3
安装量(当前) 3
🛡 VirusTotal :良性 · OpenClaw :可疑
Package:baanish/tessie
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :可疑
OpenClaw 评估
The skill appears to implement Tessie/Tesla controls, but the package metadata omits required credentials and config paths and the runtime script reads the agent's Clawdbot config and can emit full API responses — these mismatches and potential data exposure warrant caution.
目的
The code and SKILL.md both describe a Tessie-based Tesla control skill (vehicle status, climate, charging, drives), so the capability matches the name. However the registry metadata claims no required env vars or config paths, while SKILL.md and the script clearly expect a TESSIE_API_KEY and read a Clawdbot config (~/.clawdbot/clawdbot.json). Also the script depends on external binaries (jq, curl) that are not declared. The omission in metadat…
说明范围
SKILL.md and the bundled script instruct the agent to call Tessie endpoints using an API key and to auto-detect vehicle info from the user's Clawdbot config. The script reads the user's ~/.clawdbot/clawdbot.json to extract the API key and vehicle id/VIN. Some error branches print raw API responses (e.g., 'Response: $RESULT'), which can contain PII/location/vehicle metadata. There are also references to functions or checks in the script that ap…
安装机制
This is an instruction-only skill with a bundled script; there is no install spec that downloads external code. No remote installs or archives are used, which reduces installer risk.
证书
The skill requires an API key for Tessie (TESSIE_API_KEY) and optionally a vehicle id; SKILL.md asks users to set the key via environment or the Clawdbot config. Yet the registry lists no required environment variables and no config path requirements. The script reading the Clawdbot config could access unrelated stored data (potentially other credentials) if the config contains them. The requested credential is reasonable for the claimed purpo…
持久
The skill is not always-on and can be invoked by the agent, which is normal. However the script reads the user's agent config (~/.clawdbot/clawdbot.json) to obtain credentials/vehicle info; that gives it access to a file which may contain other keys or metadata. While it appears to only jq specific fields, the code path that reads the file is not declared in metadata and debug output may leak API responses. This elevated file access without ex…
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Tessie Tesla Control」。简介:Control and monitor your Tesla vehicles via Tessie API for battery, climate, ch…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/baanish/tessie/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
# Tessie Skill
Control your Tesla vehicles via Tessie API - a Tesla management platform with 500,000+ users.
## Setup
Get your Tessie API credentials:
1. Go to https://tessie.com/developers
2. Sign up and create an API key
3. Configure in Clawdbot:
```yaml
skills:
entries:
tessie:
apiKey: "your-tessie-api-key-here"
```
Or via environment variable:
```bash
export TESSIE_API_KEY="your-tessie-api-key-here"
```
**Note**: Vehicle ID and VIN are auto-detected from API. No manual configuration needed.
## Capabilities
### Vehicle Status
- **Battery level**: Current state of charge percentage
- **Range**: Estimated driving range
- **Location**: Current vehicle coordinates
- **Vehicle state**: Locked/unlocked, charging status, sleep mode
- **Connection**: Is the car online/offline?
### Climate Control
- **Start/stop**: Turn climate on or off
- **Preheat/precool**: Set cabin temperature (auto-detects Fahrenheit/Celsius)
- **Defrost**: Defrost windows/mirrors
### Charging
- **Start/stop**: Control charging remotely
- **Charge limit**: Set daily/standard charge limit
- **Charging status**: Current rate, time to complete, battery level
### Drives
- **Recent drives**: Last trips with distance, energy, locations
## Usage Examples
```
# 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"
```
## API Endpoints (Tessie)
### Authentication
All requests require:
```
Authorization: Bearer <api-key>
```
### Get Vehicles
```
GET https://api.tessie.com/vehicles
```
Returns full vehicle list with `last_state` embedded
### Get Drives
```
GET https://api.tessie.com/{VIN}/drives?limit=10
```
Returns recent drive history
### Get Idles
```
GET https://api.tessie.com/{VIN}/idles?limit=10
```
Returns parked sessions with climate/sentry usage
### Commands
All control commands use VIN (not vehicle_id):
```
POST https://api.tessie.com/{VIN}/command/{command}
```
**Available commands**:
- `start_climate`, `stop_climate`, `set_temperatures`
- `start_charging`, `stop_charging`, `set_charge_limit`
- `lock`, `unlock`, `enable_sentry`, `disable_sentry`
- `activate_front_trunk`, `activate_rear_trunk`
- `open_windows`, `close_windows`, `vent_windows`
Full list: See https://developer.tessie.com
## Notes
- Tessie acts as a middleman between you and Tesla's API
- Provides richer data and analytics than raw Tesla API
- Requires Tesla account to be linked to Tessie first
- API uses VIN for commands (auto-detected)
- All temperatures in Celsius internally
- **NOT YET DEPLOYED** - Prepared for deployment pending user review