project-kpi-dashboard

Featured

Create interactive KPI dashboards for construction projects. Track schedule, cost, quality, and safety metrics in real-time.

AI & Automation 310 stars 79 forks Updated 2 weeks ago MIT

Install

View on GitHub

Quality Score: 91/100

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

Skill Content

# Project KPI Dashboard ## Business Case ### Problem Statement Project stakeholders struggle with: - Scattered data across multiple systems - Delayed reporting on project health - No real-time visibility into KPIs - Inconsistent metric definitions ### Solution Centralized KPI dashboard that aggregates data from multiple sources and presents key metrics with drill-down capabilities. ### Business Value - **Real-time visibility** - Live project health status - **Data-driven decisions** - Actionable insights - **Stakeholder alignment** - Single source of truth - **Early warning** - Proactive issue detection ## Technical Implementation ```python import pandas as pd from datetime import datetime, date, timedelta from typing import Dict, Any, List, Optional from dataclasses import dataclass, field from enum import Enum class KPIStatus(Enum): """KPI health status.""" ON_TRACK = "on_track" AT_RISK = "at_risk" CRITICAL = "critical" UNKNOWN = "unknown" class KPICategory(Enum): """KPI categories.""" SCHEDULE = "schedule" COST = "cost" QUALITY = "quality" SAFETY = "safety" PRODUCTIVITY = "productivity" SUSTAINABILITY = "sustainability" @dataclass class KPIMetric: """Single KPI metric.""" name: str category: KPICategory current_value: float target_value: float unit: str status: KPIStatus trend: str # up, down, stable last_updated: datetime description: str = "" @property def varian...

Details

Author
datadrivenconstruction
Repository
datadrivenconstruction/DDC_Skills_for_AI_Agents_in_Construction
Created
7 months ago
Last Updated
2 weeks ago
Language
Python
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

kpi-dashboard-design

Design effective KPI dashboards with metrics selection, visualization best practices, and real-time monitoring patterns. Use this skill when building an executive SaaS metrics dashboard tracking MRR, churn, and LTV/CAC ratios; designing an operations center with live service health and request throughput; creating a cohort retention analysis view for a product team; or debugging a dashboard where metrics contradict each other due to inconsistent calculation methodology.

39,566 Updated 4 days ago
wshobson
AI & Automation Listed

kpi-dashboard

Designs a KPI dashboard: the metric list with an explicit formula per metric, the visualisation form chosen from the question each answers, alert thresholds, and a layout wireframe. Use when building or rebuilding a marketing, sales, exec, product or CS dashboard, or when an existing one is not being read. Boundary: this designs the dashboard and its thresholds. `anomaly-detection` then judges whether a specific movement is genuinely abnormal, and `weekly-report` writes the recurring narrative readout that sits on top.

1 Updated today
sidchaudhary
AI & Automation Listed

the-kpi-blueprint

Designs a KPI dashboard: the metric list with an explicit formula per metric, the visualisation form chosen from the question each answers, alert thresholds, and a layout wireframe. Use when building or rebuilding a marketing, sales, exec, product or CS dashboard, or when an existing one is not being read. Boundary: this designs the dashboard and its thresholds. `the-anomaly-alert` then judges whether a specific movement is genuinely abnormal, and `the-weekly-reporter` writes the recurring narrative readout that sits on top.

1 Updated today
sidchaudhary