← Back to Skills Marketplace
414
Downloads
0
Stars
9
Active Installs
1
Versions
Install in OpenClaw
/install feishu-screenshot
Description
截取屏幕并发送到飞书。当用户说"截屏发给飞书"、"截图"、"屏幕截图"时使用这个技能。
README (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 里的临时文件
Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install feishu-screenshot - After installation, invoke the skill by name or use
/feishu-screenshot - Provide required inputs per the skill's parameter spec and get structured output
Version History
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.
Metadata
Frequently Asked Questions
What is Feishu Screenshot?
截取屏幕并发送到飞书。当用户说"截屏发给飞书"、"截图"、"屏幕截图"时使用这个技能。 It is an AI Agent Skill for Claude Code / OpenClaw, with 414 downloads so far.
How do I install Feishu Screenshot?
Run "/install feishu-screenshot" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Feishu Screenshot free?
Yes, Feishu Screenshot is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Feishu Screenshot support?
Feishu Screenshot is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Feishu Screenshot?
It is built and maintained by TOOTW (@tootw); the current version is v1.0.0.
More Skills