# Send check charger availbility to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
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. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "charger",
    "name": "check charger availbility",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Borahm/charger",
    "canonicalUrl": "https://clawhub.ai/Borahm/charger",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/charger",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=charger",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "scripts/charger-notify.sh",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "charger",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-11T19:43:14.956Z",
      "expiresAt": "2026-05-18T19:43:14.956Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=charger",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=charger",
        "contentDisposition": "attachment; filename=\"charger-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "charger"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/charger"
    },
    "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."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/charger",
    "downloadUrl": "https://openagent3.xyz/downloads/charger",
    "agentUrl": "https://openagent3.xyz/skills/charger/agent",
    "manifestUrl": "https://openagent3.xyz/skills/charger/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/charger/agent.md"
  }
}
```
## Documentation

### charger

Higher-level EV charger checker built on Google Places (New) EV charge data.

This skill includes a bin/charger CLI (Node.js) for checking charger availability.

### Setup

Requirements:

Node.js 18+ (Clawdbot already has Node)
GOOGLE_PLACES_API_KEY (recommended in ~/.clawdbot/.env)



Put the CLI on your PATH (example):

ln -sf "$(pwd)"/bin/charger /home/claw/clawd/bin/charger



Add a favorite:

charger favorites add home --place-id <placeId>

### Commands

Check a favorite / place id / query:

charger check home
charger check "Wien Energie Charging Station Liniengasse 2 1060 Wien"



Find nearby:

charger nearby --lat 48.188472 --lng 16.348854 --radius 2000 --max 10

### Notifications

The recommended pattern is:

charger (this skill) produces a clear Any free: YES|NO result.
A scheduled job (Gateway cron) runs a small helper that only prints output when it should notify.

### Helper script (what actually decides to notify)

This bundle includes scripts/charger-notify.sh.

What it does:

Runs charger check <target>
If Any free: YES and the last run was not YES, it prints a single notification line.
Otherwise it prints nothing.

So: no output = no notification.

State:

Stores last state in ~/.cache/charger-notify/<target>.state so it only notifies on the change NO/UNKNOWN → YES.

Usage:

bash scripts/charger-notify.sh home

Example notification output:

EV charger available: Tanke Wien Energie Charging Station — Amtshausgasse 9, 1050 Wien, Austria — 1/2 available (OOS 0) (updated 2026-01-21T21:05:00Z)

### Typical cron schedule (how you actually get Telegram pings)

Cron is the scheduler. It runs the helper script on a timer and sends you whatever the script prints.
Because the helper prints only when it becomes available, you only get messages when it matters.

Check every 10 minutes:

*/10 * * * *

If you want me to wire this into Clawdbot Gateway cron (so you get Telegram pings), tell me:

target (home)
interval (every 5/10/20 min)
quiet hours (optional)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Borahm
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-11T19:43:14.956Z
- Expires at: 2026-05-18T19:43:14.956Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/charger)
- [Send to Agent page](https://openagent3.xyz/skills/charger/agent)
- [JSON manifest](https://openagent3.xyz/skills/charger/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/charger/agent.md)
- [Download page](https://openagent3.xyz/downloads/charger)