Webpage Screenshot New
Capture and save screenshots of specified web pages using Puppeteer or similar tools.
MIT-0 · Free to use, modify, and redistribute. No attribution required.
⭐ 0 · 112 · 1 current installs · 1 all-time installs
MIT-0
Security Scan
OpenClaw
Benign
high confidencePurpose & Capability
Name and description match the instructions: SKILL.md tells the agent to install and use Puppeteer to capture web page screenshots. The included package.json is minimal but not contradictory. The skill does not request unrelated tools or credentials.
Instruction Scope
Instructions stay on-topic (install Node/npm, npm install puppeteer, run Puppeteer to screenshot a URL). The example code in SKILL.md contains syntax errors (missing quotes and incorrect require usage) and is not parameterized; it should be corrected before execution. The instructions do not direct the agent to read unrelated files, environment variables, or post data to external endpoints beyond loading the target web page.
Install Mechanism
This is an instruction-only skill (no install spec). The SKILL.md recommends installing puppeteer via npm, which is an expected mechanism. Be aware Puppeteer normally downloads a Chromium binary at install/run time (large network download and native binary execution). No downloads from unusual or untrusted URLs are recommended in the SKILL.md.
Credentials
The skill requests no environment variables, credentials, or config paths. This is proportionate for a screenshot tool. Note: capturing authenticated pages would require credentials, but the skill does not request or handle any secrets.
Persistence & Privilege
The skill is not always-enabled and does not request elevated or persistent platform privileges. It does not modify other skills' configuration or system-wide settings.
Assessment
This skill is coherent for taking webpage screenshots with Puppeteer, but before installing or running it: (1) correct and review the example code (it has syntax errors) and test in a safe environment; (2) be prepared for Puppeteer to download a Chromium binary (network download, disk usage, native code execution); (3) avoid passing sensitive pages or credentials to the tool unless you trust the runtime and code; and (4) only install packages from the official npm registry and verify they are the expected packages.Like a lobster shell, security has layers — review code before you run it.
Current versionv1.0.0
Download ziplatest
License
MIT-0
Free to use, modify, and redistribute. No attribution required.
SKILL.md
网页截屏技能
此技能用于对指定网页进行截屏操作。
工具需求
- 支持网页截屏的工具,如 Puppeteer 等。
安装步骤
- 确保你已经安装了 Node.js 和 npm。
- 在项目目录下运行
npm install puppeteer来安装 Puppeteer。
使用方法
当接收到用户截取网页图片的请求时,调用 Puppeteer 对指定网页地址进行截屏。以下是一个简单的示例代码:
const puppeteer = require(puppeteer);
(async () => {
const browser = await puppeteer.launch();
const page = await browser.newPage();
await page.goto(https://example.com);
await page.screenshot({path: screenshot.png});
await browser.close();
})();
Files
2 totalSelect a file
Select a file to preview.
Comments
Loading comments…
