{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/guicountrol",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=guicountrol",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/gui_action.sh",
      "scripts/inspect_ui.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/guicountrol",
    "agentPageUrl": "https://openagent3.xyz/skills/guicountrol/agent",
    "manifestUrl": "https://openagent3.xyz/skills/guicountrol/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/guicountrol/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Linux GUI Control",
        "body": "This skill provides tools and procedures for automating interactions with the Linux desktop environment."
      },
      {
        "title": "1. Identify Target Window",
        "body": "Use wmctrl to find the exact name of the window you want to control.\n\nwmctrl -l"
      },
      {
        "title": "2. Inspect UI Hierarchy",
        "body": "For apps supporting accessibility (GNOME apps, Electron apps with --force-renderer-accessibility), use the inspection script to find button names without taking screenshots.\n\npython3 scripts/inspect_ui.py \"<app_name>\""
      },
      {
        "title": "3. Perform Actions",
        "body": "Use xdotool via the helper script for common actions.\n\n# Activate window\n./scripts/gui_action.sh activate \"<window_name>\"\n\n# Click coordinates\n./scripts/gui_action.sh click 500 500\n\n# Type text\n./scripts/gui_action.sh type \"Hello World\"\n\n# Press a key\n./scripts/gui_action.sh key \"Return\""
      },
      {
        "title": "Operating an App via Text UI",
        "body": "List windows with wmctrl -l.\nActivate the target window.\nRun scripts/inspect_ui.py to get the list of buttons and inputs.\nUse xdotool key Tab and Return to navigate, or click if coordinates are known.\nIf text-based inspection fails, fallback to taking a screenshot and using vision."
      },
      {
        "title": "Forcing Accessibility in Electron Apps",
        "body": "Many modern apps (VS Code, Discord, Cider, Chrome) need a flag to expose their UI tree:\n\npkill <app>\nnohup <app> --force-renderer-accessibility > /dev/null 2>&1 &"
      },
      {
        "title": "Tool Reference",
        "body": "wmctrl: Window management (list, activate, move, resize).\nxdotool: Input simulation (click, type, key, mousemove).\ndogtail: UI tree extraction via AT-SPI (Accessibility bus).\nscrot: Lightweight screenshot tool."
      }
    ],
    "body": "Linux GUI Control\n\nThis skill provides tools and procedures for automating interactions with the Linux desktop environment.\n\nQuick Start\n1. Identify Target Window\n\nUse wmctrl to find the exact name of the window you want to control.\n\nwmctrl -l\n\n2. Inspect UI Hierarchy\n\nFor apps supporting accessibility (GNOME apps, Electron apps with --force-renderer-accessibility), use the inspection script to find button names without taking screenshots.\n\npython3 scripts/inspect_ui.py \"<app_name>\"\n\n3. Perform Actions\n\nUse xdotool via the helper script for common actions.\n\n# Activate window\n./scripts/gui_action.sh activate \"<window_name>\"\n\n# Click coordinates\n./scripts/gui_action.sh click 500 500\n\n# Type text\n./scripts/gui_action.sh type \"Hello World\"\n\n# Press a key\n./scripts/gui_action.sh key \"Return\"\n\nWorkflows\nOperating an App via Text UI\nList windows with wmctrl -l.\nActivate the target window.\nRun scripts/inspect_ui.py to get the list of buttons and inputs.\nUse xdotool key Tab and Return to navigate, or click if coordinates are known.\nIf text-based inspection fails, fallback to taking a screenshot and using vision.\nForcing Accessibility in Electron Apps\n\nMany modern apps (VS Code, Discord, Cider, Chrome) need a flag to expose their UI tree:\n\npkill <app>\nnohup <app> --force-renderer-accessibility > /dev/null 2>&1 &\n\nTool Reference\nwmctrl: Window management (list, activate, move, resize).\nxdotool: Input simulation (click, type, key, mousemove).\ndogtail: UI tree extraction via AT-SPI (Accessibility bus).\nscrot: Lightweight screenshot tool."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/dreamtraveler13/guicountrol",
    "publisherUrl": "https://clawhub.ai/dreamtraveler13/guicountrol",
    "owner": "dreamtraveler13",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}