# Send Claw Mouse to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "claw-mouse",
    "name": "Claw Mouse",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/rylena/claw-mouse",
    "canonicalUrl": "https://clawhub.ai/rylena/claw-mouse",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/claw-mouse",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=claw-mouse",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "desktopctl.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "claw-mouse",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T13:12:44.386Z",
      "expiresAt": "2026-05-08T13:12:44.386Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=claw-mouse",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=claw-mouse",
        "contentDisposition": "attachment; filename=\"claw-mouse-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "claw-mouse"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/claw-mouse"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/claw-mouse",
    "downloadUrl": "https://openagent3.xyz/downloads/claw-mouse",
    "agentUrl": "https://openagent3.xyz/skills/claw-mouse/agent",
    "manifestUrl": "https://openagent3.xyz/skills/claw-mouse/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/claw-mouse/agent.md"
  }
}
```
## Documentation

### claw-mouse

This skill provides a small, scriptable desktop GUI control helper for Linux X11.

It’s intended for “vision loop” automation:

take a screenshot
decide where to click
move/click/type
repeat

Under the hood it wraps:

scrot for screenshots
xdotool for mouse/keyboard/window control

### Files

desktopctl.py — the CLI script

### Requirements

Linux running X11 (not Wayland-only)
python3
xdotool
scrot

Ubuntu/Debian:

sudo apt-get update
sudo apt-get install -y xdotool scrot

### Usage

From this skill directory:

python3 desktopctl.py screenshot
python3 desktopctl.py click 500 300
python3 desktopctl.py type "hello"
python3 desktopctl.py key ctrl+l
python3 desktopctl.py windows
python3 desktopctl.py activate "Chromium"

### DISPLAY / XAUTHORITY

If you’re running from a daemon/headless shell where DISPLAY isn’t set:

DISPLAY=:0 XAUTHORITY=$HOME/.Xauthority python3 desktopctl.py screenshot

Or use flags:

python3 desktopctl.py --display :0 --xauthority $HOME/.Xauthority screenshot

### Safety notes

This can click/type into your real desktop session. Use carefully.

### Changelog

0.1.0: Initial published skill.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: rylena
- Version: 0.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T13:12:44.386Z
- Expires at: 2026-05-08T13:12:44.386Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/claw-mouse)
- [Send to Agent page](https://openagent3.xyz/skills/claw-mouse/agent)
- [JSON manifest](https://openagent3.xyz/skills/claw-mouse/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/claw-mouse/agent.md)
- [Download page](https://openagent3.xyz/downloads/claw-mouse)