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

lap-adafruit-io-rest-apiLAP adafruit IO rest API 文档

Agent Skill

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

总安装

4,727

周安装

195

GitHub Stars

公开资料未说明

下载量

1,544
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install lap-adafruit-io-rest-api

简介

Adafruit IO REST API 技能。在使用用户 {username}、webhooks 的 Adafruit IO REST 时使用。覆盖71个端点。

SKILL.md

name
lap-adafruit-io-rest-api
description
Adafruit IO REST API skill. Use when working with Adafruit IO REST for user, {username}, webhooks. Covers 71 endpoints.
version
1.0.0
generator
lapsh
metadata
openclaw
requires
env

Adafruit IO REST API

API version: 2.0.0

Auth

ApiKey X-AIO-Key in header | ApiKey X-AIO-Key in query | ApiKey X-AIO-Signature in header

Base URL

https://io.adafruit.com/api/v2

Setup

  1. Set your API key in the appropriate header
  2. GET /user -- verify access
  3. POST /{username}/feeds -- create first feeds

Endpoints

71 endpoints across 3 groups. See references/api-spec.lap for full details.

user

MethodPathDescription
GET/userGet information about the current user

{username}

MethodPathDescription
GET/{username}/throttleGet the user's data rate limit and current activity level.
GET/{username}/activitiesAll activities for current user
DELETE/{username}/activitiesAll activities for current user
GET/{username}/activities/{type}Get activities by type for current user
GET/{username}/feedsAll feeds for current user
POST/{username}/feedsCreate a new Feed
GET/{username}/feeds/{feed_key}Get feed by feed key
PUT/{username}/feeds/{feed_key}Replace an existing Feed
PATCH/{username}/feeds/{feed_key}Update properties of an existing Feed
DELETE/{username}/feeds/{feed_key}Delete an existing Feed
GET/{username}/feeds/{feed_key}/detailsGet detailed feed by feed key
GET/{username}/feeds/{feed_key}/dataGet all data for the given feed
POST/{username}/feeds/{feed_key}/dataCreate new Data
GET/{username}/feeds/{feed_key}/data/chartChart data for current feed
POST/{username}/feeds/{feed_key}/data/batchCreate multiple new Data records
GET/{username}/feeds/{feed_key}/data/previousPrevious Data in Queue
GET/{username}/feeds/{feed_key}/data/nextNext Data in Queue
GET/{username}/feeds/{feed_key}/data/lastLast Data in Queue
GET/{username}/feeds/{feed_key}/data/firstFirst Data in Queue
GET/{username}/feeds/{feed_key}/data/retainLast Data in MQTT CSV format
GET/{username}/feeds/{feed_key}/data/{id}Returns data based on feed key
PUT/{username}/feeds/{feed_key}/data/{id}Replace existing Data
PATCH/{username}/feeds/{feed_key}/data/{id}Update properties of existing Data
DELETE/{username}/feeds/{feed_key}/data/{id}Delete existing Data
GET/{username}/groupsAll groups for current user
POST/{username}/groupsCreate a new Group
GET/{username}/groups/{group_key}Returns Group based on ID
PUT/{username}/groups/{group_key}Replace an existing Group
PATCH/{username}/groups/{group_key}Update properties of an existing Group
DELETE/{username}/groups/{group_key}Delete an existing Group
POST/{username}/groups/{group_key}/addAdd an existing Feed to a Group
POST/{username}/groups/{group_key}/removeRemove a Feed from a Group
GET/{username}/groups/{group_key}/feedsAll feeds for current user in a given group
POST/{username}/groups/{group_key}/feedsCreate a new Feed in a Group
POST/{username}/groups/{group_key}/dataCreate new data for multiple feeds in a group
GET/{username}/groups/{group_key}/feeds/{feed_key}/dataAll data for current feed in a specific group
POST/{username}/groups/{group_key}/feeds/{feed_key}/dataCreate new Data in a feed belonging to a particular group
POST/{username}/groups/{group_key}/feeds/{feed_key}/data/batchCreate multiple new Data records in a feed belonging to a particular group
GET/{username}/dashboardsAll dashboards for current user
POST/{username}/dashboardsCreate a new Dashboard
GET/{username}/dashboards/{id}Returns Dashboard based on ID
PUT/{username}/dashboards/{id}Replace an existing Dashboard
PATCH/{username}/dashboards/{id}Update properties of an existing Dashboard
DELETE/{username}/dashboards/{id}Delete an existing Dashboard
GET/{username}/dashboards/{dashboard_id}/blocksAll blocks for current user
POST/{username}/dashboards/{dashboard_id}/blocksCreate a new Block
GET/{username}/dashboards/{dashboard_id}/blocks/{id}Returns Block based on ID
PUT/{username}/dashboards/{dashboard_id}/blocks/{id}Replace an existing Block
PATCH/{username}/dashboards/{dashboard_id}/blocks/{id}Update properties of an existing Block
DELETE/{username}/dashboards/{dashboard_id}/blocks/{id}Delete an existing Block
GET/{username}/tokensAll tokens for current user
POST/{username}/tokensCreate a new Token
GET/{username}/tokens/{id}Returns Token based on ID
PUT/{username}/tokens/{id}Replace an existing Token
PATCH/{username}/tokens/{id}Update properties of an existing Token
DELETE/{username}/tokens/{id}Delete an existing Token
GET/{username}/triggersAll triggers for current user
POST/{username}/triggersCreate a new Trigger
GET/{username}/triggers/{id}Returns Trigger based on ID
PUT/{username}/triggers/{id}Replace an existing Trigger
PATCH/{username}/triggers/{id}Update properties of an existing Trigger
DELETE/{username}/triggers/{id}Delete an existing Trigger
GET/{username}/{type}/{type_id}/aclAll permissions for current user and type
POST/{username}/{type}/{type_id}/aclCreate a new Permission
GET/{username}/{type}/{type_id}/acl/{id}Returns Permission based on ID
PUT/{username}/{type}/{type_id}/acl/{id}Replace an existing Permission
PATCH/{username}/{type}/{type_id}/acl/{id}Update properties of an existing Permission
DELETE/{username}/{type}/{type_id}/acl/{id}Delete an existing Permission

webhooks

MethodPathDescription
POST/webhooks/feed/:tokenSend data to a feed via webhook URL.
POST/webhooks/feed/:token/rawSend arbitrary data to a feed via webhook URL.

Common Questions

Match user requests to endpoints in references/api-spec.lap. Key patterns:

  • "List all user?" -> GET /user
  • "List all throttle?" -> GET /{username}/throttle
  • "List all activities?" -> GET /{username}/activities
  • "Get activity details?" -> GET /{username}/activities/{type}
  • "List all feeds?" -> GET /{username}/feeds
  • "Create a feed?" -> POST /{username}/feeds
  • "Get feed details?" -> GET /{username}/feeds/{feed_key}
  • "Update a feed?" -> PUT /{username}/feeds/{feed_key}
  • "Partially update a feed?" -> PATCH /{username}/feeds/{feed_key}
  • "Delete a feed?" -> DELETE /{username}/feeds/{feed_key}
  • "List all details?" -> GET /{username}/feeds/{feed_key}/details
  • "List all data?" -> GET /{username}/feeds/{feed_key}/data
  • "Create a data?" -> POST /{username}/feeds/{feed_key}/data
  • "List all chart?" -> GET /{username}/feeds/{feed_key}/data/chart
  • "Create a batch?" -> POST /{username}/feeds/{feed_key}/data/batch
  • "List all previous?" -> GET /{username}/feeds/{feed_key}/data/previous
  • "List all next?" -> GET /{username}/feeds/{feed_key}/data/next
  • "List all last?" -> GET /{username}/feeds/{feed_key}/data/last
  • "List all first?" -> GET /{username}/feeds/{feed_key}/data/first
  • "List all retain?" -> GET /{username}/feeds/{feed_key}/data/retain
  • "Get data details?" -> GET /{username}/feeds/{feed_key}/data/{id}
  • "Update a data?" -> PUT /{username}/feeds/{feed_key}/data/{id}
  • "Partially update a data?" -> PATCH /{username}/feeds/{feed_key}/data/{id}
  • "Delete a data?" -> DELETE /{username}/feeds/{feed_key}/data/{id}
  • "List all groups?" -> GET /{username}/groups
  • "Create a group?" -> POST /{username}/groups
  • "Get group details?" -> GET /{username}/groups/{group_key}
  • "Update a group?" -> PUT /{username}/groups/{group_key}
  • "Partially update a group?" -> PATCH /{username}/groups/{group_key}
  • "Delete a group?" -> DELETE /{username}/groups/{group_key}
  • "Create a add?" -> POST /{username}/groups/{group_key}/add
  • "Create a remove?" -> POST /{username}/groups/{group_key}/remove
  • "List all feeds?" -> GET /{username}/groups/{group_key}/feeds
  • "Create a feed?" -> POST /{username}/groups/{group_key}/feeds
  • "Create a data?" -> POST /{username}/groups/{group_key}/data
  • "List all data?" -> GET /{username}/groups/{group_key}/feeds/{feed_key}/data
  • "Create a data?" -> POST /{username}/groups/{group_key}/feeds/{feed_key}/data
  • "Create a batch?" -> POST /{username}/groups/{group_key}/feeds/{feed_key}/data/batch
  • "List all dashboards?" -> GET /{username}/dashboards
  • "Create a dashboard?" -> POST /{username}/dashboards
  • "Get dashboard details?" -> GET /{username}/dashboards/{id}
  • "Update a dashboard?" -> PUT /{username}/dashboards/{id}
  • "Partially update a dashboard?" -> PATCH /{username}/dashboards/{id}
  • "Delete a dashboard?" -> DELETE /{username}/dashboards/{id}
  • "List all blocks?" -> GET /{username}/dashboards/{dashboard_id}/blocks
  • "Create a block?" -> POST /{username}/dashboards/{dashboard_id}/blocks
  • "Get block details?" -> GET /{username}/dashboards/{dashboard_id}/blocks/{id}
  • "Update a block?" -> PUT /{username}/dashboards/{dashboard_id}/blocks/{id}
  • "Partially update a block?" -> PATCH /{username}/dashboards/{dashboard_id}/blocks/{id}
  • "Delete a block?" -> DELETE /{username}/dashboards/{dashboard_id}/blocks/{id}
  • "List all tokens?" -> GET /{username}/tokens
  • "Create a token?" -> POST /{username}/tokens
  • "Get token details?" -> GET /{username}/tokens/{id}
  • "Update a token?" -> PUT /{username}/tokens/{id}
  • "Partially update a token?" -> PATCH /{username}/tokens/{id}
  • "Delete a token?" -> DELETE /{username}/tokens/{id}
  • "List all triggers?" -> GET /{username}/triggers
  • "Create a trigger?" -> POST /{username}/triggers
  • "Get trigger details?" -> GET /{username}/triggers/{id}
  • "Update a trigger?" -> PUT /{username}/triggers/{id}
  • "Partially update a trigger?" -> PATCH /{username}/triggers/{id}
  • "Delete a trigger?" -> DELETE /{username}/triggers/{id}
  • "List all acl?" -> GET /{username}/{type}/{type_id}/acl
  • "Create a acl?" -> POST /{username}/{type}/{type_id}/acl
  • "Get acl details?" -> GET /{username}/{type}/{type_id}/acl/{id}
  • "Update a acl?" -> PUT /{username}/{type}/{type_id}/acl/{id}
  • "Partially update a acl?" -> PATCH /{username}/{type}/{type_id}/acl/{id}
  • "Delete a acl?" -> DELETE /{username}/{type}/{type_id}/acl/{id}
  • "Create a :token?" -> POST /webhooks/feed/:token
  • "Create a raw?" -> POST /webhooks/feed/:token/raw
  • "How to authenticate?" -> See Auth section

Response Tips

  • Check response schemas in references/api-spec.lap for field details
  • List endpoints may support pagination; check for limit, offset, or cursor params
  • Create/update endpoints typically return the created/updated object

CLI

# Update this spec to the latest version
npx @lap-platform/lapsh get adafruit-io-rest-api -o references/api-spec.lap

# Search for related APIs
npx @lap-platform/lapsh search adafruit-io-rest-api

References

  • Full spec: See references/api-spec.lap for complete endpoint details, parameter tables, and response schemas
Generated from the official API spec by LAP

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

84.79%
按下载量换算1,309

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills