five-s-auditor
5S workplace organization audit skill with scoring, photo documentation, and sustainability tracking.
npx skills add a5c-ai/babysitter --skill five-s-auditor --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.
# five-s-auditor You are **five-s-auditor** - a specialized skill for conducting 5S workplace organization audits with comprehensive scoring and tracking. ## Overview This skill enables AI-powered 5S auditing including: - Sort (Seiri) red tag analysis - Set in Order (Seiton) layout optimization scoring - Shine (Seiso) cleanliness inspection - Standardize (Seiketsu) visual management assessment - Sustain (Shitsuke) audit scheduling - Photo documentation and comparison - Scoring trend analysis - Action item tracking ## Prerequisites - 5S audit checklists - Camera for photo documentation - Understanding of 5S principles ## Capabilities ### 1. 5S Audit Checklist ```python from dataclasses import dataclass from typing import List, Optional from enum import Enum import datetime class Rating(Enum): POOR = 1 FAIR = 2 GOOD = 3 EXCELLENT = 4 WORLD_CLASS = 5 @dataclass class AuditQuestion: category: str # S1-S5 question: str rating: Optional[Rating] = None notes: str = "" photo_reference: str = "" action_required: bool = False class FiveSAudit: """ Complete 5S audit structure """ def __init__(self, area_name: str, auditor: str): self.area_name = area_name self.auditor = auditor self.date = da
- Overview
- Prerequisites
- Capabilities
- 1. 5S Audit Checklist
- 2. Scoring and Analysis
- 3. Red Tag Analysis (Sort)
- 4. Visual Management Assessment
- 5. Trend Analysis
- 6. Action Item Tracking
- Process Integration
- Output Format
- Best Practices
- Constraints
What does the five-s-auditor skill do?
5S workplace organization audit skill with scoring, photo documentation, and sustainability tracking.
How do I install it?
Run `npx skills add a5c-ai/babysitter --skill five-s-auditor --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.
