What you need
Data sources
- SCADA system — real-time and historical sensor readings (temperature, load, oil levels, vibration), alarm events, and equipment status
- IoT platform — supplementary sensor data from field-deployed devices (ambient temperature, humidity, corrosion sensors)
- CMMS (maintenance system) — maintenance work orders, service history, inspection records, and spare parts inventory
Knowledge spaces
- Equipment maintenance manuals — upload manufacturer specifications, recommended maintenance intervals, and failure mode documentation for each asset class
- Operating procedures — upload condition-based maintenance policies, criticality rankings, and escalation protocols
| Component | Name | Definition |
|---|---|---|
| Object | Asset | Maps to the assets table in the CMMS. Represents a physical piece of equipment (transformer, breaker, turbine) |
| Object | Sensor Reading | Maps to readings in the SCADA system. Represents a timestamped measurement from a single sensor point |
| Metric | Health Score | Composite score (0-100) calculated from normalized sensor readings weighted by criticality, where 100 is perfect condition |
| Metric | Mean Time Between Failures (MTBF) | Average operating hours between failure events for an asset class, computed from maintenance history |
| Dimension | Asset Type | Categorizes assets by equipment class (transformer, circuit breaker, turbine, distribution line) |
| Dimension | Criticality | Ranks assets as critical, high, medium, or low based on service impact and replacement cost |
Agent setup
Create the agent
Go to Agent Space → New agent.
| Field | Value |
|---|---|
| Name | Asset Health Analyst |
| Role | Equipment Condition Monitoring Specialist |
| Goal | Monitor equipment health scores, identify degradation trends, provide maintenance recommendations, and answer ad-hoc queries about asset condition |
Set the description
You are an equipment condition monitoring specialist who interprets SCADA and IoT sensor data to assess asset health. You track degradation trends, compare current readings against manufacturer thresholds, and recommend maintenance actions based on condition-based policies. You prioritize assets by criticality and service impact. You present findings with supporting sensor data and reference maintenance manuals when recommending interventions. You never dispatch crews — you provide the evidence maintenance planners need.
Scope data access
Grant access to:
- SCADA system (sensor readings, alarm events, equipment status)
- IoT platform (supplementary sensor data)
- CMMS (work orders, service history, inspection records)
- Equipment maintenance manuals knowledge space
- Operating procedures knowledge space
- Asset and Sensor Reading objects, Health Score and MTBF metrics
Add skills
Asset condition report
Asset condition report
Trigger: User asks the agent for the condition of a specific asset or asset group.
- Retrieve the asset record from the CMMS, including type, criticality, installation date, and last service date.
- Pull the latest sensor readings from the SCADA system (temperature, load, oil level, vibration as applicable).
- Compute the current health score using the weighted composite formula from the semantic layer.
- Compare current readings against manufacturer thresholds from the equipment maintenance manuals knowledge space.
- Pull the asset’s maintenance history and calculate MTBF.
- Return a condition report with the health score, individual sensor readings vs. thresholds, trend direction, and recommended next action.
Degradation trend analysis
Degradation trend analysis
Trigger: User asks about the trend or trajectory of an asset’s condition.
- Retrieve 90 days of sensor reading history for the specified asset from the SCADA system.
- Calculate the rate of change for each key sensor parameter (e.g., temperature rising at 0.5 degrees per week).
- Project the time to threshold breach at the current degradation rate.
- Compare the degradation pattern against known failure modes from the equipment maintenance manuals.
- Return a trend analysis with the projected failure window, confidence level, and recommended preventive action with timing.
Fleet health summary
Fleet health summary
Trigger: User asks for a summary of health across all assets or a specific asset class.
- Query the CMMS for all assets of the specified type or in the specified region.
- Pull the latest health scores from the most recent scan.
- Rank assets from worst to best health score.
- Identify assets with scores below the maintenance threshold or trending downward.
- Return a fleet summary table with asset name, location, health score, trend, and priority ranking.
Automation
Playbook: Daily asset health scan
Set the trigger
Set the trigger to Schedule — Daily at 5:00 AM, before the day shift begins, to give maintenance planners an updated view of asset condition.
Build the workflow
The workflow computes health scores for all monitored assets and alerts on degradation:
- Query all active assets from the CMMS with their criticality level and sensor point mappings.
- Query the latest 24 hours of sensor readings from the SCADA system and IoT platform for each asset.
- Python code block — compute the health score for each asset. The code normalizes each sensor reading against its manufacturer-specified operating range, applies criticality-based weights, and produces a composite score on a 0-100 scale. Assets scoring below 60 are flagged as “degraded,” and those below 40 as “critical.” The code also calculates the 7-day trend (improving, stable, or declining).
The health score computation step uses a Python code block to normalize sensor readings, apply weighted scoring, and detect degradation trends. You can customize the scoring thresholds, sensor weights, and trend detection window.
- Condition — if any asset is flagged as “critical,” generate an immediate alert with the asset details and recommended maintenance action.
- Loop — for each “degraded” asset, check the CMMS for any open work orders. If no work order exists, create a new maintenance request.
- Delivery — distribute the daily health report.
Configure delivery
- Email — send the full daily health report to the maintenance planning team
- Slack — post critical asset alerts to
#maintenance-urgentimmediately - Email escalation — if any critical-criticality asset scores below 40, notify the Operations Director
What’s next
Demand forecasting
Forecast energy demand using historical meter data and weather patterns for better generation planning.
All Energy & Utilities use cases
See the full list.

