원클릭으로
multiagent-iot-to-tsfm-forecast
Retrieves IoT history for one explicit asset and runs TSFM forecasting on an explicit dataset path.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Retrieves IoT history for one explicit asset and runs TSFM forecasting on an explicit dataset path.
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 historical IoT observations for one explicit asset over an explicit time point or time window.
| id | multiagent_iot_to_tsfm_forecast |
| name | Multiagent IoT To TSFM Forecast |
| version | 1.0.0 |
| description | Retrieves IoT history for one explicit asset and runs TSFM forecasting on an explicit dataset path. |
| required_servers | ["iot","tsfm"] |
| asset_types | ["chiller","equipment","time_series"] |
| keywords | ["iot","tsfm","forecast","multiagent","chiller"] |
| default_enabled | true |
| inputs | {"site_name":{"type":"string","required":true},"asset_id":{"type":"string","required":true},"start":{"type":"string","required":true},"final":{"type":"string","required":true},"dataset_path":{"type":"string","required":true},"timestamp_column":{"type":"string","required":true},"target_columns":{"type":"array","required":true},"model_checkpoint":{"type":"string","required":false},"forecast_horizon":{"type":"integer","required":false}} |
| execution | {"type":"declarative"} |
Use this skill when the user asks for the common two-agent workflow: retrieve IoT history for one asset and forecast one or more sensor columns with TSFM. The user must provide or clearly imply a dataset path that TSFM can read, because the current IoT history tool returns observations but does not write a TSFM-ready CSV file.
Do not use this skill for anomaly detection, work-order reasoning, failure-mode ranking, or prompts that do not provide enough IoT and TSFM arguments.
The final answer should state:
results_file path returned by TSFM.{
"steps": [
{
"name": "iot_history",
"server": "iot",
"tool": "history",
"arguments": {
"site_name": "$site_name",
"asset_id": "$asset_id",
"start": "$start",
"final": "$final"
}
},
{
"name": "forecast",
"server": "tsfm",
"tool": "run_tsfm_forecasting",
"arguments": {
"dataset_path": "$dataset_path",
"timestamp_column": "$timestamp_column",
"target_columns": "$target_columns",
"model_checkpoint": "$model_checkpoint",
"forecast_horizon": "$forecast_horizon"
}
}
]
}