← 返回 Skills 市场
shenhuanjie

Browser Screenshot Send

作者 shenhuanjie · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
239
总下载
0
收藏
1
当前安装
1
版本数
在 OpenClaw 中安装
/install browser-screenshot-send
功能描述
Automatically send browser screenshots to users via message tool. Solves the common issue where browser screenshots are generated but not delivered to the co...
使用说明 (SKILL.md)

Browser Screenshot Send

Automatically deliver browser screenshots to users through messaging channels. This skill bridges the gap between browser automation 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 agents mistakenly use read to display screenshots, which doesn't reliably transmit images through chat channels.

This skill ensures screenshots actually reach the user.

When to Use

  • After any browser screenshot operation where the user needs to see the result
  • Web scraping results visualization
  • UI automation progress reporting
  • Page verification and debugging
  • Visual testing workflows

Quick Start

# 1. Take screenshot
browser action=screenshot targetId=\x3Cpage>
# Returns: MEDIA:/root/.openclaw/media/browser/\x3Cuuid>.png

# 2. Send to user
message action=send media=/root/.openclaw/media/browser/\x3Cuuid>.png

Why Not read?

Don't: read file_path=/path/to/screenshot.png

  • Displays in agent context only
  • Not transmitted to chat channels
  • User sees nothing

Do: message action=send media=/path/to/screenshot.png

  • Actively pushes to conversation
  • Works across all channels (Slack, Discord, Telegram, etc.)
  • User receives the image

Handling Long Screenshots

For full-page screenshots that may be too long:

Option 1: Send as-is with warning

message action=send media=\x3Cpath>
Note: This is a full-page screenshot and may be quite long.

Option 2: Split into sections Use canvas tool to crop sections when user requests "send 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/\x3Cuuid>.png
  • Recommended: Copy to workspace for persistence:
    cp \x3Csource> /workspace/media/screenshots/\x3Cdescriptive_name>.png
    

Example Workflow

# Navigate and screenshot
browser action=navigate targetUrl=https://example.com
browser action=screenshot fullPage=true

# Returns path in MEDIA: line
MEDIA:/root/.openclaw/media/browser/abc123.png

# Send to user
message action=send media=/root/.openclaw/media/browser/abc123.png

Best Practices

  1. Always use message tool - Never rely on read for user-facing images
  2. Copy to workspace - Browser media is temporary; save important screenshots
  3. Name descriptively - When copying, use meaningful filenames
  4. Warn for long screenshots - Full-page captures can be very tall

Requirements

  • OpenClaw with browser and message tools enabled
  • Compatible with all OpenClaw-supported channels
安全使用建议
This is an instruction-only helper that is internally consistent with its stated purpose. Before using it, confirm that your OpenClaw agent has the browser and message tools enabled and that you trust the chat channels the message tool will send images to. Be cautious about sensitive information in screenshots — the SKILL.md explicitly suggests copying images into /workspace for persistence, which will keep them on disk and potentially make them accessible later. Because the skill has no install steps and requests no credentials, there is low technical risk from the skill itself, but treat screenshots as sensitive data and avoid sending or persisting images that contain passwords, personal data, or private keys.
功能分析
Type: OpenClaw Skill Name: browser-screenshot-send Version: 1.0.0 The skill bundle provides legitimate documentation and instructions for an AI agent to correctly handle and transmit browser screenshots to a user via the 'message' tool. It addresses a functional limitation in the default environment and contains no malicious code, data exfiltration, or harmful prompt injection in SKILL.md or _meta.json.
能力评估
Purpose & Capability
Name and description match the instructions: the SKILL.md explains how to take a browser screenshot and use the message tool to deliver it. There are no unrelated binaries, environment variables, or external services requested.
Instruction Scope
Instructions reference internal paths (/root/.openclaw/media/browser/<uuid>.png) and recommend copying to /workspace for persistence. This is expected for a screenshot-delivery helper, but users should be aware screenshots may contain sensitive data and copying to workspace makes them persistent.
Install Mechanism
No install spec and no code files — instruction-only skill, so nothing is written to disk by the skill itself beyond the normal browser tool behavior.
Credentials
The skill declares and uses no environment variables or credentials. It only references the platform's browser and message tools, which is proportionate to its purpose.
Persistence & Privilege
always is false and the skill does not request persistent privileges or modify other skills; it simply instructs on using existing tools. Note that following its guidance to copy screenshots to /workspace will make files persistent.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install browser-screenshot-send
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /browser-screenshot-send 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release: Automated browser screenshot delivery for OpenClaw workflows
元数据
Slug browser-screenshot-send
版本 1.0.0
许可证 MIT-0
累计安装 1
当前安装数 1
历史版本数 1
常见问题

Browser Screenshot Send 是什么?

Automatically send browser screenshots to users via message tool. Solves the common issue where browser screenshots are generated but not delivered to the co... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 239 次。

如何安装 Browser Screenshot Send?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install browser-screenshot-send」即可一键安装,无需额外配置。

Browser Screenshot Send 是免费的吗?

是的,Browser Screenshot Send 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Browser Screenshot Send 支持哪些平台?

Browser Screenshot Send 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Browser Screenshot Send?

由 shenhuanjie(@shenhuanjie)开发并维护,当前版本 v1.0.0。

💬 留言讨论