cwicr-labor-scheduler
Schedule labor crews based on CWICR norms and project timeline. Calculate crew sizes, shifts, and labor loading curves.
What this skill does
# CWICR Labor Scheduler
## Business Case
### Problem Statement
Project managers need to plan labor allocation:
- How many workers per day?
- What skills are needed when?
- How to balance workload across project phases?
- How to avoid resource conflicts?
### Solution
Data-driven labor scheduling using CWICR labor norms to generate crew schedules, loading curves, and skill requirement timelines.
### Business Value
- **Accurate planning** - Based on validated labor norms
- **Resource leveling** - Smooth workload distribution
- **Skill matching** - Right workers at right time
- **Cost control** - Optimize labor costs
## Technical Implementation
```python
import pandas as pd
import numpy as np
from typing import Dict, Any, List, Optional, Tuple
from dataclasses import dataclass, field
from datetime import datetime, timedelta
from enum import Enum
from collections import defaultdict
class ShiftType(Enum):
"""Work shift types."""
SINGLE = "single" # 8 hours
DOUBLE = "double" # 16 hours (2 shifts)
TRIPLE = "triple" # 24 hours (3 shifts)
EXTENDED = "extended" # 10 hours
class SkillLevel(Enum):
"""Worker skill levels."""
UNSKILLED = 1
SEMI_SKILLED = 2
SKILLED = 3
FOREMAN = 4
SPECIALIST = 5
@dataclass
class LaborRequirement:
"""Labor requirement for a work item."""
work_item_code: str
description: str
total_hours: float
skill_level: SkillLevel
trade: str
start_date: datetime
end_date: datetime
daily_hours: float = 0.0
@dataclass
class CrewAssignment:
"""Crew assignment for a period."""
date: datetime
trade: str
skill_level: SkillLevel
workers_needed: int
hours_per_worker: float
total_hours: float
work_items: List[str]
@dataclass
class LaborSchedule:
"""Complete labor schedule."""
project_name: str
start_date: datetime
end_date: datetime
total_labor_hours: float
peak_workers: int
average_workers: float
assignments: List[CrewAssignment]
daily_loading: Dict[str, int]
by_trade: Dict[str, float]
class CWICRLaborScheduler:
"""Schedule labor based on CWICR norms."""
HOURS_PER_SHIFT = {
ShiftType.SINGLE: 8,
ShiftType.DOUBLE: 16,
ShiftType.TRIPLE: 24,
ShiftType.EXTENDED: 10
}
def __init__(self, cwicr_data: pd.DataFrame):
self.data = cwicr_data
self._index_data()
def _index_data(self):
"""Index work items for fast lookup."""
if 'work_item_code' in self.data.columns:
self._code_index = self.data.set_index('work_item_code')
else:
self._code_index = None
def calculate_labor_requirements(self,
items: List[Dict[str, Any]],
project_start: datetime) -> List[LaborRequirement]:
"""Calculate labor requirements from work items."""
requirements = []
for item in items:
code = item.get('work_item_code', item.get('code'))
qty = item.get('quantity', 0)
duration_days = item.get('duration_days', 1)
start_offset = item.get('start_day', 0)
if self._code_index is not None and code in self._code_index.index:
work_item = self._code_index.loc[code]
labor_norm = float(work_item.get('labor_norm', 0) or 0)
total_hours = labor_norm * qty
# Determine trade from category
trade = self._get_trade(work_item.get('category', 'General'))
skill_level = self._get_skill_level(work_item)
start_date = project_start + timedelta(days=start_offset)
end_date = start_date + timedelta(days=duration_days)
daily_hours = total_hours / duration_days if duration_days > 0 else total_hours
requirements.append(LaborRequirement(
work_item_code=code,
description=str(work_item.get('description', '')),
total_hours=total_hours,
skill_level=skill_level,
trade=trade,
start_date=start_date,
end_date=end_date,
daily_hours=daily_hours
))
return requirements
def _get_trade(self, category: str) -> str:
"""Map category to trade."""
trade_mapping = {
'concrete': 'Concrete',
'masonry': 'Masonry',
'steel': 'Steel',
'carpentry': 'Carpentry',
'plumbing': 'Plumbing',
'electrical': 'Electrical',
'hvac': 'HVAC',
'painting': 'Painting',
'excavation': 'Earthwork',
'roofing': 'Roofing'
}
cat_lower = str(category).lower()
for key, trade in trade_mapping.items():
if key in cat_lower:
return trade
return 'General'
def _get_skill_level(self, work_item) -> SkillLevel:
"""Determine skill level from work item."""
# Based on complexity or explicit field
if 'skill_level' in work_item.index:
level = int(work_item.get('skill_level', 3))
return SkillLevel(min(max(level, 1), 5))
return SkillLevel.SKILLED
def generate_schedule(self,
requirements: List[LaborRequirement],
shift_type: ShiftType = ShiftType.SINGLE,
max_workers_per_trade: int = 50) -> LaborSchedule:
"""Generate labor schedule from requirements."""
if not requirements:
return LaborSchedule(
project_name="",
start_date=datetime.now(),
end_date=datetime.now(),
total_labor_hours=0,
peak_workers=0,
average_workers=0,
assignments=[],
daily_loading={},
by_trade={}
)
hours_per_day = self.HOURS_PER_SHIFT[shift_type]
# Find date range
start_date = min(r.start_date for r in requirements)
end_date = max(r.end_date for r in requirements)
# Build daily labor loading
daily_loading = defaultdict(lambda: defaultdict(float))
for req in requirements:
current = req.start_date
while current < req.end_date:
date_key = current.strftime('%Y-%m-%d')
daily_loading[date_key][req.trade] += req.daily_hours
current += timedelta(days=1)
# Convert to crew assignments
assignments = []
daily_totals = {}
by_trade = defaultdict(float)
for date_key, trades in daily_loading.items():
date = datetime.strptime(date_key, '%Y-%m-%d')
day_total = 0
for trade, hours in trades.items():
workers = int(np.ceil(hours / hours_per_day))
workers = min(workers, max_workers_per_trade)
assignments.append(CrewAssignment(
date=date,
trade=trade,
skill_level=SkillLevel.SKILLED,
workers_needed=workers,
hours_per_worker=hours_per_day,
total_hours=hours,
work_items=[]
))
day_total += workers
by_trade[trade] += hours
daily_totals[date_key] = day_total
# Statistics
total_hours = sum(r.total_hours for r in requirements)
peak_workers = max(daily_totals.values()) if daily_totals else 0
avg_workers = sum(daily_totals.values()) / len(daily_totals) if daily_totals else 0
return LaborSchedule(
project_name="Project",
start_date=start_date,
end_date=end_date,
total_labor_hours=total_hours,
peakRelated in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.