โ† All skills
Tencent SkillHub ยท Developer Tools

Wol Sleep Pc

Send Wake-on-LAN (magic packet) and Sleep-on-LAN (inverted MAC) packets for a specific PC. Use when the user asks to wake, check, or put the PC to sleep on the local LAN. Defaults are zeroed; configure the target IP, MAC, and inverted MAC via command-line flags or a config file.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Send Wake-on-LAN (magic packet) and Sleep-on-LAN (inverted MAC) packets for a specific PC. Use when the user asks to wake, check, or put the PC to sleep on the local LAN. Defaults are zeroed; configure the target IP, MAC, and inverted MAC via command-line flags or a config file.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, scripts/send_sleep.py, scripts/send_wol.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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.

Upgrade existing

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.1.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 1 sections Open source page

wol-sleep-pc

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. Files provided: scripts/send_wol.py โ€” Send a standard WOL magic packet. scripts/send_sleep.py โ€” Send a SOL (inverted-MAC) magic packet. README.md โ€” Usage examples and install notes. .gitignore โ€” Ensures local config is not committed. Quick usage From the repository root: python3 scripts/send_wol.py --mac 24:4B:FE:CA:90:99 --broadcast 192.168.1.255 Send SOL (inverted MAC): python3 scripts/send_sleep.py --mac 99:90:CA:FE:4B:24 --broadcast 192.168.1.255 Config file (recommended) Path: ~/.config/wol-sleep-pc/config.json Example content: { "mac": "24:4B:FE:CA:90:99", "sleep_mac": "99:90:CA:FE:4B:24", "broadcast": "192.168.1.255", "port": 9 } Behavior: scripts load values from this file if present; any CLI flags override the config file values. The repository .gitignore ignores config files so secrets remain local. Agent usage patterns "wake PC" โ€” run send_wol.py with configured values. "sleep PC" โ€” run send_sleep.py with configured inverted MAC. "send WOL now" / "send SOL now" โ€” immediate send. Design notes and safety Scripts require Python 3 and permission to send UDP broadcast packets from the runtime host. The 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. Defaults are intentionally zeroed to avoid leaking sensitive addresses when the skill is published. Publishing guidance The repo is safe to publish to ClawHub as-is because it contains no real MAC/IP values and ignores local config. Add a LICENSE if you want to publish under a specific license. When to trigger this skill Trigger 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.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs2 Scripts
  • SKILL.md Primary doc
  • README.md Docs
  • scripts/send_sleep.py Scripts
  • scripts/send_wol.py Scripts