contractor-matching-ai
AI-powered contractor matching and selection for construction projects. Analyze contractor capabilities, past performance, certifications, and project requirements to recommend optimal matches.
What this skill does
# AI Contractor Matching
## Overview
This skill implements AI-powered contractor matching for construction projects. Analyze project requirements against contractor capabilities, track historical performance, and generate recommendations based on multiple criteria.
**Matching Criteria:**
- Technical capabilities & expertise
- Past performance scores
- Certifications & licenses
- Geographic availability
- Capacity & current workload
- Pricing competitiveness
- Safety records
## Quick Start
```python
from dataclasses import dataclass, field
from typing import List, Dict, Optional
from datetime import date
import numpy as np
@dataclass
class Contractor:
contractor_id: str
name: str
specializations: List[str]
certifications: List[str]
performance_score: float # 0-100
safety_score: float # 0-100
regions: List[str]
capacity_available: float # 0-100 percentage
avg_bid_variance: float # % above/below average
@dataclass
class ProjectRequirement:
project_id: str
work_types: List[str]
required_certs: List[str]
region: str
estimated_value: float
priority: str # cost, quality, speed, safety
def match_contractors(project: ProjectRequirement,
contractors: List[Contractor],
top_n: int = 5) -> List[Dict]:
"""Simple contractor matching"""
scores = []
for c in contractors:
# Check basic eligibility
if project.region not in c.regions:
continue
work_match = len(set(project.work_types) & set(c.specializations))
if work_match == 0:
continue
cert_match = len(set(project.required_certs) & set(c.certifications))
if cert_match < len(project.required_certs):
continue
# Calculate score based on priority
if project.priority == 'quality':
score = c.performance_score * 0.6 + (100 - abs(c.avg_bid_variance)) * 0.2 + c.capacity_available * 0.2
elif project.priority == 'cost':
score = (100 - c.avg_bid_variance) * 0.5 + c.performance_score * 0.3 + c.capacity_available * 0.2
elif project.priority == 'safety':
score = c.safety_score * 0.6 + c.performance_score * 0.3 + c.capacity_available * 0.1
else: # speed
score = c.capacity_available * 0.5 + c.performance_score * 0.3 + c.safety_score * 0.2
scores.append({
'contractor': c,
'score': score,
'work_match': work_match / len(project.work_types),
'cert_match': cert_match / len(project.required_certs) if project.required_certs else 1.0
})
# Sort and return top matches
scores.sort(key=lambda x: x['score'], reverse=True)
return scores[:top_n]
# Example
contractors = [
Contractor("C001", "ABC Builders", ["concrete", "structural"], ["ISO9001", "OHSAS18001"],
85, 90, ["Moscow", "SPB"], 60, -5),
Contractor("C002", "XYZ Construction", ["concrete", "finishing"], ["ISO9001"],
78, 85, ["Moscow"], 80, 10),
]
project = ProjectRequirement("P001", ["concrete"], ["ISO9001"], "Moscow", 1000000, "quality")
matches = match_contractors(project, contractors)
for m in matches:
print(f"{m['contractor'].name}: Score {m['score']:.1f}")
```
## Comprehensive Matching System
### Contractor Profile Management
```python
from dataclasses import dataclass, field
from typing import List, Dict, Optional, Tuple
from datetime import date, datetime
from enum import Enum
import numpy as np
from sklearn.preprocessing import MinMaxScaler
class ContractorSize(Enum):
MICRO = "micro" # < 10 employees
SMALL = "small" # 10-50 employees
MEDIUM = "medium" # 50-250 employees
LARGE = "large" # > 250 employees
class WorkCategory(Enum):
GENERAL = "general_contractor"
CONCRETE = "concrete"
STRUCTURAL_STEEL = "structural_steel"
MEP = "mep"
ELECTRICAL = "electrical"
PLUMBING = "plumbing"
HVAC = "hvac"
FINISHING = "finishing"
FACADE = "facade"
ROOFING = "roofing"
EXCAVATION = "excavation"
FOUNDATION = "foundation"
LANDSCAPING = "landscaping"
DEMOLITION = "demolition"
@dataclass
class ProjectReference:
project_name: str
client: str
value: float
completion_date: date
work_type: str
performance_rating: float # 1-5
on_time: bool
on_budget: bool
client_reference_available: bool
@dataclass
class ContractorProfile:
contractor_id: str
company_name: str
legal_name: str
registration_number: str
size: ContractorSize
founded_year: int
employees_count: int
# Capabilities
specializations: List[WorkCategory]
equipment_owned: List[str]
max_project_value: float
min_project_value: float
# Certifications
certifications: List[Dict] # {name, issuer, valid_until}
licenses: List[Dict] # {type, number, region, valid_until}
# Performance
completed_projects: int
active_projects: int
references: List[ProjectReference] = field(default_factory=list)
# Safety
safety_certifications: List[str] = field(default_factory=list)
incident_rate: float = 0.0 # incidents per 1000 work hours
fatality_count: int = 0
lost_time_incidents: int = 0
# Financial
annual_revenue: float = 0
credit_rating: str = ""
insurance_coverage: float = 0
bonding_capacity: float = 0
# Geographic
headquarters_region: str = ""
operating_regions: List[str] = field(default_factory=list)
willing_to_travel: bool = False
# Current status
current_workload_pct: float = 0 # 0-100
earliest_availability: Optional[date] = None
# Pricing
historical_bid_data: List[Dict] = field(default_factory=list)
def calculate_performance_score(self) -> float:
"""Calculate overall performance score"""
if not self.references:
return 50.0 # Default for new contractors
ratings = [r.performance_rating for r in self.references]
on_time_rate = sum(1 for r in self.references if r.on_time) / len(self.references)
on_budget_rate = sum(1 for r in self.references if r.on_budget) / len(self.references)
# Weighted average
avg_rating = sum(ratings) / len(ratings) / 5 * 100 # Normalize to 0-100
on_time_score = on_time_rate * 100
on_budget_score = on_budget_rate * 100
return avg_rating * 0.5 + on_time_score * 0.3 + on_budget_score * 0.2
def calculate_safety_score(self) -> float:
"""Calculate safety score"""
base_score = 100
# Deductions
if self.incident_rate > 0:
base_score -= min(30, self.incident_rate * 10)
if self.fatality_count > 0:
base_score -= 50 # Major deduction for fatalities
if self.lost_time_incidents > 0:
base_score -= min(20, self.lost_time_incidents * 2)
# Bonuses for certifications
if 'ISO45001' in self.safety_certifications or 'OHSAS18001' in self.safety_certifications:
base_score += 10
return max(0, min(100, base_score))
def get_capacity_score(self) -> float:
"""Calculate available capacity score"""
return 100 - self.current_workload_pct
```
### AI Matching Engine
```python
from sklearn.metrics.pairwise import cosine_similarity
from sklearn.feature_extraction.text import TfidfVectorizer
import pandas as pd
@dataclass
class ProjectRequirements:
project_id: str
project_name: str
work_categories: List[WorkCategory]
required_certifications: List[str]
required_licenses: List[str]
region: str
estimated_value: float
start_date: date
duration_months: int
priority_weights: Dict[str, float] = field(default_factory=dict)
special_requirements: List[str] = field(default_factory=list)
def __post_init__(self):
if not self.priority_weights:
self.priority_weights = {
'performRelated 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.