ワンクリックで
iot-asset-inventory
Lists available IoT sites and assets for a specified site.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Lists available IoT sites and assets for a specified site.
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.
Retrieves historical IoT observations for one explicit asset over an explicit time point or time window.
Retrieves monitored sensors or metrics for one explicit asset at one explicit IoT site.
| id | iot_asset_inventory |
| name | IoT Asset Inventory |
| version | 1.0.0 |
| description | Lists available IoT sites and assets for a specified site. |
| required_servers | ["iot"] |
| asset_types | ["site","chiller","ahu","equipment"] |
| keywords | ["iot","site","assets","inventory","metadata","asset details"] |
| default_enabled | true |
| inputs | {"site_name":{"type":"string","required":true},"asset_type":{"type":"string","required":false},"asset_id":{"type":"string","required":false}} |
| execution | {"type":"declarative"} |
Use this skill for simple IoT inventory questions where the user names a site and asks for available assets, assets of a type such as chillers or AHUs, or whether a specific asset appears at the site.
Do not use this skill for sensor readings, anomaly detection, forecasting, work orders, or multi-condition filtering.
asset_type or asset_id only as a response filter when the user provided them.The final answer should state:
{
"steps": [
{
"name": "list_sites",
"server": "iot",
"tool": "sites",
"arguments": {}
},
{
"name": "list_site_assets",
"server": "iot",
"tool": "assets",
"arguments": {
"site_name": "$site_name"
}
}
]
}