← 返回 Skills 市场
tootw

Feishu Screenshot

作者 TOOTW · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
414
总下载
0
收藏
9
当前安装
1
版本数
在 OpenClaw 中安装
/install feishu-screenshot
功能描述
截取屏幕并发送到飞书。当用户说"截屏发给飞书"、"截图"、"屏幕截图"时使用这个技能。
使用说明 (SKILL.md)

飞书截图发送

截取屏幕并快速发送到飞书。

核心流程

第一步:截屏(PowerShell)

/mnt/c/Windows/System32/WindowsPowerShell/v1.0/powershell.exe -Command "Add-Type -AssemblyName System.Windows.Forms; \$bmp = New-Object System.Drawing.Bitmap([System.Windows.Forms.Screen]::PrimaryScreen.Bounds.Width, [System.Windows.Forms.Screen]::PrimaryScreen.Bounds.Height); \$graphics = [System.Drawing.Graphics]::FromImage(\$bmp); \$graphics.CopyFromScreen([System.Windows.Forms.Screen]::PrimaryScreen.Bounds.Location, (New-Object System.Drawing.Point(0,0)), [System.Windows.Forms.Screen]::PrimaryScreen.Bounds.Size); \$bmp.Save('C:\Users\edy\Pictures\screenshot.png', [System.Drawing.Imaging.ImageFormat]::Png); \$bmp.Dispose()"

第二步:复制到 workspace

cp /mnt/c/Users/edy/Pictures/screenshot.png /home/edy/.openclaw/workspace/截图.png

第三步:发送到飞书

{
  "action": "send",
  "channel": "feishu",
  "filePath": "/home/edy/.openclaw/workspace/截图.png"
}

注意事项

  • 截屏会保存到 C:\Users\edy\Pictures\screenshot.png
  • 然后复制到 workspace 才能正常发送附件
  • 发送完成后可以删除 workspace 里的临时文件
安全使用建议
This skill will execute a PowerShell command to capture your entire primary screen, save the image in C:\Users\edy\Pictures\screenshot.png, copy it into /home/edy/.openclaw/workspace, and then send it via the 'feishu' channel. Before installing or using it, consider the following: - Privacy: Full-screen screenshots may capture passwords, private messages, or other sensitive data. Only allow this if you trust the agent and the destination (Feishu). - Environment assumptions: The SKILL.md hard-codes a Windows username and uses /mnt/c/… and /home/… paths (WSL). If you are not running Windows with WSL or your username is not 'edy', the commands will fail or may target the wrong files. Ask the author to parameterize paths or confirm compatibility with your OS. - Credentials: The skill does not declare Feishu credentials; verify how your platform provides Feishu access and whether the skill will use the correct account. If you do not want it to send automatically, require an explicit user confirmation step. - Safety improvements: Prefer a version that (a) uses placeholders or variables for usernames and workspace paths, (b) prompts the user for confirmation before capturing/sending, (c) deletes temporary files after sending, and (d) documents required platform permissions (ability to run PowerShell and access the workspace). If you cannot verify or modify the SKILL.md, run it only in a controlled environment (test account or VM) and inspect the commands the agent will execute. If you are uncomfortable with the hard-coded paths or automatic sending, do not install or invoke this skill.
功能分析
Type: OpenClaw Skill Name: feishu-screenshot Version: 1.0.0 The skill captures the user's entire screen using a raw PowerShell command and hardcoded absolute file paths (e.g., C:\Users\edy\Pictures\screenshot.png) before sending the image to Feishu. While the behavior aligns with the stated purpose in SKILL.md, the use of environment-specific paths for a hardcoded user ('edy') and the execution of system-level commands for screen capture represent high-risk capabilities that could be easily repurposed for unauthorized data exfiltration.
能力评估
Purpose & Capability
The name/description (capture screen and send to Feishu) match the actual instructions: a PowerShell full-screen capture, copying the image into the agent workspace, and a send action to the 'feishu' channel. However, the instructions hard-code user-specific paths (C:\Users\edy and /home/edy/.openclaw/workspace) and assume WSL-style paths (/mnt/c/...). Those assumptions are not justified in the metadata (no declared OS restriction or required binaries) and make the skill non-portable and potentially incorrect for other users.
Instruction Scope
The SKILL.md tells the agent to execute a PowerShell command that captures the entire primary screen and writes a PNG into the user's Pictures folder, then copies it into the agent workspace and triggers a send action. Capturing the full screen can expose sensitive data; the instructions run arbitrary shell commands and access absolute user paths. The instructions also do not include user consent or an explicit prompt before capturing, nor do they parameterize username/paths or handle non-Windows environments.
Install Mechanism
There is no install spec or code to write to disk; this is instruction-only. That minimizes supply-chain risk because nothing is downloaded or installed by the skill itself.
Credentials
The skill declares no required environment variables or credentials, but it issues a 'send' action to a 'feishu' channel (which implies the platform/agent must have Feishu credentials configured). The absence of any declared credential requirement is not necessarily wrong if Feishu access is provided by the platform, but it is not documented here. The skill also requires filesystem access to the user's Pictures folder and the agent workspace (hard-coded paths).
Persistence & Privilege
The skill does not request always: true, no installs, and does not attempt to modify other skills or system-wide configuration. It only instructs the agent to run commands at runtime.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install feishu-screenshot
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /feishu-screenshot 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
feishu-screenshot v1.0.0 - Initial release: Capture screenshots and send them directly to Feishu upon request. - Supports voice commands such as "截屏发给飞书", "截图", and "屏幕截图". - Automates screenshot via PowerShell, workspace file management, and Feishu delivery.
元数据
Slug feishu-screenshot
版本 1.0.0
许可证 MIT-0
累计安装 9
当前安装数 9
历史版本数 1
常见问题

Feishu Screenshot 是什么?

截取屏幕并发送到飞书。当用户说"截屏发给飞书"、"截图"、"屏幕截图"时使用这个技能。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 414 次。

如何安装 Feishu Screenshot?

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

Feishu Screenshot 是免费的吗?

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

Feishu Screenshot 支持哪些平台?

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

谁开发了 Feishu Screenshot?

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

💬 留言讨论