Token导航 LogoToken导航TokenDH.com
效率需要联网clawhub未标认证来源可访问clear审计通过

wolpwolp 效率

Agent Skill

wolp 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,156

周安装

217

GitHub Stars

1

下载量

1,805
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:wolp(wolp 效率)
来源仓库:https://github.com/leeyeel/wolp
安装命令:
openclaw skills install wolp
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install wolp

简介

wolp 发送原始以太网魔术包以唤醒或关闭局域网设备。

  • 适用于高级网络管理需求,如绕过普通 WOL 工具的兼容性问题。
  • 支持自定义 MAC 地址与广播地址,灵活适配不同网络拓扑。
  • 安装命令为 openclaw skills install wolp,需 root 或管理员权限。
  • 使用前应确认目标设备处于低功耗状态且网络可达,否则可能无效。

SKILL.md

name
wolp
description
Wake or shut down LAN devices by sending WOL-plus packets from the agent host. Use this when the user wants to power on a device with a raw Ethernet magic packet, or power off a device with a UDP magic packet, and they can provide the target MAC address plus the network interface or target IPv4 address.

wolp

Use this skill when the user wants the agent to control a device on the local network.

Supported operations:

  • wake: send a standard UDP Wake-on-LAN magic packet with Python
  • shutdown: send a UDP magic packet to a target IPv4 address
  • list: print the resolved device inventory

Use the bundled Python script:

  • scripts/wolp_power.py
  • assets/devices.json

Required inputs:

  • Wake:

- target MAC address - optional broadcast IPv4 address, default 255.255.255.255 - optional UDP port, default 9

  • Shutdown:

- target MAC address - target IPv4 address - optional extra_data, default FF:FF:FF:FF:FF:FF - optional UDP port, default 9

Constraints:

  • shutdown uses a normal UDP socket and does not require root.
  • wake uses the Python package wakeonlan and does not require a compiled helper.
  • Install the dependency before sending wake packets:
python3 -m pip install wakeonlan
  • The wake subcommand will print a clear error if wakeonlan is missing.
  • shutdown requires IP connectivity to the target host and a compatible WOL-plus listener on the target machine.
  • Packet send confirms only local transmission, not that the remote machine actually changed power state.

Device inventory:

  • Store reusable devices in skill/wolp/assets/devices.json.
  • Successful non-dry-run wake and shutdown commands automatically write the resolved device info back to assets/devices.json.
  • If --device <name> is provided, that entry is updated in place; otherwise the script reuses an existing entry with the same MAC or creates a new device-<mac> entry.
  • Repeated operations on the same device keep refreshing that device's stored fields and the latest success metadata.
  • The file format is:
{
  "defaults": {
    "broadcast_ip": "255.255.255.255",
    "port": 9,
    "extra_data": "FF:FF:FF:FF:FF:FF"
  },
  "devices": {
    "nas": {
      "mac": "AA:BB:CC:DD:EE:FF",
      "host": "192.168.1.50",
      "broadcast_ip": "192.168.1.255"
    },
    "desktop": {
      "mac": "11:22:33:44:55:66",
      "host": "192.168.1.60",
      "extra_data": "12:34:56:78:9A:BC",
      "last_action": "shutdown",
      "last_success_at": "2026-03-21T00:00:00Z",
      "port": 9
    }
  }
}
  • Use list before sending if you need to inspect or verify stored devices.
  • CLI flags override inventory values.

Preferred commands:

python3 skill/wolp/scripts/wolp_power.py list
python3 skill/wolp/scripts/wolp_power.py wake --device nas
python3 skill/wolp/scripts/wolp_power.py shutdown --device nas
python3 skill/wolp/scripts/wolp_power.py wake --mac AA:BB:CC:DD:EE:FF
python3 skill/wolp/scripts/wolp_power.py wake --mac AA:BB:CC:DD:EE:FF --broadcast-ip 192.168.1.255 --port 9
python3 skill/wolp/scripts/wolp_power.py shutdown --host 192.168.1.50 --mac AA:BB:CC:DD:EE:FF --extra-data FF:FF:FF:FF:FF:FF --port 9

For safe previews or debugging, use --dry-run first:

python3 skill/wolp/scripts/wolp_power.py wake --device nas --dry-run
python3 skill/wolp/scripts/wolp_power.py shutdown --device nas --dry-run

Client install and config:

  • Project: https://github.com/leeyeel/WOL-plus
  • Releases: https://github.com/leeyeel/WOL-plus/releases
  • Client receives shutdown packets and serves the Web UI.
  • Default Web UI access:

- URL: http://<client-ip>:2025 - username: admin - password: admin123

Agent standard install procedure:

  1. Confirm the minimum missing inputs only:

- target OS: Windows, Debian/Ubuntu, or RPM-based Linux - target architecture when relevant: amd64 or arm64/aarch64 - whether the agent can install directly on the target machine or must only provide user instructions - target machine IP if the user wants Web UI verification

  1. Choose the install source:

- prefer a matching package from Releases - prefer the Debian package when the agent can reach a Debian/Ubuntu host over SSH - only build from this repo when a needed Debian package is unavailable from Releases

  1. Install by platform:

- Windows: - download installer_windows_amd64_v<version>.exe from Releases - if the agent cannot control the Windows desktop session, tell the user to run the installer manually - after installation, verify the service is running and open http://<windows-ip>:2025 - Debian/Ubuntu:

     sudo dpkg -i wolp-client_<version>_amd64.deb
     sudo systemctl status wolp.service

- RPM Linux:

     sudo rpm -ivh wolp-client-<version>-1.x86_64.rpm
     sudo systemctl status wolp.service
  1. Debian build fallback from this repo:
   bash scripts/build-deb.sh amd64 0.0.0-dev
   sudo dpkg -i release/client/wolp-client_0.0.0-dev_amd64.deb
   sudo systemctl status wolp.service
  1. Verify the client after install:

- confirm wolp.service is active - confirm the Web UI responds at http://<client-ip>:2025 - tell the user to change the default password after first login

  1. Configure the client when the user wants shutdown support:

- edit /usr/local/etc/wolp/wolp.json - set mac_address to the client machine MAC that should receive the shutdown packet - set interface to the active NIC name on the client machine - set extra_data to match the sender's --extra-data - set udp_port to match the sender's --port - set shutdown_delay, username, and password as requested

  1. Remember the fixed defaults and path layout:

- binary: /usr/local/bin/wolp - config: /usr/local/etc/wolp/wolp.json - web UI: /usr/share/wolp/webui - service: wolp.service - default extra_data=FF:FF:FF:FF:FF:FF - default udp_port=9 - default shutdown_delay=60 - default HTTP UI port 2025

  1. Keep protocol roles clear:

- sender-side inventory interface matters only for wake - receiver-side udp_port and extra_data matter only for shutdown

When reporting results or performing installs:

  • echo the resolved broadcast IP, host, UDP port, and normalized MAC values
  • for wake, report that the packet is sent through the wakeonlan Python package
  • state clearly whether the script performed a real send or a dry run
  • if the user did not provide enough data, ask only for the missing MAC, target IPv4 address, or wake broadcast IP when needed
  • if you install the client, report the package source, package path, config path, Web UI URL, and the exact extra_data and udp_port values you configured

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

76.75%
按下载量换算1,385

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills