Test Gas Skill

PassAudited by ClawScan on May 1, 2026.

Overview

This skill is a coherent gas-price lookup and alert tool, with disclosed network lookups, optional setup steps, and user-configured daily notifications.

This appears safe for its stated purpose. Before installing, be aware that it uses external map/gas-price services, requires manual Python dependency installation, and can create a daily scheduled alert if you configure the cron example.

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.

What this means

You may need to install Python packages before the skill works, and optional Playwright setup can add a browser automation dependency.

Why it was flagged

The skill is listed as having no install spec, but the documentation requires manual package installation for normal use and optionally installs Playwright. This is disclosed and purpose-aligned, but users should notice the dependency setup.

Skill content
Install required packages:

```bash
pip install requests geopy
```

For Playwright-based GasBuddy scraping (optional):

```bash
pip install playwright
playwright install
```
Recommendation

Install dependencies only from trusted package sources and skip the optional Playwright/GasBuddy path unless you need it.

NoteHigh Confidence
ASI10: Rogue Agents
What this means

If you configure the cron example, the agent will run a gas-price check every morning.

Why it was flagged

The skill provides a recurring cron example for daily gas-price alerts. Recurring agent activity is disclosed and matches the monitoring purpose, but it creates persistent scheduled behavior if the user enables it.

Skill content
"schedule": {
    "kind": "cron",
    "expr": "0 8 * * *",
    "tz": "America/New_York"
  }
Recommendation

Enable the schedule only if you want recurring alerts, and review or remove the cron job when it is no longer needed.

What this means

Daily alerts may include your selected area, fuel type, and nearby stations in a Telegram message.

Why it was flagged

The skill states that summaries may be sent through Telegram. This is purpose-aligned notification behavior, but it can disclose location and fuel preferences to an external messaging channel.

Skill content
The agent will:
1. Search for gas stations in your area
2. Identify Costco and discount stations
3. Generate a summary with the cheapest options
4. Send the summary via Telegram
Recommendation

Use Telegram notifications only if you are comfortable sending this location-related summary through that channel.