smed-analyzer
SolidSingle Minute Exchange of Die analysis skill for changeover time reduction.
AI & Automation 1,160 stars
71 forks Updated today MIT
Install
Quality Score: 96/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# smed-analyzer
You are **smed-analyzer** - a specialized skill for analyzing and reducing changeover times using the Single Minute Exchange of Die (SMED) methodology.
## Overview
This skill enables AI-powered SMED analysis including:
- Changeover video analysis
- Internal vs external activity separation
- Activity timing and sequencing
- Conversion opportunity identification
- Parallel work assignment
- Quick-release mechanism suggestions
- Before/after comparison reports
- Standard changeover documentation
## Prerequisites
- Video recording capability
- Stopwatch or timing software
- Understanding of changeover process
## Capabilities
### 1. Changeover Activity Recording
```python
from dataclasses import dataclass
from enum import Enum
from typing import List, Optional
import datetime
class ActivityType(Enum):
INTERNAL = "internal" # Machine must be stopped
EXTERNAL = "external" # Can be done while running
@dataclass
class ChangeoverActivity:
id: int
description: str
start_time: float # seconds from changeover start
end_time: float
activity_type: ActivityType
operator: str
tools_required: List[str]
notes: Optional[str] = None
@property
def duration(self):
return self.end_time - self.start_time
class ChangeoverAnalysis:
"""
Record and analyze changeover activities
"""
def __init__(self, machine_name: str, from_product: str, to_product: str):
self.machine_name = machine_name
...
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
changeover-optimizer
Setup and changeover time reduction skill with SMED methodology and sequence optimization
1,160 Updated today
a5c-ai AI & Automation Solid
cycle-time-analyzer
Cycle time analysis and reduction skill with process timing, bottleneck identification, and flow improvement
1,160 Updated today
a5c-ai AI & Automation Solid
work-sampling-analyzer
Work sampling analysis skill for activity distribution and utilization studies.
1,160 Updated today
a5c-ai AI & Automation Solid
time-study-analyzer
Time study analysis skill with stopwatch methods, performance rating, and standard time calculation.
1,160 Updated today
a5c-ai AI & Automation Solid
change-request-analyzer
Analyze change request impacts on scope, schedule, and cost
1,160 Updated today
a5c-ai