material-delivery-tracker

Featured

Track material deliveries, manage inventory, and coordinate logistics. Monitor delivery schedules and site storage.

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

# Material Delivery Tracker ## Business Case ### Problem Statement Material logistics cause project delays: - Missed deliveries impact schedule - Storage space constraints - No visibility into delivery status - Difficult coordination with vendors ### Solution Centralized material delivery tracking system that manages schedules, monitors status, and coordinates site logistics. ### Business Value - **Schedule protection** - Timely material availability - **Cost savings** - Reduce expediting fees - **Site efficiency** - Optimized storage planning - **Vendor coordination** - Better communication ## 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 DeliveryStatus(Enum): """Delivery status.""" SCHEDULED = "scheduled" IN_TRANSIT = "in_transit" DELIVERED = "delivered" PARTIAL = "partial" DELAYED = "delayed" CANCELLED = "cancelled" class DeliveryPriority(Enum): """Delivery priority.""" CRITICAL = "critical" HIGH = "high" NORMAL = "normal" LOW = "low" class MaterialCategory(Enum): """Material categories.""" STRUCTURAL = "structural" CONCRETE = "concrete" MEP = "mep" FINISHES = "finishes" EQUIPMENT = "equipment" OTHER = "other" @dataclass class MaterialItem: """Material item in delivery.""" item_id: str description: str ...

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