Parallel 1.0.1

ReviewAudited by ClawScan on May 10, 2026.

Overview

The skill matches its web-search purpose, but it embeds an undeclared Parallel.ai API key that may route searches through an unknown account.

Use caution before installing. The search functionality is consistent with the description, but you should prefer configuring your own PARALLEL_API_KEY and avoid relying on the embedded key. Also review the unpinned Python dependency before installing it.

Findings (2)

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

Your searches could be made under an unknown Parallel.ai account, affecting billing, audit logs, rate limits, and who may be able to view query history.

Why it was flagged

The script uses an embedded API key as the default credential when the user has not configured PARALLEL_API_KEY, while the registry metadata declares no primary credential or required environment variable.

Skill content
API_KEY = os.environ.get("PARALLEL_API_KEY", "y2s_...q_jg1")
Recommendation

Remove the embedded key, require users to provide their own PARALLEL_API_KEY, and declare that credential requirement in the skill metadata.

What this means

Installing the dependency will trust the current package published under that name at install time.

Why it was flagged

The setup instructions install an unpinned Python package. This is expected for an SDK-based search integration, but the artifact does not pin a version or provide a lockfile.

Skill content
pip install parallel-web
Recommendation

Install from a trusted Python package index, consider pinning a known-good version, and verify the package before use.