screenshot-website
Take screenshots of any website using Notte browser automation. Use when asked to screenshot, capture, or snap a webpage.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Take screenshots of any website using Notte browser automation. Use when asked to screenshot, capture, or snap a webpage.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Test and document API endpoints - validate responses, check status, generate examples
Full company intelligence report - overview, team, funding, products, news
Research competitors - products, pricing, team, funding, and strategy
Enrich any person or company from any identifier — email, name, LinkedIn URL, domain, company name, Twitter/X handle. Use when asked to enrich, look up, or research a lead, contact, person, or company.
Extract structured data from web pages using AI
Build a sales prospect list of dental practices in a city — finds practices, decision makers, contact info, and buying signals. Use when asked to find dentists for outreach, prospect dental practices, build a lead list of dentists, or generate dental practice leads in a specific area.
| name | screenshot-website |
| description | Take screenshots of any website using Notte browser automation. Use when asked to screenshot, capture, or snap a webpage. |
Take screenshots of any website URL and save them as image files.
npm install -g @orth/cliTake a screenshot of a URL in 4 steps:
orth api run notte /sessions/start --body '{"headless": true}'
Save the session_id from the response.
orth api run notte /sessions/{session_id}/page/execute --body '{"type": "goto", "url": "https://example.com"}'
orth api run notte /sessions/{session_id}/page/screenshot --body '{}' -o screenshot.jpg
For a full-page screenshot:
orth api run notte /sessions/{session_id}/page/screenshot --body '{"full_page": true}' -o screenshot.jpg
orth api run notte /sessions/{session_id}/stop
# 1. Start session
SESSION=$(orth api run notte /sessions/start --body '{"headless": true}' --raw | python3 -c "import sys,json; print(json.load(sys.stdin)['session_id'])")
# 2. Navigate
orth api run notte /sessions/$SESSION/page/execute --body '{"type": "goto", "url": "https://example.com"}'
# 3. Screenshot
orth api run notte /sessions/$SESSION/page/screenshot --body '{}' -o screenshot.jpg
# 4. Cleanup
orth api run notte /sessions/$SESSION/stop
| Parameter | Description |
|---|---|
full_page | Set to true to capture the entire scrollable page |
headless | Set to false to see the browser window (default: true) |
viewport_width | Custom viewport width in pixels |
viewport_height | Custom viewport height in pixels |
-o flag to save the screenshot to a file (required for binary data)