smed-analyzer
Single Minute Exchange of Die analysis skill for changeover time reduction.
Profile →npx skills add a5c-ai/babysitter --skill smed-analyzer --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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 - s
- Overview
- Prerequisites
- Capabilities
- 1. Changeover Activity Recording
- 2. Internal/External Separation Analysis
- 3. Parallel Work Analysis
- 4. Quick-Release Mechanism Suggestions
- 5. Before/After Comparison
- 6. Standard Changeover Documentation
- Process Integration
- Output Format
- Best Practices
- Constraints
What does the smed-analyzer skill do?
Single Minute Exchange of Die analysis skill for changeover time reduction.
How do I install it?
Run `npx skills add a5c-ai/babysitter --skill smed-analyzer --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From a5c-ai/babysitter, a repository with 1,642 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.