Full Webpage Screenshot
Analysis
This skill does what it claims—captures webpage screenshots—but users should notice that it installs Puppeteer and runs Chromium with its sandbox disabled.
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.
First-time setup (installs Puppeteer): ```bash cd ~/.openclaw/skills/full-webpage-screenshot/scripts npm install ```
The skill asks the user to install npm dependencies. This is expected for Puppeteer-based screenshots, but it introduces normal third-party package supply-chain exposure.
puppeteer.launch({
headless: 'new',
args: ['--no-sandbox', '--disable-setuid-sandbox']
});The skill launches Chromium with sandboxing disabled while visiting user-supplied webpages. This may be used for compatibility, but it weakens browser isolation if a malicious page is rendered.
