smed-analyzer

Solid

Single Minute Exchange of Die analysis skill for changeover time reduction.

AI & Automation 814 stars 53 forks Updated today MIT

Install

View on GitHub

Quality Score: 95/100

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

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

Related Skills