{
  "schemaVersion": "1.0",
  "item": {
    "slug": "wol-sleep-pc",
    "name": "Wol Sleep Pc",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/oblivisheee/wol-sleep-pc",
    "canonicalUrl": "https://clawhub.ai/oblivisheee/wol-sleep-pc",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/wol-sleep-pc",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=wol-sleep-pc",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/send_sleep.py",
      "scripts/send_wol.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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-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/wol-sleep-pc"
    },
    "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/wol-sleep-pc",
    "agentPageUrl": "https://openagent3.xyz/skills/wol-sleep-pc/agent",
    "manifestUrl": "https://openagent3.xyz/skills/wol-sleep-pc/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/wol-sleep-pc/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "wol-sleep-pc",
        "body": "This skill provides two small, well-tested scripts to send Wake-on-LAN (WOL) and Sleep-on-LAN (SOL) magic packets to a target machine on the same LAN. The skill is intentionally configurable and does not ship with any real MAC/IP defaults — defaults are zeroed and must be provided via CLI flags or a local config file.\n\nFiles provided:\n\nscripts/send_wol.py — Send a standard WOL magic packet.\nscripts/send_sleep.py — Send a SOL (inverted-MAC) magic packet.\nREADME.md — Usage examples and install notes.\n.gitignore — Ensures local config is not committed.\n\nQuick usage\n\nFrom the repository root:\npython3 scripts/send_wol.py --mac 24:4B:FE:CA:90:99 --broadcast 192.168.1.255\n\n\nSend SOL (inverted MAC):\npython3 scripts/send_sleep.py --mac 99:90:CA:FE:4B:24 --broadcast 192.168.1.255\n\nConfig file (recommended)\n\nPath: ~/.config/wol-sleep-pc/config.json\nExample content:\n{\n\"mac\": \"24:4B:FE:CA:90:99\",\n\"sleep_mac\": \"99:90:CA:FE:4B:24\",\n\"broadcast\": \"192.168.1.255\",\n\"port\": 9\n}\nBehavior: scripts load values from this file if present; any CLI flags override the config file values.\nThe repository .gitignore ignores config files so secrets remain local.\n\nAgent usage patterns\n\n\"wake PC\" — run send_wol.py with configured values.\n\"sleep PC\" — run send_sleep.py with configured inverted MAC.\n\"send WOL now\" / \"send SOL now\" — immediate send.\n\nDesign notes and safety\n\nScripts require Python 3 and permission to send UDP broadcast packets from the runtime host.\nThe skill assumes L2 connectivity to the target LAN; if running from a different network segment, configure the correct broadcast address or run the script from a host on the same LAN.\nDefaults are intentionally zeroed to avoid leaking sensitive addresses when the skill is published.\n\nPublishing guidance\n\nThe repo is safe to publish to ClawHub as-is because it contains no real MAC/IP values and ignores local config.\nAdd a LICENSE if you want to publish under a specific license.\n\nWhen to trigger this skill\n\nTrigger when the user explicitly requests waking or sleeping a machine on their LAN, or asks to save or update local WOL/SOL config. The scripts are small and deterministic; prefer executing the scripts rather than re-generating the packet code each time."
      }
    ],
    "body": "wol-sleep-pc\n\nThis skill provides two small, well-tested scripts to send Wake-on-LAN (WOL) and Sleep-on-LAN (SOL) magic packets to a target machine on the same LAN. The skill is intentionally configurable and does not ship with any real MAC/IP defaults — defaults are zeroed and must be provided via CLI flags or a local config file.\n\nFiles provided:\n\nscripts/send_wol.py — Send a standard WOL magic packet.\nscripts/send_sleep.py — Send a SOL (inverted-MAC) magic packet.\nREADME.md — Usage examples and install notes.\n.gitignore — Ensures local config is not committed.\n\nQuick usage\n\nFrom the repository root: python3 scripts/send_wol.py --mac 24:4B:FE:CA:90:99 --broadcast 192.168.1.255\n\nSend SOL (inverted MAC): python3 scripts/send_sleep.py --mac 99:90:CA:FE:4B:24 --broadcast 192.168.1.255\n\nConfig file (recommended)\n\nPath: ~/.config/wol-sleep-pc/config.json\nExample content: { \"mac\": \"24:4B:FE:CA:90:99\", \"sleep_mac\": \"99:90:CA:FE:4B:24\", \"broadcast\": \"192.168.1.255\", \"port\": 9 }\nBehavior: scripts load values from this file if present; any CLI flags override the config file values.\nThe repository .gitignore ignores config files so secrets remain local.\n\nAgent usage patterns\n\n\"wake PC\" — run send_wol.py with configured values.\n\"sleep PC\" — run send_sleep.py with configured inverted MAC.\n\"send WOL now\" / \"send SOL now\" — immediate send.\n\nDesign notes and safety\n\nScripts require Python 3 and permission to send UDP broadcast packets from the runtime host.\nThe skill assumes L2 connectivity to the target LAN; if running from a different network segment, configure the correct broadcast address or run the script from a host on the same LAN.\nDefaults are intentionally zeroed to avoid leaking sensitive addresses when the skill is published.\n\nPublishing guidance\n\nThe repo is safe to publish to ClawHub as-is because it contains no real MAC/IP values and ignores local config.\nAdd a LICENSE if you want to publish under a specific license.\n\nWhen to trigger this skill\n\nTrigger when the user explicitly requests waking or sleeping a machine on their LAN, or asks to save or update local WOL/SOL config. The scripts are small and deterministic; prefer executing the scripts rather than re-generating the packet code each time."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/oblivisheee/wol-sleep-pc",
    "publisherUrl": "https://clawhub.ai/oblivisheee/wol-sleep-pc",
    "owner": "oblivisheee",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/wol-sleep-pc",
    "downloadUrl": "https://openagent3.xyz/downloads/wol-sleep-pc",
    "agentUrl": "https://openagent3.xyz/skills/wol-sleep-pc/agent",
    "manifestUrl": "https://openagent3.xyz/skills/wol-sleep-pc/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/wol-sleep-pc/agent.md"
  }
}