# Send Linux GUI  Control 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": "guicountrol",
    "name": "Linux GUI  Control",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/dreamtraveler13/guicountrol",
    "canonicalUrl": "https://clawhub.ai/dreamtraveler13/guicountrol",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/guicountrol",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=guicountrol",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/gui_action.sh",
      "scripts/inspect_ui.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "guicountrol",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-05T00:47:05.068Z",
      "expiresAt": "2026-05-12T00:47:05.068Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=guicountrol",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=guicountrol",
        "contentDisposition": "attachment; filename=\"guicountrol-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "guicountrol"
      },
      "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/guicountrol"
    },
    "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/guicountrol",
    "downloadUrl": "https://openagent3.xyz/downloads/guicountrol",
    "agentUrl": "https://openagent3.xyz/skills/guicountrol/agent",
    "manifestUrl": "https://openagent3.xyz/skills/guicountrol/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/guicountrol/agent.md"
  }
}
```
## Documentation

### Linux GUI Control

This skill provides tools and procedures for automating interactions with the Linux desktop environment.

### 1. Identify Target Window

Use wmctrl to find the exact name of the window you want to control.

wmctrl -l

### 2. Inspect UI Hierarchy

For apps supporting accessibility (GNOME apps, Electron apps with --force-renderer-accessibility), use the inspection script to find button names without taking screenshots.

python3 scripts/inspect_ui.py "<app_name>"

### 3. Perform Actions

Use xdotool via the helper script for common actions.

# Activate window
./scripts/gui_action.sh activate "<window_name>"

# Click coordinates
./scripts/gui_action.sh click 500 500

# Type text
./scripts/gui_action.sh type "Hello World"

# Press a key
./scripts/gui_action.sh key "Return"

### Operating an App via Text UI

List windows with wmctrl -l.
Activate the target window.
Run scripts/inspect_ui.py to get the list of buttons and inputs.
Use xdotool key Tab and Return to navigate, or click if coordinates are known.
If text-based inspection fails, fallback to taking a screenshot and using vision.

### Forcing Accessibility in Electron Apps

Many modern apps (VS Code, Discord, Cider, Chrome) need a flag to expose their UI tree:

pkill <app>
nohup <app> --force-renderer-accessibility > /dev/null 2>&1 &

### Tool Reference

wmctrl: Window management (list, activate, move, resize).
xdotool: Input simulation (click, type, key, mousemove).
dogtail: UI tree extraction via AT-SPI (Accessibility bus).
scrot: Lightweight screenshot tool.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: dreamtraveler13
- Version: 1.0.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-05T00:47:05.068Z
- Expires at: 2026-05-12T00:47:05.068Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/guicountrol)
- [Send to Agent page](https://openagent3.xyz/skills/guicountrol/agent)
- [JSON manifest](https://openagent3.xyz/skills/guicountrol/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/guicountrol/agent.md)
- [Download page](https://openagent3.xyz/downloads/guicountrol)