Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

peekabooxpeekaboox 控制

Agent Skill

peekaboox 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

21,568

周安装

917

GitHub Stars

2

下载量

7,556
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:peekaboox(peekaboox 控制)
来源仓库:https://github.com/gedigi/peekaboox
安装命令:
openclaw skills install peekaboox
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install peekaboox

简介

peekaboox 控制 Linux X11 桌面 GUI,实现自动化操作与元素交互。

  • 可用于截取屏幕、查找控件、发送快捷键等桌面任务。
  • 要求目标系统运行 X Window 环境且允许远程控制。
  • 部分发行版需额外安装 xdotool 等依赖库方可正常工作。
  • 在高 DPI 或 Wayland 环境下兼容性有限,慎用。

SKILL.md

name
linux-desktop
description
>
metadata
clawdbot
emoji
\F5A5
os
["linux"]
requires
bins
["xdotool", "wmctrl", "scrot"]
env
["DISPLAY"]
install
kind
shell
command
bash install.sh
label
Install dependencies (apt/dnf/pacman)

Linux Desktop GUI Automation

Automate any X11 Linux desktop: capture screens, find and click elements, type, use hotkeys, manage windows.

Preferred screenshot interpretation path: capture with capture.sh and interpret the image directly in your OpenClaw chat (existing image-capable model connection).

Prerequisites

  • X11 session running (XFCE, GNOME on X11, KDE on X11, i3, openbox, etc.)
  • DISPLAY environment variable set (usually :0)
  • Run bash install.sh once to install dependencies
  • No extra key needed for screenshot interpretation when using OpenClaw's image-capable chat path

Quick Reference

TaskCommand
Take screenshotbash capture.sh
Screenshot of windowbash capture.sh --window "Firefox"
List windowsbash inspect.sh
Active window infobash inspect.sh --active
Find window by namebash inspect.sh --window "Firefox"
Click at coordinatesbash click.sh --x 500 --y 300
Right-clickbash click.sh --x 500 --y 300 --button right
Double-clickbash click.sh --x 500 --y 300 --double
Click relative to windowbash click.sh --window "Firefox" --x 200 --y 150
Type textbash type.sh "hello world"
Type into windowbash type.sh --window "Terminal" "ls -la"
Send hotkeybash hotkey.sh "ctrl+c"
Send Enterbash hotkey.sh "Return"
Scroll downbash scroll.sh --direction down --amount 3
Scroll up at positionbash scroll.sh --x 500 --y 300 --direction up --amount 3
Focus windowbash window.sh --action focus --window "Firefox"
Minimize windowbash window.sh --action minimize --window "Firefox"
Maximize windowbash window.sh --action maximize --window "Firefox"
Close windowbash window.sh --action close --window "Firefox"
Move windowbash window.sh --action move --window "Firefox" --x 100 --y 50
Resize windowbash window.sh --action resize --window "Firefox" --width 1280 --height 800

Typical Automation Workflow

For most GUI automation tasks, follow this pattern:

  1. Capture a screenshot with capture.sh — note the file path printed
  2. Look at the screenshot yourself to understand what's on screen
  3. Find the target element by examining the screenshot and estimating its pixel coordinates
  4. Act using the coordinates: click.sh --x X --y Y
  5. Verify by capturing another screenshot and checking the result

Example: Click the Save button in a dialog

# Step 1: Capture the screen
SCREENSHOT=$(bash capture.sh | tail -1)

# Step 2: Look at the screenshot (read the image file with your vision)
# Examine the image and identify the Save button's position

# Step 3: Click at the coordinates you identified
bash click.sh --x 450 --y 320

Example: Type into a specific application

# Focus the terminal window and type a command
bash type.sh --window "Terminal" "ls -la"
bash hotkey.sh "Return"

Example: Window management

# Maximize Firefox, then focus a terminal
bash window.sh --action maximize --window "Firefox"
bash window.sh --action focus --window "Terminal"

JSON Output

All tools support a --json flag for machine-readable output:

{"success": true, "output": "...", "error": null}

On failure:

{"success": false, "output": null, "error": "Error description"}

Environment Setup

If DISPLAY is not set (e.g., running over SSH), set it before calling any tool:

export DISPLAY=:0

For headless servers with a virtual display:

Xvfb :0 -screen 0 1920x1080x24 &
export DISPLAY=:0

Hotkey Reference

Key names follow X11 conventions:

KeyName
EnterReturn
TabTab
EscapeEscape
BackspaceBackSpace
DeleteDelete
HomeHome
EndEnd
Page UpPage_Up
Page DownPage_Down
F1-F12F1 through F12
Super/Winsuper
Ctrlctrl
Altalt
Shiftshift

Combine with +: ctrl+c, ctrl+shift+t, alt+F4, super+d

Limitations

  • X11 only — does not work on Wayland sessions
  • Cannot interact with Wayland-native apps in a Wayland session
  • Some apps with custom rendering (games, Electron apps with security flags) may resist automation
  • Screenshot quality depends on compositor; disable compositing if captures look wrong

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

82.29%
按下载量换算6,218

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills