XHS Video Downloader
Analysis
The skill matches its video-downloading purpose, but its recommended workflow can put page-extracted URLs directly into a shell command, so it should be reviewed before use.
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
Extract the video URL with JavaScript ... html.match(/https?:\/\/[^"\s]+\.mp4[^"\s]*/g); ... curl -L -o output.mp4 "<VIDEO_URL>"
The recommended method takes a URL found in webpage HTML and places it into a shell command. The artifacts do not require validating that the URL is an expected Xiaohongshu CDN URL or passing it as a shell-safe argument.
Requirements:
- requests: pip install requests
...
import requestsThe helper uses an external Python dependency, but the supplied artifacts include no install spec, version pin, or lockfile.
