ワンクリックで
safety-clearance-check
Verifies IoT observability and maintenance history, then applies a basic safety clearance check.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Verifies IoT observability and maintenance history, then applies a basic safety clearance check.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Gathers live sensors, failure modes, and maps their relevance for diagnostics and root-cause insights.
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 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 | safety_clearance_check |
| name | Safety Clearance Check |
| version | 1.0.0 |
| description | Verifies IoT observability and maintenance history, then applies a basic safety clearance check. |
| required_servers | ["iot","wo"] |
| asset_types | ["centrifugal_pump","pump","chiller","ahu"] |
| keywords | ["safety","clearance","work order","sensors","readiness"] |
| default_enabled | true |
| inputs | {"site_name":{"type":"string","required":true},"asset_id":{"type":"string","required":true},"asset_name":{"type":"string","required":false}} |
| execution | {"type":"declarative"} |
Use this skill when the user asks whether an asset is safe, ready, or cleared for operation or maintenance.
{
"steps": [
{
"name": "iot_sensors",
"server": "iot",
"tool": "sensors",
"arguments": {
"site_name": "$site_name",
"asset_id": "$asset_id"
}
},
{
"name": "recent_work_orders",
"server": "wo",
"tool": "get_work_orders",
"arguments": {
"equipment_id": "$asset_id"
}
}
]
}