FRED-Navigator

ReviewAudited by ClawScan on May 10, 2026.

Overview

The skill is mostly a coherent FRED data helper, but its query script weakens HTTPS certificate verification while using an API key.

Review the SSL override before installing or using the helper script. If you proceed, remove that override, install dependencies in an isolated environment, pin package versions where possible, and use a dedicated FRED API key.

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

A network attacker or misconfigured proxy could potentially intercept the FRED API key or tamper with returned economic data.

Why it was flagged

The script globally replaces Python's default HTTPS context before using fredapi, which can weaken certificate verification for outbound FRED API requests.

Skill content
ssl._create_default_https_context = ssl._create_stdlib_context
Recommendation

Remove the SSL context override and fix certificate issues by updating the system CA store or configuring trusted certificates explicitly.

What this means

The skill needs access to a FRED API key to make provider requests, even though the registry metadata does not declare a primary credential.

Why it was flagged

The helper requires and uses a FRED API key from the environment; this is purpose-aligned, but users should know a credential is involved.

Skill content
api_key = os.getenv("FRED_API_KEY") ... return Fred(api_key=api_key)
Recommendation

Use a dedicated FRED API key with minimal account impact and avoid placing it in shared logs, notebooks, or shell history.

What this means

Installing the skill could pull updated dependency versions with different behavior or vulnerabilities.

Why it was flagged

The Python dependencies are unpinned, so future installs may resolve to different package versions than the reviewed artifacts expect.

Skill content
fredapi
pandas
Recommendation

Pin dependency versions and, for higher assurance, use a lockfile or trusted package mirror.