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

api-event-queryAPI event query 日程管理

Agent Skill

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

总安装

4,301

周安装

174

GitHub Stars

公开资料未说明

下载量

1,350
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install api-event-query

简介

API Event Query 支持自然语言查询 Closeli 设备事件记录。

  • 返回 AI 摘要和详细事件列表包括运行时间和类型。
  • 适合设备行为分析和异常检测场景。api-event-query 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 使用时需用清晰语句描述查询意图。
  • 建议验证事件时间范围和过滤条件的准确性。

SKILL.md

name
api-event-query
description
Closeli Device Event Query API. Supports natural language queries for device events and returns an AI summary and event list, including event types, time ranges, and image or video URLs. Use when: You need to directly ask about device events, such as “Was there anyone detected?”, “Did any car pass by?”, or “Where did my cat go?”, to quickly obtain event analysis results and details. ⚠ Security requirement: You must set the AI_GATEWAY_API_KEY environment variable and use a least-privilege credential. Please obtain the environment variable 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

Event Query API

POST /api/event/query is an AI-powered event query API that supports natural language queries and returns an AI summary and event list.

⚠️ Display Rules (MUST be strictly followed)

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

  1. When code == 0 and data.events is not empty:

📋 AI Summary: {summary}

TimeEvent TagsScene Description
{time}{ai_events joined by commas}{ai_scene}

After the table, display the thumbnail link for each event one by one:

📷 {time} - {ai_events} View Screenshot

Key rules:

  • device_id MUST be displayed after removing the xxxxS_ prefix
  • pic_url MUST be output using Markdown link format [View Screenshot](url)
  • MUST NOT use image syntax ![](url) (some clients do not support inline image rendering)
  • MUST NOT output bare URL text
  • If there are more than 10 items, only display the first 10 and indicate the total count
  1. When events is an empty array, reply: "No matching events were found within the query time range."
  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 reading 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 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 API_KEY through environment variables and MUST NOT rely on the shared credential file
  • TLS certificate verification is enabled by default. You MUST NOT disable it in production environments (disabling it introduces man-in-the-middle attack risks, and attackers may intercept 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 to avoid reusing high-privilege credentials. This skill only requires event query permission

Network Access Declaration

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

EndpointMethodPurpose
/api/event/queryPOSTQuery device events in natural language

The script does not access any other network resources.

Quick Start

python3 query_events.py \
  --device-ids "xxxxS_aabbccddeeff" \
  --start-date "2026-03-16" \
  --end-date "2026-03-18" \
  --query "Was there anyone here today?"

Request Format

Request Body

Parameter NameTypeRequiredDefault ValueDescription
device_idsstring[]Yes-Device ID list, cannot be empty. Format: xxxxS_<mac>
start_datestringYes-Query start date, format yyyy-MM-dd
end_datestringYes-Query end date, format yyyy-MM-dd
querystringYes-Natural language query content
localestringNo"zh_CN"Locale, affects the language of the AI summary

Response Format

{
  "code": 0,
  "message": "success",
  "request_id": "<32-character request trace ID>",
  "data": {
    "summary": "A total of 3 person-detected events were identified today.",
    "events": [...],
    "_total_count": 15
  }
}

data Field

Parameter NameTypeDescription
summarystringAI-generated event summary text
eventsarrayEvent list (the script has already trimmed it to the first 3 items)
_total_countintegerTotal number of events (additional field added by the script)

Elements of the events Array

Parameter NameTypeDescription
device_idstringDevice ID
event_idstringEvent ID
timestringFormatted time string
ai_eventsstring[]List of AI-recognized event tags
ai_scenestringAI-described scene text
pic_urlstringShort link to the event thumbnail (may be empty)

Error Codes

Error CodeHTTP Status CodeDescription
1001401api_key not provided
1002401api_key is invalid or disabled
2001400Missing required parameter
3001502Internal gateway service call failed
5000500Internal error

Notes

  • device_ids cannot be an empty array, otherwise error code 2001 is returned
  • 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
  • start_date and end_date use the yyyy-MM-dd format
  • query supports natural language
  • Global request timeout is 120 seconds

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

83.9%
按下载量换算1,133

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills