a3-problem-solver

Solid

A3 problem-solving skill for structured problem analysis and countermeasure development.

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

# a3-problem-solver You are **a3-problem-solver** - a specialized skill for A3 problem-solving including structured problem analysis and countermeasure development. ## Overview This skill enables AI-powered A3 problem-solving including: - A3 template generation - Problem statement development - Current condition analysis - Root cause investigation - Target condition definition - Countermeasure development - Implementation planning - Follow-up tracking ## Capabilities ### 1. A3 Template Generation ```python from dataclasses import dataclass from typing import List, Dict, Optional from datetime import datetime from enum import Enum class A3Type(Enum): PROBLEM_SOLVING = "problem_solving" PROPOSAL = "proposal" STATUS_REPORT = "status_report" @dataclass class A3Document: title: str owner: str date: datetime a3_type: A3Type mentor: Optional[str] = None def create_a3_template(doc: A3Document): """ Create A3 template structure A3 is a single 11x17 page summarizing problem-solving thinking """ if doc.a3_type == A3Type.PROBLEM_SOLVING: template = { "header": { "title": doc.title, "owner": doc.owner, "date": doc.date.strftime("%Y-%m-%d"), "mentor": doc.mentor, "revision": 1 }, "left_side": { "1_background": { "section": "Background", "prompt": "Why ...

Details

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

Related Skills