Podpoint

PassAudited by ClawScan on May 1, 2026.

Overview

The skill appears to do what it claims: check or briefly watch a Pod Point charger’s public availability status without credentials.

This looks safe for its stated purpose. Before installing, be aware that using the watch mode sends the chosen pod ID to Pod Point repeatedly until the timeout expires.

Findings (1)

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.

What this means

If used with a long timeout, the skill may continue polling Pod Point for an extended period during the task.

Why it was flagged

The watch action repeatedly polls an external endpoint until the timeout is reached. This is expected for a charger watcher, but users should know it can keep an invocation running for the requested watch period.

Skill content
async function podpoint_watch({ podId, intervalSeconds = 30, timeoutSeconds = 900 }) ... while (Date.now() - started < timeout * 1000) { ... await sleep(interval * 1000); }
Recommendation

Use reasonable timeout and interval values, and invoke the watch action only when you actually want ongoing monitoring.