Agent skill · AI & Agents

smed-analyzer

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

a5c-ai1,642★ · 1 repos on radarProfile →
claude-codecodexcan modify filesMIT
Install
npx skills add a5c-ai/babysitter --skill smed-analyzer --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 15 KB
Bundled scripts: none
Version: 1.0.0
Declared author: babysitter-sdk
Allowed tools: Bash(*)ReadWriteEditGlobGrepWebFetch
Path: library/specializations/domains/science/industrial-engineering/skills/smed-analyzer/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,642
Language: JavaScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Overview
  2. Prerequisites
  3. Capabilities
  4. 1. Changeover Activity Recording
  5. 2. Internal/External Separation Analysis
  6. 3. Parallel Work Analysis
  7. 4. Quick-Release Mechanism Suggestions
  8. 5. Before/After Comparison
  9. 6. Standard Changeover Documentation
  10. Process Integration
  11. Output Format
  12. Best Practices
  13. Constraints
More from babysitter
All skills →
About this skill
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.

Keep going