Etf Assistant 1.0.1

PassAudited by ClawScan on May 1, 2026.

Overview

The skill is a coherent ETF lookup and calculator that does not access accounts or change data, though it makes Yahoo Finance requests and has minor packaging metadata gaps.

Before installing, know that quote and comparison requests go to Yahoo Finance, the local tools curl/python3/bc may be needed despite not being declared, and the investment outputs should be treated as informational rather than financial advice.

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

ETF codes queried through the price or compare commands may be sent to Yahoo Finance; the artifacts do not show credentials, local files, or account data being sent.

Why it was flagged

The quote and comparison features send the user-provided ETF code to a fixed Yahoo Finance endpoint. This is disclosed and purpose-aligned, but it is external network tool use.

Skill content
local response=$(curl -s "https://query1.finance.yahoo.com/v8/finance/chart/${code}.SS" 2>/dev/null | head -100)
Recommendation

Use it for public market-data lookups and avoid entering unrelated sensitive personal information as a ticker or search value.

What this means

The skill may fail or behave differently if expected local tools are missing, and users may need to reconcile the package metadata before relying on provenance.

Why it was flagged

The included shell script invokes curl, python3, and bc, so the runtime dependency contract is underdeclared. The packaged _meta.json also lists version 1.0.1 while the registry metadata lists 1.0.0, creating a minor provenance/packaging clarity issue.

Skill content
Version: 1.0.0; Required binaries (all must exist): none; No install spec
Recommendation

Declare required binaries and align registry/package metadata; users should review the shell file and ensure curl, python3, and bc are available before use.