Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

api-device-list1API device list1 搜索

Agent Skill

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。它适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿、检查字段命名、整理错误码或辅助前后端联调。使用时需要确认真实业务语义、鉴权方式、分页和错误处理规则;涉及生成接口文档时,应避免凭空补字段,最好从现有代码、schema 或接口样例中提取事实。

总安装

4,284

周安装

184

GitHub Stars

公开资料未说明

下载量

1,501
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install api-device-list1

简介

API Device List1 查询 Closeli 账户下的设备基本信息列表。

  • 返回设备名称、MAC 地址和 IMEI 等关键标识。
  • 适合设备管理和资产清点的应用场景。api-device-list1 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 使用时需确保 API 密钥具有设备读取权限。
  • 建议核对返回信息与实际设备清单的一致性。

SKILL.md

name
api-device-list
description
Closeli Device List Query API. Used to retrieve the device list under the current account and return basic information such as device name, MAC, and IMEI. Use when: You need to see which devices are under the account, or obtain device identifiers before calling other device APIs. ⚠ Security requirement: You must set the AI_GATEWAY_API_KEY environment variable and use least-privilege credentials. The environment variable can be obtained from the AI settings page in the app.
metadata
openclaw
requires
bins
["python3"]
env
["AI_GATEWAY_API_KEY"]
configPaths
["~/.openclaw/.env"]
primaryEnv
AI_GATEWAY_API_KEY

Device List Query API

POST /api/device/list is used to query all devices bound to the currently authenticated user. This API does not require a request body. The device list is automatically associated through the api_key.

⚠️ Display Rules (MUST Be Strictly Followed)

The script outputs structured data in JSON format, which is the expected behavior. The following display rules are formatting instructions for the agent: the agent MUST parse the JSON output from the script and convert it into a user-friendly format according to the rules below before displaying it, and MUST NOT display the raw JSON directly.

  1. When code == 0 and data is not empty, display it as a table:
MAC AddressDevice Name
aabbccddeeffLiving Room Camera

Key rule: device_id MUST remove the xxxxS_ prefix before being displayed as the MAC address. The table header MUST be written as "MAC Address" and MUST NOT be written as "Device ID".

  1. When data is an empty array, reply: "There are no devices bound under the current account."
  2. When code != 0, reply: "API call failed, error code {code}, reason: {message}"

Prerequisites

The script depends on httpx. If it is not installed, the script will prompt python3 -m pip install httpx.

Configuration Declaration

This skill depends on the following configuration items. The agent and user MUST confirm that they are correctly configured before running.

Required Configuration

Configuration ItemDelivery MethodDescription
AI_GATEWAY_API_KEYEnvironment variable (recommended), ~/.openclaw/.env (fallback), command line --api-keyAPI key used for API authentication. The script automatically retrieves it according to this priority order

Optional Configuration

Configuration ItemDelivery MethodDefault ValueDescription
AI_GATEWAY_HOSTEnvironment variable, ~/.openclaw/.envhttps://ai-open.icloseli.comGateway address
AI_GATEWAY_VERIFY_SSLEnvironment variabletrueSet to false to disable TLS certificate verification (development environments only)
AI_GATEWAY_NO_ENV_FILEEnvironment variablefalseSet to true to disable fallback loading from ~/.openclaw/.env (recommended for production environments)

Fallback Configuration Path

By default, the script reads the ~/.openclaw/.env file as the fallback configuration source. This file is shared by all skills and uses the format KEY=VALUE (one entry per line). In production environments, you MUST set AI_GATEWAY_NO_ENV_FILE=true to disable this fallback and instead pass all configuration directly through environment variables.

Security Notes

  • The shared credential file ~/.openclaw/.env can be read by all skills under the same user. In production environments, you MUST pass the API_KEY through environment variables and MUST NOT rely on the shared credential file
  • TLS certificate verification is enabled by default and MUST NOT be disabled in production environments (disabling it introduces man-in-the-middle attack risks, allowing attackers to intercept the API_KEY and device data)
  • Before use, you MUST confirm that AI_GATEWAY_HOST points to a trusted domain
  • You MUST use a least-privilege API_KEY and avoid reusing high-privilege credentials. This skill only requires device list query permission

Network Access Declaration

This skill only accesses the following endpoints (all are paths under AI_GATEWAY_HOST):

EndpointMethodPurpose
/api/device/listPOSTQuery the list of devices bound to the user

The script does not access any other network resources.

Quick Start

python3 list_devices.py

Authentication Method

Bearer Token authentication is used. The script automatically carries Authorization: Bearer <api_key> in the request header.

Request Format

Request Headers

Parameter NameTypeRequiredDescription
Content-TypestringYesapplication/json
AuthorizationstringYesBearer <api_key>, a 32-character hexadecimal string

Request Body

No request body is required.

Response Format

{
  "code": 0,
  "message": "success",
  "request_id": "<32-character request trace ID>",
  "data": [
    {
      "device_id": "xxxxS_aabbccddeeff",
      "device_name": "Living Room Camera"
    }
  ]
}

data Field (Device Array)

Parameter NameTypeDescription
device_idstringDevice ID, format: xxxxS_<mac_address>. All subsequent device APIs use this format
device_namestringDevice name, a user-defined device alias

Error Codes

Error CodeHTTP Status CodeDescription
1001401api_key not provided (missing Authorization header or incorrect format)
1002401api_key is invalid or disabled
3001502Internal gateway service call failed
3004502Internal gateway service call failed
5000500Internal error

Notes

  • The device_id format is xxxxS_<mac>, which is the identifier used by all subsequent device-related APIs
  • IMPORTANT: device_id is case-sensitive. The prefix MUST be lowercase xxxxS_, NOT uppercase XXXXS_. The script will auto-correct the case, but the agent SHOULD always pass the correct lowercase format
  • The global request timeout is 120 seconds

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

83.22%
按下载量换算1,249

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills