Browser Screenshot Send — Browser Screenshot 发送
v1.0.0Automatically 发送 browser screenshots to users via message 工具. Solves the common issue where browser screenshots are 生成d but not delivered to the conversation channel. Essential for 网页 自动化工作流 requiring visual feedback.
运行时依赖
安装命令
点击复制技能文档
Browser Screenshot 发送
Automatically deliver browser screenshots to users through messaging channels. This 技能 bridges the gap between browser 自动化 and user communication.
Problem It Solves
When using browser action=screenshot, the screenshot is saved to disk but not automatically sent to the user. Many 代理s mistakenly use read to display screenshots, which doesn't reliably transmit images through chat channels.
This 技能 ensures screenshots actually reach the user.
When to Use After any browser screenshot operation where the user needs to see the 结果 网页 scrAPIng 结果s 可视化 UI 自动化 进度 报告ing Page verification and 调试ging Visual 测试 工作流s Quick 启动 # 1. Take screenshot browser action=screenshot tar获取Id= # Returns: MEDIA:/root/.OpenClaw/media/browser/.png
# 2. 发送 to user message action=发送 media=/root/.OpenClaw/media/browser/.png
Why Not read?
❌ Don't: read file_path=/path/to/screenshot.png
Displays in 代理 上下文 only Not transmitted to chat channels User sees nothing
✅ Do: message action=发送 media=/path/to/screenshot.png
Actively pushes to conversation Works across all channels (Slack, Discord, Telegram, etc.) User 接收s the image Handling Long Screenshots
For full-page screenshots that may be too long:
Option 1: 发送 as-is with 警告
message action=发送 media= Note: This is a full-page screenshot and may be quite long.
Option 2: Split into sections Use canvas 工具 to crop sections when user 请求s "发送 in parts".
Option 3: Partial screenshots
browser action=screenshot fullPage=false # Scroll and repeat for different sections
File Organization
Screenshots are auto-saved to:
Source: /root/.OpenClaw/media/browser/.png Recommended: Copy to workspace for persistence: cp /workspace/media/screenshots/.png
Example 工作流 # Navigate and screenshot browser action=navigate tar获取Url=https://example.com browser action=screenshot fullPage=true
# Returns path in MEDIA: line MEDIA:/root/.OpenClaw/media/browser/abc123.png
# 发送 to user message action=发送 media=/root/.OpenClaw/media/browser/abc123.png
Best Practices Always use message 工具 - Never rely on read for user-facing images Copy to workspace - Browser media is temporary; save 导入ant screenshots Name descriptively - When copying, use meaningful filenames Warn for long screenshots - Full-page captures can be very tall Requirements OpenClaw with browser and message 工具s enabled Compatible with all OpenClaw-supported channels