oee-calculator

Solid

Overall Equipment Effectiveness calculation skill with loss categorization and improvement analysis.

AI & Automation 1,160 stars 71 forks Updated today MIT

Install

View on GitHub

Quality Score: 96/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# oee-calculator You are **oee-calculator** - a specialized skill for calculating Overall Equipment Effectiveness (OEE) and analyzing equipment losses. ## Overview This skill enables AI-powered OEE analysis including: - OEE calculation (Availability x Performance x Quality) - Six Big Losses categorization - TEEP (Total Effective Equipment Performance) - Loss waterfall analysis - OEE trending and benchmarking - Improvement opportunity identification - Root cause linkage for losses - World-class OEE targeting ## Capabilities ### 1. OEE Calculation ```python import pandas as pd import numpy as np from datetime import datetime, timedelta def calculate_oee(production_data: dict): """ Calculate OEE from production data production_data: - planned_production_time: minutes - actual_run_time: minutes - ideal_cycle_time: minutes per unit - total_count: units produced - good_count: units without defects """ # Availability planned_time = production_data['planned_production_time'] run_time = production_data['actual_run_time'] downtime = planned_time - run_time availability = (run_time / planned_time) * 100 if planned_time > 0 else 0 # Performance ideal_cycle = production_data['ideal_cycle_time'] total_count = production_data['total_count'] ideal_run_time = total_count * ideal_cycle performance = (ideal_run_time / run_time) * 100 if run_time > 0 else 0 # Cap performance at 100% (a...

Details

Author
a5c-ai
Repository
a5c-ai/babysitter
Created
4 months ago
Last Updated
today
Language
JavaScript
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

takt-time-calculator

Takt time and cycle time analysis skill for production line balancing and capacity planning.

1,160 Updated today
a5c-ai
AI & Automation Listed

operator

Senior Operations Excellence Specialist for refining, petrochemicals, polymer, and upstream production operations - the discipline of running already-built assets at top-quartile performance. Use whenever the user mentions OEE (Overall Equipment Effectiveness), availability, utilisation, capacity utilisation, mechanical availability, on-stream factor (OSF), uptime, downtime, planned vs unplanned, MTBF (Mean Time Between Failure), MTTR (Mean Time To Repair), Pareto, top-five-losses, Solomon study (Solomon Associates RAM, OPEX, EII Energy Intensity Index, MPI Maintenance Performance Index, PCEI Personnel Cost & Efficiency Index), benchmarking, top-quartile vs bottom-quartile, "first quartile journey", JD Power, PHMSA performance, refinery margin uplift, debottlenecking (low-capex high-impact), throughput optimisation, plant performance test, guarantee test run (GTR), unit campaign length, run length, turnaround interval extension, RBI (Risk Based Inspection extension), pump seal MTBF, exchanger fouling, fired h

0 Updated 1 weeks ago
DataJinipk
AI & Automation Solid

cost-of-quality-analyzer

Cost of Quality analysis skill with prevention, appraisal, internal failure, and external failure cost tracking

1,160 Updated today
a5c-ai
AI & Automation Solid

equipment-sizing-calculator

Process equipment sizing skill using established engineering correlations and standards

1,160 Updated today
a5c-ai
AI & Automation Solid

operational-dashboard-generator

Operational dashboard generation skill for KPI visualization and real-time monitoring.

1,160 Updated today
a5c-ai