Ev Charger
PassAudited by ClawScan on May 13, 2026.
Overview
This appears to be a straightforward EV charger lookup skill, with the main considerations being that it sends your search/location data to Camino AI using your API key and includes optional broader install guidance.
This skill looks reasonable for its stated purpose. Before installing, make sure you are comfortable sending EV charger searches and locations to Camino AI, store the CAMINO_API_KEY carefully, and prefer installing only `camino-ev-charger` unless you intentionally want the full Camino skill suite.
Findings (3)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Anyone installing the skill must provide a Camino API key; misuse or exposure of that key could allow use of the associated Camino account quota or billing.
The skill uses a service API key, which is sensitive account authority. This is disclosed and purpose-aligned for calling Camino AI, and the included script does not show unrelated credential use.
These skills shell out to `curl` and authenticate via the `CAMINO_API_KEY` environment variable.
Use a Camino API key intended for this purpose, avoid committing or sharing Claude settings containing the key, and rotate the key if it may have been exposed.
Your charger searches and any provided locations are sent to Camino AI for processing.
The script sends the user’s EV charger query, coordinates/radius if provided, and the Camino API key to Camino’s API. This external provider flow is expected for the skill’s stated purpose.
curl -s -X GET \
-H "X-API-Key: $CAMINO_API_KEY" \
-H "X-Client: claude-code-skill" \
"https://api.getcamino.ai/query?${QUERY_STRING}" | jq .Only use the skill for location queries you are comfortable sending to Camino AI, and review Camino’s privacy and retention practices if the locations are sensitive.
If you follow the broad install command, you may add multiple related skills rather than just the EV charger finder.
The documentation includes a user-directed option to install a broader set of companion skills from an external GitHub repository, which expands the trusted code/instruction surface beyond this EV charger skill.
Install all available skills ... `npx skills add https://github.com/barneyjm/camino-skills`
Install only the specific skill you need unless you intentionally want the full suite, and review the referenced repository before installing from it.
