{
  "schemaVersion": "1.0",
  "item": {
    "slug": "iyeque-device-control",
    "name": "Device Control (Iyeque)",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/iyeque/iyeque-device-control",
    "canonicalUrl": "https://clawhub.ai/iyeque/iyeque-device-control",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/iyeque-device-control",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=iyeque-device-control",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "ctl.js"
    ],
    "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-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/iyeque-device-control"
    },
    "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/iyeque-device-control",
    "agentPageUrl": "https://openagent3.xyz/skills/iyeque-device-control/agent",
    "manifestUrl": "https://openagent3.xyz/skills/iyeque-device-control/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/iyeque-device-control/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": "Device Control Skill",
        "body": "Control device volume, brightness, and applications via command line. Supports Linux, macOS, Windows, and WSL."
      },
      {
        "title": "Security",
        "body": "All inputs are validated and sanitized to prevent command injection:\n\nVolume/brightness values must be numbers between 0-100\nApp names are restricted to alphanumeric characters, spaces, dashes, and underscores\nShell metacharacters are blocked"
      },
      {
        "title": "device_control",
        "body": "Execute a device control action.\n\nParameters:\n\naction (string, required): One of set_volume, change_volume, set_brightness, open_app, close_app.\nvalue (string/number, optional): The value for the action (0-100 for volume/brightness, delta for change_volume).\napp (string, optional): The application name or path (required for open/close actions).\n\nUsage:\n\n# Set volume to 50%\nnode skills/device-control/ctl.js --action set_volume --value 50\n\n# Change volume by +10 or -10\nnode skills/device-control/ctl.js --action change_volume --value 10\nnode skills/device-control/ctl.js --action change_volume --value -10\n\n# Set brightness to 75%\nnode skills/device-control/ctl.js --action set_brightness --value 75\n\n# Open an application\nnode skills/device-control/ctl.js --action open_app --app \"firefox\"\nnode skills/device-control/ctl.js --action open_app --app \"Visual Studio Code\"\n\n# Close an application\nnode skills/device-control/ctl.js --action close_app --app \"firefox\""
      },
      {
        "title": "Platform Support",
        "body": "ActionLinuxmacOSWindowsWSLset_volume✅ (pactl/amixer)✅ (osascript)✅ (nircmd)✅ (nircmd)change_volume✅✅❌❌set_brightness✅ (brightnessctl)⚠️ (requires brightness CLI)✅ (WMI)✅ (WMI)open_app✅✅✅✅close_app✅ (pkill)✅ (pkill)✅ (taskkill)✅ (taskkill)"
      },
      {
        "title": "Requirements",
        "body": "Linux: pactl (PulseAudio) or amixer (ALSA), brightnessctl (optional, for brightness)\nmacOS: Built-in osascript, brightness CLI tool (optional, for brightness)\nWindows/WSL: nircmd.exe for volume control (download from nirsoft.net)"
      }
    ],
    "body": "Device Control Skill\n\nControl device volume, brightness, and applications via command line. Supports Linux, macOS, Windows, and WSL.\n\nSecurity\n\nAll inputs are validated and sanitized to prevent command injection:\n\nVolume/brightness values must be numbers between 0-100\nApp names are restricted to alphanumeric characters, spaces, dashes, and underscores\nShell metacharacters are blocked\nTool API\ndevice_control\n\nExecute a device control action.\n\nParameters:\naction (string, required): One of set_volume, change_volume, set_brightness, open_app, close_app.\nvalue (string/number, optional): The value for the action (0-100 for volume/brightness, delta for change_volume).\napp (string, optional): The application name or path (required for open/close actions).\n\nUsage:\n\n# Set volume to 50%\nnode skills/device-control/ctl.js --action set_volume --value 50\n\n# Change volume by +10 or -10\nnode skills/device-control/ctl.js --action change_volume --value 10\nnode skills/device-control/ctl.js --action change_volume --value -10\n\n# Set brightness to 75%\nnode skills/device-control/ctl.js --action set_brightness --value 75\n\n# Open an application\nnode skills/device-control/ctl.js --action open_app --app \"firefox\"\nnode skills/device-control/ctl.js --action open_app --app \"Visual Studio Code\"\n\n# Close an application\nnode skills/device-control/ctl.js --action close_app --app \"firefox\"\n\nPlatform Support\nAction\tLinux\tmacOS\tWindows\tWSL\nset_volume\t✅ (pactl/amixer)\t✅ (osascript)\t✅ (nircmd)\t✅ (nircmd)\nchange_volume\t✅\t✅\t❌\t❌\nset_brightness\t✅ (brightnessctl)\t⚠️ (requires brightness CLI)\t✅ (WMI)\t✅ (WMI)\nopen_app\t✅\t✅\t✅\t✅\nclose_app\t✅ (pkill)\t✅ (pkill)\t✅ (taskkill)\t✅ (taskkill)\nRequirements\nLinux: pactl (PulseAudio) or amixer (ALSA), brightnessctl (optional, for brightness)\nmacOS: Built-in osascript, brightness CLI tool (optional, for brightness)\nWindows/WSL: nircmd.exe for volume control (download from nirsoft.net)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/iyeque/iyeque-device-control",
    "publisherUrl": "https://clawhub.ai/iyeque/iyeque-device-control",
    "owner": "iyeque",
    "version": "1.1.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/iyeque-device-control",
    "downloadUrl": "https://openagent3.xyz/downloads/iyeque-device-control",
    "agentUrl": "https://openagent3.xyz/skills/iyeque-device-control/agent",
    "manifestUrl": "https://openagent3.xyz/skills/iyeque-device-control/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/iyeque-device-control/agent.md"
  }
}