Automatic Number Plate Recognition

ReviewAudited by ClawScan on May 1, 2026.

Overview

This skill is a coherent license-plate OCR integration, but users should understand that it uploads local vehicle images to TrafficEye and uses an API key.

Install only if you are comfortable sending chosen vehicle images to TrafficEye for recognition. Configure the API key securely, prefer header or bearer authentication, and use the helper only on image files you intend to process.

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

The agent may execute the bundled helper and read the specified local image file so it can be sent for recognition.

Why it was flagged

The skill instructs the agent to run a local Python helper on a user-provided image path. This is central to the stated ANPR purpose and is scoped to the image-recognition workflow.

Skill content
Run `python3 recognize_plate.py <image-path> --format json`.
Recommendation

Use the skill only with image paths or attachments you intend to process, and avoid pointing it at unrelated private files.

What this means

Anyone with the configured key may be able to use the associated TrafficEye account or quota.

Why it was flagged

The skill needs a TrafficEye API key and supports several transport modes. This is expected for the TrafficEye integration, but API keys are account credentials and query/form transport can be less desirable depending on logging and deployment.

Skill content
`TRAFFICEYE_API_KEY`: required unless passed explicitly to the helper. `TRAFFICEYE_API_KEY_MODE`: one of `header`, `bearer`, `form`, `query`.
Recommendation

Store the API key securely, prefer the provider-recommended header or bearer mode, and avoid query-string key transport unless your deployment specifically requires it.

What this means

The selected image and resulting plate information may leave the local machine and be processed by TrafficEye.

Why it was flagged

The core workflow sends a local image to an external recognition service. This is clearly disclosed and purpose-aligned, but vehicle images and license-plate data can be sensitive.

Skill content
Uploads the image to the TrafficEye recognition API.
Recommendation

Only use this skill with images you are comfortable sending to TrafficEye, and review the provider’s privacy and retention terms if the images contain personal or regulated data.