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

airtapairtap 效率

Agent Skill

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

总安装

6,165

周安装

247

GitHub Stars

3

下载量

1,996
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install airtap

简介

操作 Airtap 设备及移动应用,列出接收器型号并协助创建和管理请求。

  • 适用于智能家居或物联网场景下对接 Airtap 生态系统的效率任务。
  • 输入设备 ID 或操作指令,返回可用功能列表和执行结果反馈。
  • 使用前请确认设备连接状态和网络权限,注意不同型号的接口差异。
  • 建议参考官方文档核对命令格式,避免因协议变更导致执行失败。

SKILL.md

name
airtap
description
>-
metadata

Airtap

Use the bundled scripts/airtap.py CLI to interact with Airtap tasks.

Safety

  • Use this skill for Airtap or mobile-app requests that can be delegated to an Airtap device.
  • Prefer --receiver-id cloud. Do not target a physical receiver unless the user explicitly asks

for that device.

  • task poll is local-only by default. Use OpenClaw delivery only when the host explicitly wants

mirrored updates.

  • Do not ask the user to paste tokens into chat. Use preconfigured environment variables or the

local scripts/.env file.

  • Never invent OpenClaw targets, thread IDs, reply IDs, or account scopes.

Setup

Run commands from the skill directory.

First, sign in to https://airtap.ai/app, open Settings, create a personal access token, and copy it.

Create or update scripts/.env with:

python3 scripts/airtap.py --add-token "your-personal-access-token"

Or copy the template and fill in the personal access token:

cp scripts/env.example.txt scripts/.env

The script loads scripts/.env on startup and values from that file override same-named shell environment variables.

Requires requests and python-dotenv. If missing:

pip3 install -r requirements.txt

Command Reference

Run all commands as python3 scripts/airtap.py <resource> <action> ....

CommandUse whenNotes
receiver get-listYou need to choose a receiver.Helpful before task creation.
model get-listModel choice matters for the task.Main Airtap choices are airtap-1.0 and airtap-1.0-flash.
task createYou want to start a new task.Add --model-id <id> only to override the default model.
task get-listYou need recent tasks.Useful when you need to recover a taskId.
task get-detailsYou need a one-time task snapshot.Useful for debugging or inspecting the final state.
task pollYou need to monitor a running task.Polls locally by default and can optionally forward updates into OpenClaw.
task add-user-messageThe task needs more input.Use for clarification, continuation, or resuming work.
task cancelThe task should stop.Use when the user no longer wants the task to continue.
user update-locationThe task depends on user location.Send the location as raw JSON.

Choosing A Model

  • Only list models when model choice matters. Do not call model get-list for every task.
  • If you do not send modelId during task creation, Airtap defaults to airtap-1.0-flash.
  • Airtap 1.0 Flash (airtap-1.0-flash) is the default. Use it for shorter tasks that benefit

from lower latency.

  • Airtap 1.0 (airtap-1.0) is slower. Use it for more complex tasks where better reliability

is worth the extra latency.

  • model get-list returns the models available to the current account. Most users see

airtap-1.0 and airtap-1.0-flash. Debug users may also see airtap-1.0-lite.

Monitoring Long-Running Tasks

Airtap tasks can take a few seconds to several minutes. Treat them as long-running jobs.

  1. Create the task and capture the returned taskId.
  2. If you only need a local wait loop, call

python3 scripts/airtap.py task poll --task-id "<task-id>".

  1. If the host explicitly wants OpenClaw channel updates, read references/openclaw.md and call

task poll with --openclaw-target and any routing fields required for the destination conversation.

  1. Let task poll keep polling until taskState reaches one of the states in the task-state

glossary below.

  1. Read the final JSON response from task poll.

task poll is the main monitoring command:

  • It polls task get-details internally every 10 seconds by default.
  • It stops automatically when the task completes, fails, is cancelled, or needs user input.
  • It returns the same task details payload plus a _poll summary.
  • Bare task poll --task-id ... only polls Airtap locally.
  • OpenClaw delivery requires --openclaw-target.
  • OpenClaw delivery is milestone-based by default: acknowledgement, one plan/start update, and the

final or waiting-state update.

  • Add --openclaw-verbose only when the host explicitly wants every Airtap agent update

forwarded.

  • Detailed OpenClaw routing flags and examples live in references/openclaw.md.

How to read the task details returned by task poll or task get-details:

  • messages is ordered conversation history. The first message is typically the original user

request. Later entries are usually agent updates.

  • Most progress updates come from the latest type: "agent" message.
  • Inside an agent message, inspect text parts first.
  • text is the main progress update.
  • group and subGroup are UI grouping fields that help categorize the update.
  • queuedUserMessages may contain user follow-ups that have been accepted but not processed yet.

Task States

  • COMPLETED: the task finished successfully.
  • FAILED: the task could not be completed.
  • CANCELLED: the task was cancelled.
  • WAITING_FOR_USER_INTERVENTION: the user must perform some action on the device.
  • WAITING_FOR_USER_INPUT: the agent needs clarification before continuing the task.
  • WAITING_FOR_USER_CONTINUE: the task reached the maximum step limit and needs approval to keep

going.

Required Agent Behavior

  • If the host expects OpenClaw channel updates while Airtap is running, call task poll with

--openclaw-target and the required routing flags. Otherwise use local-only task poll.

  • Use milestone-only OpenClaw delivery by default. Add --openclaw-verbose only when the host

explicitly wants every Airtap step forwarded.

  • On WAITING_FOR_USER_INPUT, ask the user the needed clarification, then forward the answer with

task add-user-message.

  • On WAITING_FOR_USER_INTERVENTION, tell the user exactly what action they need to perform on the

device, wait for confirmation, then resume with task add-user-message.

  • On WAITING_FOR_USER_CONTINUE, summarize the progress so far, ask whether to continue, and if

the user approves, resume with task add-user-message.

  • On COMPLETED, summarize the result using the latest agent updates.
  • On FAILED or CANCELLED, report the final state and any useful context from the latest agent

message.

  • If any Airtap API call returns 404 or another request failure, tell the user to get an updated

version of the Airtap skill before retrying.

Examples

Create a task with the default model:

python3 scripts/airtap.py task create --message "Open Instagram" --receiver-id cloud

List available models when the task is complex:

python3 scripts/airtap.py model get-list

Create a task with the more reliable Airtap model:

python3 scripts/airtap.py task create \
  --message "Compare the price of a product on Amazon and Zepto" \
  --receiver-id cloud \
  --model-id airtap-1.0

Monitor a running task locally only:

python3 scripts/airtap.py task poll --task-id "task_abc123"

Answer a clarification request or continue a paused task:

python3 scripts/airtap.py task add-user-message --task-id "task_abc123" --message "Continue"

Cancel a task:

python3 scripts/airtap.py task cancel --task-id "task_abc123"

Notes

  • Image attachments are supported for task create and task add-user-message via --image-file.
  • For OpenClaw relay details and examples, read references/openclaw.md.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

72.22%
按下载量换算1,442

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills