Stock Screener

PassAudited by ClawScan on May 1, 2026.

Overview

This skill is coherently limited to fetching public stock screener data from a disclosed Intellectia API, with no credentials, persistence, or local data access shown.

Before installing, note that the skill contacts Intellectia's public API and may install the Python requests package for the Python example. It does not show credential use, local file access, persistence, or account-changing actions.

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

Using the Python workflow may add a Python package to the local environment.

Why it was flagged

The skill may install a Python dependency for its example client. This is consistent with the documented Python requests usage, but it still introduces a third-party package installation for users who choose that path.

Skill content
"install":[{"id":"python","kind":"pip","package":"requests","bins":[],"label":"Install requests (pip)"}]
Recommendation

Install dependencies in a trusted or isolated Python environment and verify the package source if package installation is triggered.

What this means

Queries are sent to Intellectia's API, so the provider can see requested screener parameters.

Why it was flagged

The skill documents use of curl or Python to call an external API. The call is read-only, fixed to the stated service, and aligned with the skill purpose.

Skill content
curl -sS "https://api.intellectia.ai/gateway/v1/stock/screener-list?..."
Recommendation

Use the skill only when you are comfortable sending the selected stock-screening filters to the external API.