{
  "schemaVersion": "1.0",
  "item": {
    "slug": "my-tesla",
    "name": "My Tesla",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/officialpm/my-tesla",
    "canonicalUrl": "https://clawhub.ai/officialpm/my-tesla",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/my-tesla",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=my-tesla",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "CHANGELOG.md",
      "README.md",
      "SKILL.md",
      "VERSION.txt",
      "scripts/run_tests.sh",
      "scripts/tesla.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/my-tesla"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/my-tesla",
    "agentPageUrl": "https://openagent3.xyz/skills/my-tesla/agent",
    "manifestUrl": "https://openagent3.xyz/skills/my-tesla/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/my-tesla/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "My Tesla",
        "body": "Author: Parth Maniar — @officialpm\n\nA practical Tesla control skill for Clawdbot built on teslapy."
      },
      {
        "title": "Requirements",
        "body": "TESLA_EMAIL env var set (your Tesla account email)\nPython 3.10+"
      },
      {
        "title": "First-time authentication",
        "body": "TESLA_EMAIL=\"you@email.com\" python3 {baseDir}/scripts/tesla.py auth\n\nThis opens a Tesla login URL. Log in, then paste the callback URL back into the CLI.\n\nToken cache: ~/.tesla_cache.json (local only; best-effort chmod 0600)\nOptional: set MY_TESLA_DEFAULT_CAR to a vehicle display name to pick a default car via env var\nOr persist a local default with: python3 {baseDir}/scripts/tesla.py default-car \"Name\" (writes ~/.my_tesla.json; best-effort chmod 0600)"
      },
      {
        "title": "Commands",
        "body": "# List vehicles\npython3 {baseDir}/scripts/tesla.py list\npython3 {baseDir}/scripts/tesla.py list --json   # machine-readable, privacy-safe\n\n# Version\npython3 {baseDir}/scripts/tesla.py version\npython3 {baseDir}/scripts/tesla.py --version\n\n# Debugging\n# If something fails unexpectedly, add --debug for a full traceback\n# (or set MY_TESLA_DEBUG=1)\npython3 {baseDir}/scripts/tesla.py --debug status --no-wake\n\n# Pick a car (optional)\n# --car accepts: exact name, partial name (substring match), or a 1-based index from `list`\npython3 {baseDir}/scripts/tesla.py --car \"Model\" status\npython3 {baseDir}/scripts/tesla.py --car 1 report\n\n# Set a default car (used when --car is not passed)\npython3 {baseDir}/scripts/tesla.py default-car \"My Model 3\"\n\n# One-line summary (best for chat)\npython3 {baseDir}/scripts/tesla.py summary\npython3 {baseDir}/scripts/tesla.py summary --no-wake   # don't wake a sleeping car\n\n# Summary as JSON (privacy-safe)\n# Unlike `status --json`, this emits a small sanitized object (no location).\n# Includes `usable_level_percent` when the vehicle reports it.\npython3 {baseDir}/scripts/tesla.py summary --json\npython3 {baseDir}/scripts/tesla.py summary --json --raw-json   # raw vehicle_data (may include location)\n\n# One-screen report (chat friendly, more detail)\n# Includes battery/charging/climate + (when available) TPMS tire pressures.\n# Includes \"Usable battery\" when the vehicle reports it (helpful for health/degradation).\n# Also includes a quick openings summary (doors/trunk/frunk/windows) when available.\n# When available, includes a compact seat heater summary line.\n# When the vehicle reports it, includes scheduled departure / preconditioning / off-peak charging status.\npython3 {baseDir}/scripts/tesla.py report\npython3 {baseDir}/scripts/tesla.py report --no-wake\n\n# Detailed status\npython3 {baseDir}/scripts/tesla.py status\npython3 {baseDir}/scripts/tesla.py status --no-wake\npython3 {baseDir}/scripts/tesla.py status --summary   # include one-line summary + detailed output\npython3 {baseDir}/scripts/tesla.py --car \"My Model 3\" status\n\n# JSON output (prints ONLY JSON; good for piping/parsing)\n# NOTE: `status --json` outputs *raw* `vehicle_data`, which may include location/drive_state.\n# Prefer `summary --json` (sanitized) or `report --json` (sanitized) unless you explicitly need the raw payload.\npython3 {baseDir}/scripts/tesla.py summary --json              # sanitized summary object (no location)\npython3 {baseDir}/scripts/tesla.py report --json               # sanitized report object (no location; includes scheduled charging + charge port state)\npython3 {baseDir}/scripts/tesla.py status --json               # raw vehicle_data (may include location)\npython3 {baseDir}/scripts/tesla.py report --json --raw-json    # raw vehicle_data (may include location)\npython3 {baseDir}/scripts/tesla.py summary --json --raw-json   # raw vehicle_data (may include location)\npython3 {baseDir}/scripts/tesla.py charge status --json   # includes usable battery + (when charging) power details (kW/V/A)\n\n# Lock / unlock\npython3 {baseDir}/scripts/tesla.py lock\npython3 {baseDir}/scripts/tesla.py unlock\n\n# Climate (status is read-only)\npython3 {baseDir}/scripts/tesla.py climate status\npython3 {baseDir}/scripts/tesla.py climate status --no-wake\npython3 {baseDir}/scripts/tesla.py climate on\npython3 {baseDir}/scripts/tesla.py climate off\npython3 {baseDir}/scripts/tesla.py climate defrost on\npython3 {baseDir}/scripts/tesla.py climate defrost off\npython3 {baseDir}/scripts/tesla.py climate temp 72      # default: °F\npython3 {baseDir}/scripts/tesla.py climate temp 22 --celsius\n\n# Charging\npython3 {baseDir}/scripts/tesla.py charge status\npython3 {baseDir}/scripts/tesla.py charge status --no-wake\npython3 {baseDir}/scripts/tesla.py charge start --yes\npython3 {baseDir}/scripts/tesla.py charge stop  --yes\npython3 {baseDir}/scripts/tesla.py charge limit 80 --yes   # 50–100\npython3 {baseDir}/scripts/tesla.py charge amps 16 --yes    # 1–48 (conservative guardrail)\n\n# Scheduled charging (set/off are safety gated)\npython3 {baseDir}/scripts/tesla.py scheduled-charging status\npython3 {baseDir}/scripts/tesla.py scheduled-charging status --no-wake\npython3 {baseDir}/scripts/tesla.py scheduled-charging set 23:30 --yes\npython3 {baseDir}/scripts/tesla.py scheduled-charging off --yes\n\n# Scheduled departure (read-only)\n# Shows scheduled departure, preconditioning, and off-peak charging flags (when the vehicle reports them).\npython3 {baseDir}/scripts/tesla.py scheduled-departure status\npython3 {baseDir}/scripts/tesla.py scheduled-departure status --no-wake\npython3 {baseDir}/scripts/tesla.py --json scheduled-departure status\n\n# Location (approx by default; use --yes for precise coordinates)\npython3 {baseDir}/scripts/tesla.py location\npython3 {baseDir}/scripts/tesla.py location --no-wake\npython3 {baseDir}/scripts/tesla.py location --digits 1   # coarser rounding\npython3 {baseDir}/scripts/tesla.py location --digits 3   # a bit more precise (still approximate)\npython3 {baseDir}/scripts/tesla.py location --yes\n\n# Tire pressures (TPMS)\npython3 {baseDir}/scripts/tesla.py tires\npython3 {baseDir}/scripts/tesla.py tires --no-wake\n\n# Openings (doors/trunks/windows)\npython3 {baseDir}/scripts/tesla.py openings\npython3 {baseDir}/scripts/tesla.py openings --no-wake\npython3 {baseDir}/scripts/tesla.py openings --json\n\n# Trunk / frunk (safety gated)\npython3 {baseDir}/scripts/tesla.py trunk trunk --yes\npython3 {baseDir}/scripts/tesla.py trunk frunk --yes\n\n# Windows\npython3 {baseDir}/scripts/tesla.py windows status\npython3 {baseDir}/scripts/tesla.py windows status --no-wake\npython3 {baseDir}/scripts/tesla.py windows status --json\n\n# Windows (safety gated)\npython3 {baseDir}/scripts/tesla.py windows vent  --yes\npython3 {baseDir}/scripts/tesla.py windows close --yes\n\n# Seat heaters\npython3 {baseDir}/scripts/tesla.py seats status\npython3 {baseDir}/scripts/tesla.py seats status --no-wake\npython3 {baseDir}/scripts/tesla.py seats status --json\n\n# Seat heaters (safety gated)\n# seat: driver|passenger|rear-left|rear-center|rear-right|3rd-left|3rd-right (or 0–6)\n# level: 0–3 (0=off)\npython3 {baseDir}/scripts/tesla.py seats set driver 3 --yes\n\n# Sentry Mode (status is read-only; on/off safety gated)\npython3 {baseDir}/scripts/tesla.py sentry status\npython3 {baseDir}/scripts/tesla.py sentry status --no-wake\npython3 {baseDir}/scripts/tesla.py sentry on  --yes\npython3 {baseDir}/scripts/tesla.py sentry off --yes\n\n# Charge port door\npython3 {baseDir}/scripts/tesla.py charge-port status\npython3 {baseDir}/scripts/tesla.py charge-port status --no-wake\npython3 {baseDir}/scripts/tesla.py charge-port status --json\n\n# Mileage tracking (odometer) — local SQLite\npython3 {baseDir}/scripts/tesla.py mileage init\npython3 {baseDir}/scripts/tesla.py mileage record --no-wake --auto-wake-after-hours 24\npython3 {baseDir}/scripts/tesla.py mileage status\npython3 {baseDir}/scripts/tesla.py mileage export --format csv\npython3 {baseDir}/scripts/tesla.py mileage export --format csv --since-days 7\npython3 {baseDir}/scripts/tesla.py mileage export --format json\npython3 {baseDir}/scripts/tesla.py mileage export --format json --since-ts 1738195200\n\n# Charge port door open/close (safety gated)\npython3 {baseDir}/scripts/tesla.py charge-port open  --yes\npython3 {baseDir}/scripts/tesla.py charge-port close --yes\n\n# Fun / attention-grabbing\npython3 {baseDir}/scripts/tesla.py honk   --yes\npython3 {baseDir}/scripts/tesla.py flash  --yes"
      },
      {
        "title": "Safety defaults",
        "body": "Some actions require an explicit confirmation flag:\n\nunlock, charge start|stop|limit|amps, trunk, windows, seats set, sentry on|off, honk, flash, charge-port open|close, and scheduled-charging set|off require --yes\nlocation is approximate by default; add --yes for precise coordinates (or --digits N to control rounding)"
      },
      {
        "title": "Privacy",
        "body": "Credentials are cached locally only (~/.tesla_cache.json).\nDo not commit tokens, logs, VINs, or location outputs."
      }
    ],
    "body": "My Tesla\n\nAuthor: Parth Maniar — @officialpm\n\nA practical Tesla control skill for Clawdbot built on teslapy.\n\nSetup\nRequirements\nTESLA_EMAIL env var set (your Tesla account email)\nPython 3.10+\nFirst-time authentication\nTESLA_EMAIL=\"you@email.com\" python3 {baseDir}/scripts/tesla.py auth\n\n\nThis opens a Tesla login URL. Log in, then paste the callback URL back into the CLI.\n\nToken cache: ~/.tesla_cache.json (local only; best-effort chmod 0600)\nOptional: set MY_TESLA_DEFAULT_CAR to a vehicle display name to pick a default car via env var\nOr persist a local default with: python3 {baseDir}/scripts/tesla.py default-car \"Name\" (writes ~/.my_tesla.json; best-effort chmod 0600)\nCommands\n# List vehicles\npython3 {baseDir}/scripts/tesla.py list\npython3 {baseDir}/scripts/tesla.py list --json   # machine-readable, privacy-safe\n\n# Version\npython3 {baseDir}/scripts/tesla.py version\npython3 {baseDir}/scripts/tesla.py --version\n\n# Debugging\n# If something fails unexpectedly, add --debug for a full traceback\n# (or set MY_TESLA_DEBUG=1)\npython3 {baseDir}/scripts/tesla.py --debug status --no-wake\n\n# Pick a car (optional)\n# --car accepts: exact name, partial name (substring match), or a 1-based index from `list`\npython3 {baseDir}/scripts/tesla.py --car \"Model\" status\npython3 {baseDir}/scripts/tesla.py --car 1 report\n\n# Set a default car (used when --car is not passed)\npython3 {baseDir}/scripts/tesla.py default-car \"My Model 3\"\n\n# One-line summary (best for chat)\npython3 {baseDir}/scripts/tesla.py summary\npython3 {baseDir}/scripts/tesla.py summary --no-wake   # don't wake a sleeping car\n\n# Summary as JSON (privacy-safe)\n# Unlike `status --json`, this emits a small sanitized object (no location).\n# Includes `usable_level_percent` when the vehicle reports it.\npython3 {baseDir}/scripts/tesla.py summary --json\npython3 {baseDir}/scripts/tesla.py summary --json --raw-json   # raw vehicle_data (may include location)\n\n# One-screen report (chat friendly, more detail)\n# Includes battery/charging/climate + (when available) TPMS tire pressures.\n# Includes \"Usable battery\" when the vehicle reports it (helpful for health/degradation).\n# Also includes a quick openings summary (doors/trunk/frunk/windows) when available.\n# When available, includes a compact seat heater summary line.\n# When the vehicle reports it, includes scheduled departure / preconditioning / off-peak charging status.\npython3 {baseDir}/scripts/tesla.py report\npython3 {baseDir}/scripts/tesla.py report --no-wake\n\n# Detailed status\npython3 {baseDir}/scripts/tesla.py status\npython3 {baseDir}/scripts/tesla.py status --no-wake\npython3 {baseDir}/scripts/tesla.py status --summary   # include one-line summary + detailed output\npython3 {baseDir}/scripts/tesla.py --car \"My Model 3\" status\n\n# JSON output (prints ONLY JSON; good for piping/parsing)\n# NOTE: `status --json` outputs *raw* `vehicle_data`, which may include location/drive_state.\n# Prefer `summary --json` (sanitized) or `report --json` (sanitized) unless you explicitly need the raw payload.\npython3 {baseDir}/scripts/tesla.py summary --json              # sanitized summary object (no location)\npython3 {baseDir}/scripts/tesla.py report --json               # sanitized report object (no location; includes scheduled charging + charge port state)\npython3 {baseDir}/scripts/tesla.py status --json               # raw vehicle_data (may include location)\npython3 {baseDir}/scripts/tesla.py report --json --raw-json    # raw vehicle_data (may include location)\npython3 {baseDir}/scripts/tesla.py summary --json --raw-json   # raw vehicle_data (may include location)\npython3 {baseDir}/scripts/tesla.py charge status --json   # includes usable battery + (when charging) power details (kW/V/A)\n\n# Lock / unlock\npython3 {baseDir}/scripts/tesla.py lock\npython3 {baseDir}/scripts/tesla.py unlock\n\n# Climate (status is read-only)\npython3 {baseDir}/scripts/tesla.py climate status\npython3 {baseDir}/scripts/tesla.py climate status --no-wake\npython3 {baseDir}/scripts/tesla.py climate on\npython3 {baseDir}/scripts/tesla.py climate off\npython3 {baseDir}/scripts/tesla.py climate defrost on\npython3 {baseDir}/scripts/tesla.py climate defrost off\npython3 {baseDir}/scripts/tesla.py climate temp 72      # default: °F\npython3 {baseDir}/scripts/tesla.py climate temp 22 --celsius\n\n# Charging\npython3 {baseDir}/scripts/tesla.py charge status\npython3 {baseDir}/scripts/tesla.py charge status --no-wake\npython3 {baseDir}/scripts/tesla.py charge start --yes\npython3 {baseDir}/scripts/tesla.py charge stop  --yes\npython3 {baseDir}/scripts/tesla.py charge limit 80 --yes   # 50–100\npython3 {baseDir}/scripts/tesla.py charge amps 16 --yes    # 1–48 (conservative guardrail)\n\n# Scheduled charging (set/off are safety gated)\npython3 {baseDir}/scripts/tesla.py scheduled-charging status\npython3 {baseDir}/scripts/tesla.py scheduled-charging status --no-wake\npython3 {baseDir}/scripts/tesla.py scheduled-charging set 23:30 --yes\npython3 {baseDir}/scripts/tesla.py scheduled-charging off --yes\n\n# Scheduled departure (read-only)\n# Shows scheduled departure, preconditioning, and off-peak charging flags (when the vehicle reports them).\npython3 {baseDir}/scripts/tesla.py scheduled-departure status\npython3 {baseDir}/scripts/tesla.py scheduled-departure status --no-wake\npython3 {baseDir}/scripts/tesla.py --json scheduled-departure status\n\n# Location (approx by default; use --yes for precise coordinates)\npython3 {baseDir}/scripts/tesla.py location\npython3 {baseDir}/scripts/tesla.py location --no-wake\npython3 {baseDir}/scripts/tesla.py location --digits 1   # coarser rounding\npython3 {baseDir}/scripts/tesla.py location --digits 3   # a bit more precise (still approximate)\npython3 {baseDir}/scripts/tesla.py location --yes\n\n# Tire pressures (TPMS)\npython3 {baseDir}/scripts/tesla.py tires\npython3 {baseDir}/scripts/tesla.py tires --no-wake\n\n# Openings (doors/trunks/windows)\npython3 {baseDir}/scripts/tesla.py openings\npython3 {baseDir}/scripts/tesla.py openings --no-wake\npython3 {baseDir}/scripts/tesla.py openings --json\n\n# Trunk / frunk (safety gated)\npython3 {baseDir}/scripts/tesla.py trunk trunk --yes\npython3 {baseDir}/scripts/tesla.py trunk frunk --yes\n\n# Windows\npython3 {baseDir}/scripts/tesla.py windows status\npython3 {baseDir}/scripts/tesla.py windows status --no-wake\npython3 {baseDir}/scripts/tesla.py windows status --json\n\n# Windows (safety gated)\npython3 {baseDir}/scripts/tesla.py windows vent  --yes\npython3 {baseDir}/scripts/tesla.py windows close --yes\n\n# Seat heaters\npython3 {baseDir}/scripts/tesla.py seats status\npython3 {baseDir}/scripts/tesla.py seats status --no-wake\npython3 {baseDir}/scripts/tesla.py seats status --json\n\n# Seat heaters (safety gated)\n# seat: driver|passenger|rear-left|rear-center|rear-right|3rd-left|3rd-right (or 0–6)\n# level: 0–3 (0=off)\npython3 {baseDir}/scripts/tesla.py seats set driver 3 --yes\n\n# Sentry Mode (status is read-only; on/off safety gated)\npython3 {baseDir}/scripts/tesla.py sentry status\npython3 {baseDir}/scripts/tesla.py sentry status --no-wake\npython3 {baseDir}/scripts/tesla.py sentry on  --yes\npython3 {baseDir}/scripts/tesla.py sentry off --yes\n\n# Charge port door\npython3 {baseDir}/scripts/tesla.py charge-port status\npython3 {baseDir}/scripts/tesla.py charge-port status --no-wake\npython3 {baseDir}/scripts/tesla.py charge-port status --json\n\n# Mileage tracking (odometer) — local SQLite\npython3 {baseDir}/scripts/tesla.py mileage init\npython3 {baseDir}/scripts/tesla.py mileage record --no-wake --auto-wake-after-hours 24\npython3 {baseDir}/scripts/tesla.py mileage status\npython3 {baseDir}/scripts/tesla.py mileage export --format csv\npython3 {baseDir}/scripts/tesla.py mileage export --format csv --since-days 7\npython3 {baseDir}/scripts/tesla.py mileage export --format json\npython3 {baseDir}/scripts/tesla.py mileage export --format json --since-ts 1738195200\n\n# Charge port door open/close (safety gated)\npython3 {baseDir}/scripts/tesla.py charge-port open  --yes\npython3 {baseDir}/scripts/tesla.py charge-port close --yes\n\n# Fun / attention-grabbing\npython3 {baseDir}/scripts/tesla.py honk   --yes\npython3 {baseDir}/scripts/tesla.py flash  --yes\n\nSafety defaults\n\nSome actions require an explicit confirmation flag:\n\nunlock, charge start|stop|limit|amps, trunk, windows, seats set, sentry on|off, honk, flash, charge-port open|close, and scheduled-charging set|off require --yes\nlocation is approximate by default; add --yes for precise coordinates (or --digits N to control rounding)\nPrivacy\nCredentials are cached locally only (~/.tesla_cache.json).\nDo not commit tokens, logs, VINs, or location outputs."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/officialpm/my-tesla",
    "publisherUrl": "https://clawhub.ai/officialpm/my-tesla",
    "owner": "officialpm",
    "version": "0.1.64",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/my-tesla",
    "downloadUrl": "https://openagent3.xyz/downloads/my-tesla",
    "agentUrl": "https://openagent3.xyz/skills/my-tesla/agent",
    "manifestUrl": "https://openagent3.xyz/skills/my-tesla/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/my-tesla/agent.md"
  }
}