ValueSERP Rank Checker

AdvisoryAudited by Static analysis on May 9, 2026.

Overview

No suspicious patterns detected.

Findings (0)

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 skill can use your ValueSERP account quota and sends the API key to ValueSERP as part of normal API requests.

Why it was flagged

The script reads the declared ValueSERP API key from the environment and uses it in requests to the fixed ValueSERP endpoint. This is necessary for the integration, but it is still credential-backed access.

Skill content
api_key = os.environ.get("VALUESERP_API_KEY") ... "api_key": api_key ... base_url = "https://api.valueserp.com/search"
Recommendation

Use a dedicated ValueSERP key if possible, monitor API usage, and avoid sharing logs or configuration that might expose the key.

What this means

The skill may fail on systems without python3 even though the metadata does not declare that requirement.

Why it was flagged

The documented workflow depends on python3, while the registry requirements state that no required binaries are needed. This is a minor runtime metadata gap, not evidence of hidden installation or unsafe dependency use.

Skill content
python3 scripts/check_rank.py "<keyword>" <domain>
Recommendation

Declare python3 as a required binary or ensure the runtime provides it before installing.