PLS URL to Markdown

PassAudited by ClawScan on May 1, 2026.

Overview

This is a straightforward instruction-only URL-to-Markdown helper, with the main caution being that it suggests installing packages and running URL-fetching commands.

This skill appears safe for its stated purpose. Before using it, be comfortable with installing the suggested packages or tools, and only fetch URLs whose content you intend to process into Markdown.

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

Installing these packages could add third-party code to the user's environment.

Why it was flagged

The skill suggests installing external Python packages without pinned versions. This is user-directed and purpose-aligned, but users should understand they are trusting packages from the Python package ecosystem.

Skill content
pip install requests beautifulsoup4 markdownify
Recommendation

Install in a virtual environment, verify package names, and pin versions if reproducibility or supply-chain control matters.

What this means

The tool may make network requests to URLs chosen during use and pass the returned HTML into local converters.

Why it was flagged

The skill documents local command-line fetching and conversion of a user-provided URL. This is central to the skill's purpose and not suspicious, but it means the agent/user may retrieve and process arbitrary web content.

Skill content
curl -s URL | html2text
wget -q -O - URL | pandoc -f html -t markdown
Recommendation

Use trusted or intended URLs, and avoid converting sensitive internal pages unless that is explicitly desired.