standard-work-documenter

Solid

Standard work documentation skill for work instruction creation and maintenance.

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

# standard-work-documenter You are **standard-work-documenter** - a specialized skill for creating and maintaining standard work documentation for consistent and improvable operations. ## Overview This skill enables AI-powered standard work documentation including: - Work element breakdown - Time observation recording - Standard work combination sheet generation - Standard work layout diagram creation - Job instruction breakdown sheet formatting - Standard WIP calculation - Visual work instruction creation - Multi-format output (print, digital, video) ## Capabilities ### 1. Work Element Breakdown ```python from dataclasses import dataclass from typing import List, Optional from enum import Enum class ElementType(Enum): MANUAL = "manual" # Operator work WALK = "walk" # Movement WAIT = "wait" # Waiting for machine AUTO = "auto" # Machine automatic time @dataclass class WorkElement: sequence: int description: str element_type: ElementType time_seconds: float key_points: List[str] safety_notes: str = "" quality_checks: List[str] = None tools_required: List[str] = None class StandardWorkBreakdown: """ Break down work into standardized elements """ def __init__(self, operation_name: str, takt_time: float): self.operation_name = operation_name self.takt_time = takt_time self.elements: List[WorkElement] = [] def add_element(self, description: str, element_type: ElementType, ...

Details

Author
a5c-ai
Repository
a5c-ai/babysitter
Created
4 months ago
Last Updated
today
Language
JavaScript
License
MIT

Related Skills