Token导航 LogoToken导航TokenDH.com
研究检索权限需确认clawhub未标认证来源可访问clear审计提醒

geeklink-home极客链接首页

Agent Skill

geeklink-home 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,280

周安装

134

GitHub Stars

公开资料未说明

下载量

1,061
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install geeklink-home

简介

geeklink-home 通过局域网控制 Geeklink Home 本地网关设备与场景。

  • 支持设备列表查询与场景联动操作,适合智能家居集成。
  • 通过 clawhub 安装,需部署独立 Node.js 运行时。
  • 网络延迟可能影响实时控制体验,建议在同一子网内运行。
  • 设备通信协议细节请参考官方文档以确保兼容性。

SKILL.md

name
geeklink-home
description
[English] Control Geeklink Home local gateway devices and scenes over LAN via the bundled self-contained Node.js runtime. Supports device listing, scene listing, state checks, scene activation, and local device control using pairing-token based auth. | [中文] 通过内置自包含的 Node.js 运行时,在局域网内控制 Geeklink Home 网关设备和场景。支持设备列表、场景列表、状态查询、场景执行,以及基于配对 token 的本地设备控制。
metadata
{"clawdbot":{"emoji":"🏠","requires":{"bins":["node"]}}}

Geeklink Home Control | Geeklink Home 局域网控制

[English] | 中文


English

Use the local Geeklink Home gateway over LAN through the bundled self-contained Node.js skill runtime.

Features

  • Local LAN access to the Geeklink Home gateway
  • Pairing-token based authentication
  • Device catalog, scene catalog, and state snapshot access
  • Background watcher with recent event and single-device state queries
  • Scene activation and local device control
  • Multi-gang panels are expanded into practical sub-devices such as 吊灯 and 筒灯
  • Packaged around the bundled vendor/geeklink-lan-cli.js runtime
  • The persistent runtime keeps a single watcher instance per loaded skill

Setup

  1. Ensure vendor/geeklink-lan-cli.js exists in the installed skill package.
  2. Open the gateway details page in the Geeklink app and go to AI Skill Access.
  3. Copy gatewayHost and pairingToken from that page.
  4. Use the cross-platform Node wrapper scripts in scripts/ to query devices, scenes, states, and execute actions.
  5. When loaded by ClawHub/OpenClaw as a skill runtime, the watcher is started automatically and tools can read recent events.

Core Workflow

  1. Open the gateway details page in the Geeklink app and enter AI Skill Access.
  2. Read the gatewayHost and pairingToken shown on that page.
  3. Run node scripts/geeklink-home.js login --host <host> --pairing-token <token> once to cache session.
  4. Use:

- node scripts/geeklink-home.js catalog devices --refresh - node scripts/geeklink-home.js catalog devices --query 吊灯 --refresh - node scripts/geeklink-home.js catalog scenes --refresh - node scripts/geeklink-home.js state snapshot --refresh - node scripts/geeklink-home.js scene activate <sceneId> - node scripts/geeklink-home.js device control <catalogDeviceId> ...

Natural Language Mapping

When the user asks for:

  • "What devices do I have?" -> run catalog devices --refresh
  • "What scenes are available?" -> run catalog scenes --refresh
  • "Turn on living room light" -> find the matching expanded catalog_device_id (for example 吊灯 under a panel), then run device control <id> --power on
  • "Set bedroom AC to 26 cool high" -> device control <id> --power on --temperature 26 --mode cool --fan-speed high
  • "Run away mode" -> find scene_id, then run scene activate <sceneId>
  • "Is the living room light on?" -> use geeklink_get_device_state
  • "What changed recently?" -> use geeklink_get_recent_events

Do not guess catalog_device_id. Always list devices first if the mapping is unclear. When a panel exposes named roads, prefer the expanded road device like 吊灯 instead of the parent panel name.

Release Notes

  • Version: 0.1.0
  • Validated:

- Device catalog - Scene catalog - Local device control - State snapshot - Single-watcher recent event tracking

  • ClawHub publisher owner id for this package is lintertion.

中文说明

通过内置的自包含 Node.js 运行时,在局域网内直接访问 Geeklink Home 网关。

功能

  • 在局域网内访问 Geeklink Home 网关
  • 基于 pairing token 的认证
  • 读取设备目录、场景目录、状态快照
  • 提供后台 watcher、最近事件和单设备状态查询
  • 执行场景和本地设备控制
  • vendor/geeklink-lan-cli.js 为底层运行时
  • 多路面板会展开成更符合用户习惯的子设备,例如 吊灯筒灯
  • 常驻 skill runtime 只会启动一个 watcher 实例

使用前准备

  1. 确认已安装的 skill 包中存在 vendor/geeklink-lan-cli.js
  2. 在 Geeklink App 的网关详情页进入 AI技能接入 页面。
  3. 在该页面查看并复制 gatewayHostpairingToken
  4. 通过 scripts/ 中的跨平台 Node 包装脚本完成登录、列表查询、场景执行和设备控制。
  5. 如果由 ClawHub/OpenClaw 以常驻 skill runtime 加载,watcher 会自动启动,并支持读取最近事件。

建议工作流

  1. 先在 Geeklink App 的网关详情页打开 AI技能接入 页面。
  2. 记录页面展示的 gatewayHostpairingToken
  3. 首次使用先执行:
   node scripts/geeklink-home.js login --host <host> --pairing-token <token>
  1. 然后按需执行:

- node scripts/geeklink-home.js catalog devices --refresh - node scripts/geeklink-home.js catalog devices --query 吊灯 --refresh - node scripts/geeklink-home.js catalog scenes --refresh - node scripts/geeklink-home.js state snapshot --refresh - node scripts/geeklink-home.js scene activate <sceneId> - node scripts/geeklink-home.js device control <catalogDeviceId> ...

自然语言意图映射

  • “我有哪些设备” -> catalog devices --refresh
  • “有哪些场景” -> catalog scenes --refresh
  • “打开客厅主灯” -> 先找到展开后的子设备 catalog_device_id,再执行 device control <id> --power on
  • “卧室空调调到 26 度制冷高速” -> device control <id> --power on --temperature 26 --mode cool --fan-speed high
  • “执行离家模式” -> 找到 scene_id,再执行 scene activate <sceneId>
  • “客厅灯现在开着吗” -> geeklink_get_device_state
  • “最近发生了什么变化” -> geeklink_get_recent_events

不要猜测 catalog_device_id。如果设备匹配不确定,先列出设备再确认。对于多路面板,优先使用展开后的子设备名,例如 吊灯筒灯,不要只盯着父设备名。

发布说明

  • 版本:0.1.0
  • 已验证能力:

- 设备目录 - 场景目录 - 本地设备控制 - 状态快照 - 单实例 watcher 最近事件跟踪

  • 该包发布到 ClawHub 时使用的 ownerIdlintertion

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

84.38%
按下载量换算895

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

可疑

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

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

来源信息

继续浏览同类 Skills