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

airshellairshell 搜索

Agent Skill

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

总安装

10,584

周安装

450

GitHub Stars

公开资料未说明

下载量

3,708
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install airshell

简介

提供开源空气质量传感器 AirShell 的操作手册和技术知识库支持。

  • 适用于部署或使用 CO2、PM2.5、温湿度等传感器的开发与维护场景。
  • 输入传感器型号或问题关键词,返回配置指南、故障排查或数据接口说明。
  • 使用前请确认是否涉及设备连接或数据整理权限,注意固件兼容性。
  • 建议结合硬件文档和社区资源交叉验证技术细节准确性。

SKILL.md

name
airshell
version
1.1.1
description
|

AirShell Skill 🐢

Agent playbook for the AirShell air quality sensor.

Trigger: Any message containing Use skill:airshell or mentioning AirShell.

Read this skill, then act. Don't summarize it back to the user.


Setup check

Before handling any message, check if references/deployment.md exists and is filled in.

  • If not: run the Setup Flow below.
  • If yes: read it to understand the deployment context, then handle the message.

Setup Flow — "AirShell awaiting setup" or first run

The sensor has no deployment context yet. Interview the user to configure it properly.

Read all reference docs first, then ask these questions one at a time (don't dump them all at once):

  1. Room — What room is the sensor in? (nursery, bedroom, home office, living room, classroom, etc.)
  2. Occupants — Who uses this room? (infant, young child, elderly person, adult with respiratory issues, general adult)
  3. Location — What city / climate is this? (this helps with ventilation advice — we'll check outdoor conditions before suggesting opening windows)
  4. Priorities — What matters most to you? (sleep quality, air quality, temperature comfort, all of the above)
  5. Notifications — How alert-happy should I be? (only urgent issues / also borderline readings / everything)

Based on the answers:

  1. Suggest appropriate alarm thresholds with reasoning (reference the docs for the standards that apply to their occupant type)
  2. Ask them to confirm or adjust
  3. Write references/deployment.md with the deployment context and agreed thresholds
  4. Determine your webhook URL and token — check your own agent/gateway configuration. Do not ask the user to provide these. If you cannot determine them, tell the user: *"I need my webhook URL and token to connect to the sensor — this is how the sensor reaches me when an alarm fires. I couldn't find these automatically. You may need to check your agent's gateway config (for OpenClaw: openclaw gateway status)."*
  5. POST the config to the device (see Pushing Config below)
  6. Confirm: "AirShell is configured for [room]. Watching CO₂, PM2.5, temperature, and humidity."

Deployment Context

After setup, references/deployment.md contains:

  • Room type and occupants
  • Location (lat/lon + description)
  • Climate notes
  • Agreed alarm thresholds and reasoning
  • Any special sensitivities or preferences

Always read this file before interpreting readings or giving advice.


Weather Context

Before giving ventilation advice (for any alarm — including CO₂), check outdoor conditions:

GET https://api.open-meteo.com/v1/forecast
  ?latitude={lat}&longitude={lon}
  &current=temperature_2m,relative_humidity_2m,pm2p5
  &timezone=auto

Get lat/lon from references/deployment.mdlocation.

Decision logic:

  • Temp high: outdoor temp < indoor by 2°C+ → "open a window"; otherwise → "try a fan or AC"
  • Humidity high: outdoor humidity < indoor by 5%+ → "ventilate"; otherwise → "try a dehumidifier"
  • PM2.5 high: check outdoor PM2.5 first — never suggest opening windows if outdoor air is worse

Never suggest opening a window if outdoor conditions are worse than indoor.


Reference Docs

Read these before interpreting readings or recommending thresholds:

  • references/co2.md — CO₂ thresholds, causes, advice
  • references/pm25.md — PM2.5 thresholds, causes, advice
  • references/temp_humidity.md — Temperature and humidity standards
  • references/deployment.md — This specific installation (created during setup)

Message Types

1. "AirShell alarm RAISED: \<alarm\>"

  1. Read references/deployment.md for context
  2. Read the relevant reference doc for the measurand
  3. Fetch current readings: GET {device_url}/status
  4. Optionally pull recent trend: GET {device_url}/api/readings?last=30m
  5. For temp or humidity alarms: check outdoor weather first (see Weather Context above)
  6. Decide: is this worth alerting right now?

- Yes: value is meaningfully above threshold, trend is worsening, or first raise - Maybe not: barely above threshold and already declining

  1. If yes → reply with a short plain-language message:

- Lead with what's happening: *"CO₂ in the nursery is at 850 ppm"* - Add the so-what based on occupant type (more urgent for infants, elderly, respiratory issues) - Give context-aware advice — check outdoor conditions first - Keep it under 3 sentences

2. "AirShell alarm REPEAT: \<alarm\>"

Same as RAISED but more direct — the user may not have acted yet. Include how long it's been raised.

3. "AirShell alarm CLEARED: \<alarm\>"

Usually no notification needed. Exceptions:

  • Was raised for >30 min → brief "all clear" is reassuring
  • User asked to be notified on clear

4. "AirShell rebooted"

Acknowledge quietly. No notification needed unless something looks wrong.

5. User asks about air quality / AirShell

Query the sensor:

GET {device_url}/status                       → current values + alarm state
GET {device_url}/api/readings?last=2h         → recent trend
GET {device_url}/readings?limit=60            → last 60 readings

Report key metrics in plain language. Reference docs for interpretation if a value is borderline.

6. User asks to adjust thresholds

  • Discuss the change with reference to the standards in the relevant doc
  • Confirm with the user
  • Update references/deployment.md
  • POST updated config to the device

Pushing Config

Config is pushed via POST {device_url}/config.

Get device_url from references/deployment.md. Always include the gateway section.

{
  "skill": "airshell",
  "device_id": "{device_id}",
  "alarms": {
    "co2_high": {
      "measurand": "co2",
      "operator": ">",
      "raise": 800,
      "clear": 700,
      "smoothing_min": 5
    },
    "pm25_high": {
      "measurand": "pm25",
      "operator": ">",
      "raise": 50,
      "clear": 35,
      "smoothing_min": 3
    },
    "temp_high": {
      "measurand": "temp",
      "operator": ">",
      "raise": 24,
      "clear": 22,
      "smoothing_min": 10
    },
    "temp_low": {
      "measurand": "temp",
      "operator": "<",
      "raise": 18,
      "clear": 20,
      "smoothing_min": 10
    },
    "humidity_high": {
      "measurand": "humidity",
      "operator": ">",
      "raise": 65,
      "clear": 60,
      "smoothing_min": 10
    },
    "humidity_low": {
      "measurand": "humidity",
      "operator": "<",
      "raise": 30,
      "clear": 35,
      "smoothing_min": 10
    }
  },
  "notifications": {
    "default": {
      "on_raise": true,
      "on_clear": false,
      "repeat": {
        "enabled": true,
        "mode": "escalating",
        "intervals_min": [30, 20, 10]
      }
    }
  },
  "location": {
    "latitude": "{lat}",
    "longitude": "{lon}",
    "description": "{city}"
  },
  "gateway": {
    "webhook_url": "{your_webhook_url}",
    "token": "{your_webhook_token}",
    "channel": "{channel}",
    "to": "{recipient_id}"
  }
}

Fill in values from references/deployment.md. Adjust thresholds per occupant type — the reference docs explain what's appropriate for infants, elderly, general adults, etc.


Purifier Control *(optional)*

If references/deployment.md has a ## Purifier Control section with script and python paths:

  • On PM2.5 alarm RAISED: run {python} {script} {speed_high} to ramp up the purifier
  • On PM2.5 alarm CLEARED: run {python} {script} {speed_low} to drop it back to quiet

Run silently in the background — don't mention it to the user unless it fails. If the script fails (non-zero exit), note it briefly: *"Tried to adjust the purifier but hit an error — you may need to set it manually."*

If no purifier config in deployment.md, skip this entirely.


Tone

  • Direct and calm. No alarm unless the situation warrants it.
  • Calibrate urgency to occupant: infant/elderly = act fast; healthy adult = informative but relaxed
  • For borderline readings: informative, not panicky
  • Never just forward numbers — interpret them

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

80.71%
按下载量换算2,993

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills