pdca-tracker

Solid

PDCA cycle tracking skill for plan-do-check-act improvement management.

AI & Automation 1,160 stars 71 forks Updated today MIT

Install

View on GitHub

Quality Score: 96/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# pdca-tracker You are **pdca-tracker** - a specialized skill for tracking PDCA (Plan-Do-Check-Act) cycles and improvement management. ## Overview This skill enables AI-powered PDCA tracking including: - PDCA cycle setup and management - Hypothesis development - Experiment planning - Results verification - Standard work updates - Cycle iteration tracking - Learning documentation - Multi-project portfolio view ## Capabilities ### 1. PDCA Cycle Setup ```python from dataclasses import dataclass from typing import List, Dict, Optional from datetime import datetime, timedelta from enum import Enum import uuid class PDCAPhase(Enum): PLAN = "plan" DO = "do" CHECK = "check" ACT = "act" @dataclass class PDCACycle: id: str title: str owner: str start_date: datetime current_phase: PDCAPhase iteration: int = 1 def create_pdca_cycle(title: str, owner: str, hypothesis: str, success_criteria: Dict): """ Create new PDCA cycle hypothesis: What we believe will happen success_criteria: Measurable criteria for success """ cycle_id = str(uuid.uuid4())[:8] cycle = { "id": cycle_id, "title": title, "owner": owner, "created_date": datetime.now().strftime("%Y-%m-%d"), "iteration": 1, "current_phase": "PLAN", "phases": { "PLAN": { "status": "in_progress", "hypothesis": hypothesis, "success...

Details

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

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Listed

pdca-cycle

Use when executing iterative tasks, continuous improvement, quality assurance, process optimization, or when user asks to 'apply PDCA', 'iterate and improve', 'continuous improvement cycle', 'plan-do-check-act'.

4 Updated yesterday
konglong87
AI & Automation Listed

pdca-scaffold

Generates a customized, installable PDCA skill for any complex repeatable human task that benefits from agentic HITL (Human-in-the-Loop) workflows. Use this skill whenever a user wants to create a structured AI-assisted process for a specific domain, design a new agentic workflow, capture and systematize a recurring complex task, or build a collaboration process for non-software work. Triggers on phrases like "create a process for", "build a workflow for", "help me structure", "design a PDCA cycle for", "systematize my", "how should I use AI to help me with", or any request to scaffold a new agentic collaboration pattern. Also use this when someone describes a repeatable task and wants to know how AI can assist with it reliably.

41 Updated 3 days ago
kenjudy
Code & Development Listed

pdca-framework

Guides developers through a human-supervised PDCA framework for AI code generation. Applies analysis, TDD, validation, and retrospection. Activates for sessions requiring systematic quality control.

41 Updated 3 days ago
kenjudy
Data & Documents Listed

client-reporting-pdca

Guides weekly client status reporting for consulting engagements — pulls metrics from project tracker, billing system, and Jira, produces a reviewed and approved report with metrics, progress, and risks sections. Use this skill whenever working on client status reports, weekly reporting cycles, or any request to prepare or send a client update. Triggers on phrases like "client report", "weekly status", "prepare the update", "risks section", or "let's do the Friday report".

41 Updated 3 days ago
kenjudy
AI & Automation Listed

daily-retro-pdca

Guides a structured daily or weekly retrospection by reading Slack, G Suite, Granola, and Obsidian vaults to identify patterns and facilitate Socratic self-reflection for personal performance improvement as a leader, software developer, consultant, and author. Use this skill whenever working on end-of-day review, weekly reflection, or performance improvement cycles. Triggers on phrases like "daily retro", "weekly retro", "let's do a retro", "reflect on my week", "how did I perform", "time for retrospection", or "performance review".

41 Updated 3 days ago
kenjudy