predictive-maintenance-scheduler
Predictive maintenance scheduling skill using telematics data and historical patterns to maximize fleet uptime
What this skill does
# Predictive Maintenance Scheduler
## Overview
The Predictive Maintenance Scheduler uses telematics data and historical patterns to predict equipment failures and schedule maintenance proactively. It maximizes fleet uptime, reduces unplanned breakdowns, and optimizes maintenance costs through data-driven scheduling and parts inventory management.
## Capabilities
- **Failure Prediction Modeling**: Use machine learning to predict component failures before they occur
- **Maintenance Schedule Optimization**: Schedule maintenance during optimal windows to minimize operational disruption
- **Parts Inventory Forecasting**: Predict parts requirements and manage maintenance inventory
- **Cost vs. Risk Analysis**: Balance maintenance costs against breakdown risk and operational impact
- **Warranty Tracking Integration**: Track warranty coverage and ensure warranty claims are captured
- **Downtime Minimization**: Optimize maintenance timing to minimize vehicle downtime
- **Compliance Inspection Scheduling**: Schedule mandatory inspections and certifications
## Tools and Libraries
- Telematics APIs
- ML Libraries (scikit-learn, TensorFlow)
- CMMS Integration
- IoT Platforms
## Used By Processes
- Vehicle Maintenance Planning
- Fleet Performance Analytics
- Driver Scheduling and Compliance
## Usage
```yaml
skill: predictive-maintenance-scheduler
inputs:
vehicle:
vehicle_id: "VH001"
make: "Freightliner"
model: "Cascadia"
year: 2022
odometer_miles: 125000
engine_hours: 4500
telematics_data:
engine_temperature_avg: 195
oil_pressure_psi: 42
brake_wear_percent: 65
tire_tread_depth_mm: [8, 7, 9, 8]
fault_codes: ["P0171"]
fuel_efficiency_mpg: 6.8
maintenance_history:
- service_type: "oil_change"
date: "2025-11-15"
odometer: 115000
- service_type: "brake_inspection"
date: "2025-10-01"
odometer: 108000
operational_schedule:
daily_miles: 350
days_per_week: 5
outputs:
maintenance_predictions:
- component: "brakes"
predicted_failure_miles: 145000
confidence: 85
urgency: "scheduled"
recommended_action: "brake_service"
recommended_date: "2026-02-15"
estimated_cost: 1200
- component: "fuel_system"
fault_code: "P0171"
predicted_issue: "lean_condition"
urgency: "soon"
recommended_action: "fuel_system_diagnostic"
recommended_date: "2026-01-28"
estimated_cost: 350
maintenance_schedule:
- date: "2026-01-28"
service_type: "diagnostic"
estimated_duration_hours: 2
estimated_cost: 350
- date: "2026-02-01"
service_type: "oil_change"
estimated_duration_hours: 1
estimated_cost: 250
parts_forecast:
- part: "brake_pads_set"
quantity: 1
needed_by: "2026-02-15"
estimated_cost: 400
metrics:
predicted_uptime_percent: 97.5
maintenance_cost_forecast_monthly: 850
unplanned_breakdown_risk: "low"
```
## Integration Points
- Fleet Management Systems
- Telematics Platforms
- CMMS (Computerized Maintenance Management System)
- Parts Inventory Systems
- Warranty Management Systems
## Performance Metrics
- Fleet uptime percentage
- Unplanned breakdown rate
- Maintenance cost per mile
- Prediction accuracy
- Mean time between failures
Related in Code Review
gstack
IncludedFast headless browser for QA testing and site dogfooding. Navigate pages, interact with elements, verify state, diff before/after, take annotated screenshots, test responsive layouts, forms, uploads, dialogs, and capture bug evidence. Use when asked to open or test a site, verify a deployment, dogfood a user flow, or file a bug with screenshots. (gstack)
startup-due-diligence
IncludedLegal due diligence review for seed-stage and Series A startups (US, Delaware C-Corp focus). Supports both investor and founder perspectives. Capabilities include: (1) Interactive document review and issue spotting; (2) Document request list generation; (3) Cap table and SAFE/convertible note analysis; (4) Red flag identification with severity ratings; (5) Diligence report generation. TRIGGERS: due diligence, DD, startup investment, cap table review, Series A, seed round, investor diligence, legal review startup, SAFE analysis, convertible note, 409A, founder vesting.
interview-master
IncludedThis skill should be used when the user asks to "generate interview questions", "prepare for interview", "optimize resume", "conduct mock interview", "analyze git commits for resume", "generate resume from code", "review my resume", or mentions interview preparation, career assistance, or extracting project experience from git history. Provides comprehensive interview and career development guidance for both job seekers and interviewers.
fix-issue
IncludedFixes GitHub issues using parallel analysis agents for root cause investigation, code exploration, and regression detection. Reads issue context from gh CLI, searches codebase and memory for related patterns, generates a fix with tests, and links the resolution back to the issue via PR. Includes prevention analysis to avoid recurrence. Use when debugging errors, resolving regressions, fixing bugs, or triaging issues.
sf-apex
IncludedGenerates and reviews Salesforce Apex code with 150-point scoring. TRIGGER when: user writes, reviews, or fixes Apex classes, triggers, test classes, batch/queueable/schedulable jobs, or touches .cls/.trigger files. DO NOT TRIGGER when: LWC JavaScript (use sf-lwc), Flow XML (use sf-flow), SOQL-only queries (use sf-soql), or non-Salesforce code.
swift-development
IncludedComprehensive Swift development for building, testing, and deploying iOS/macOS applications. Use when Claude needs to: (1) Build Swift packages or Xcode projects from command line, (2) Run tests with XCTest or Swift Testing framework, (3) Manage iOS simulators with simctl, (4) Handle code signing, provisioning profiles, and app distribution, (5) Format or lint Swift code with SwiftFormat/SwiftLint, (6) Work with Swift Package Manager (SPM), (7) Implement Swift 6 concurrency patterns (async/await, actors, Sendable), (8) Create SwiftUI views with MVVM architecture, (9) Set up Core Data or SwiftData persistence, or any other Swift/iOS/macOS development tasks.