一键导入
environmental-skill
Get Android environmental sensor data - temperature, humidity, pressure, and ambient light level.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Get Android environmental sensor data - temperature, humidity, pressure, and ambient light level.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use this skill to generate well-branded interfaces and assets for OpenCompany (zeenie.ai), either for production or throwaway prototypes/mocks/etc. Contains essential design guidelines, colors, type, fonts, assets, and UI kit components for prototyping.
Launch Android applications by package name. Open any installed app programmatically.
Get list of installed Android applications with package names, versions, and metadata.
Control Android audio - get/set volume, mute/unmute for media, ringtone, notification, and call volumes.
Monitor Android device battery status, level, charging state, temperature, and health.
Control Android Bluetooth - enable, disable, get status, and list paired devices.
| name | environmental-skill |
| description | Get Android environmental sensor data - temperature, humidity, pressure, and ambient light level. |
| allowed-tools | environmental_sensors |
| metadata | {"author":"opencompany","version":"1.0","category":"android"} |
Access environmental sensors on Android device.
This skill provides instructions for the Environmental Sensors tool node. Connect the Environmental Sensors node to Zeenie's input-tools handle to enable environmental sensing.
Get temperature, humidity, pressure, and light data.
| Field | Type | Required | Description |
|---|---|---|---|
| action | string | Yes | "status" - Get sensor data |
Get environmental data:
{
"action": "status"
}
{
"success": true,
"service": "environmental_sensors",
"action": "status",
"data": {
"temperature": 23.5,
"humidity": 45.0,
"pressure": 1013.25,
"light": 350.0,
"sensors_available": {
"temperature": true,
"humidity": true,
"pressure": true,
"light": true
}
}
}
| Field | Type | Unit | Description |
|---|---|---|---|
| temperature | float | Celsius | Ambient temperature |
| humidity | float | % | Relative humidity |
| pressure | float | hPa | Atmospheric pressure |
| light | float | lux | Ambient light level |
| sensors_available | object | - | Which sensors exist |
Not all devices have all sensors. Check sensors_available to see what's supported.
| Lux | Condition |
|---|---|
| < 50 | Dark/dim room |
| 50-300 | Indoor lighting |
| 300-1000 | Bright indoor |
| 1000-10000 | Overcast outdoor |
| 10000-100000 | Direct sunlight |
| hPa | Weather |
|---|---|
| < 1000 | Low pressure (storms) |
| 1000-1020 | Normal |
| > 1020 | High pressure (clear) |
| Use Case | Sensor | Description |
|---|---|---|
| Weather tracking | pressure | Monitor local pressure |
| Humidity alert | humidity | Warn on high/low humidity |
| Light-based actions | light | Trigger on dark/bright |
| Temperature monitoring | temperature | Track ambient temp |
input-tools handle