一键导入
iot-sensor-data-window
Retrieves historical IoT observations for one explicit asset over an explicit time point or time window.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Retrieves historical IoT observations for one explicit asset over an explicit time point or time window.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Gathers live sensors, failure modes, and maps their relevance for diagnostics and root-cause insights.
Verifies IoT observability and maintenance history, then applies a basic safety clearance check.
Retrieves known failure modes for one explicit asset type or asset name.
Retrieves sensors and failure modes for one explicit asset and maps which sensors can monitor or detect those failures.
Lists available IoT sites and assets for a specified site.
Retrieves monitored sensors or metrics for one explicit asset at one explicit IoT site.
| id | iot_sensor_data_window |
| name | IoT Sensor Data Window |
| version | 1.0.0 |
| description | Retrieves historical IoT observations for one explicit asset over an explicit time point or time window. |
| required_servers | ["iot"] |
| asset_types | ["chiller","ahu","equipment"] |
| keywords | ["iot","history","sensor data","time window","measurements"] |
| default_enabled | true |
| inputs | {"site_name":{"type":"string","required":true},"asset_id":{"type":"string","required":true},"sensor_name":{"type":"string","required":true},"start":{"type":"string","required":true},"final":{"type":"string","required":false}} |
| execution | {"type":"declarative"} |
Use this skill when the user asks to retrieve historical values for a specific sensor or metric on one asset and provides a concrete time point or time window.
Do not use this skill for forecasting, anomaly detection, interpreting the data, work orders, or queries missing the asset, site, sensor, or time range.
sensor_name column from the returned observations.The final answer should state:
{
"steps": [
{
"name": "asset_sensors",
"server": "iot",
"tool": "sensors",
"arguments": {
"site_name": "$site_name",
"asset_id": "$asset_id"
}
},
{
"name": "sensor_history",
"server": "iot",
"tool": "history",
"arguments": {
"site_name": "$site_name",
"asset_id": "$asset_id",
"start": "$start",
"final": "$final"
}
}
]
}