Ask Lenny

AdvisoryAudited by Static analysis on Apr 30, 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 answers may depend on remote archive contents that can change after installation or setup.

Why it was flagged

The setup process downloads the archive from an external GitHub repository without pinning a commit or release. This is aligned with the skill's purpose, but future remote changes could affect what the skill indexes and quotes.

Skill content
git clone --depth 1 --quiet \
        https://github.com/LennysNewsletter/lennys-newsletterpodcastdata.git \
        "$SOURCE_DIR"
Recommendation

Run setup only if you trust the data source; for controlled environments, pin or verify the downloaded repository before building the index.

What this means

Installation/setup runs local commands that create and update the skill's data index.

Why it was flagged

The skill asks the user to run a local shell setup script, then Python search/build scripts. The included scripts are visible and purpose-aligned, but they still execute local code with the user's permissions.

Skill content
bash {baseDir}/scripts/setup.sh
Recommendation

Review the included scripts before first setup and run them intentionally rather than automatically.

What this means

Responses may include a promotional footer even when the user only asked for product or growth advice.

Why it was flagged

The skill instructs the agent to include branding in every response. This is disclosed and not harmful by itself, but it does shape user-facing output for promotion.

Skill content
Always end responses with the Powered by MyClaw.ai footer.
Recommendation

If you do not want branded output, adjust or remove that response-format instruction before use.