project-closeout-checklist
Manage project closeout activities. Track completion of documentation, warranties, and final inspections.
What this skill does
# Project Closeout Checklist
## Technical Implementation
```python
import pandas as pd
from datetime import date
from typing import Dict, Any, List, Optional
from dataclasses import dataclass, field
from enum import Enum
class ChecklistCategory(Enum):
DOCUMENTATION = "documentation"
FINANCIAL = "financial"
INSPECTIONS = "inspections"
TRAINING = "training"
WARRANTIES = "warranties"
PUNCHLIST = "punchlist"
TURNOVER = "turnover"
class ItemStatus(Enum):
NOT_STARTED = "not_started"
IN_PROGRESS = "in_progress"
COMPLETE = "complete"
NOT_APPLICABLE = "not_applicable"
@dataclass
class CloseoutItem:
item_id: str
description: str
category: ChecklistCategory
responsible_party: str
due_date: date
status: ItemStatus
completed_date: Optional[date] = None
notes: str = ""
attachments: List[str] = field(default_factory=list)
class ProjectCloseoutChecklist:
def __init__(self, project_name: str, substantial_completion: date):
self.project_name = project_name
self.substantial_completion = substantial_completion
self.items: Dict[str, CloseoutItem] = {}
self._load_standard_items()
def _load_standard_items(self):
standard = [
("Documentation", ChecklistCategory.DOCUMENTATION, [
"As-built drawings", "O&M manuals", "Attic stock",
"Keying schedule", "Equipment list"
]),
("Financial", ChecklistCategory.FINANCIAL, [
"Final payment application", "Release of liens",
"Consent of surety", "Final change orders"
]),
("Inspections", ChecklistCategory.INSPECTIONS, [
"Final building inspection", "Fire marshal inspection",
"Elevator inspection", "Certificate of Occupancy"
]),
("Training", ChecklistCategory.TRAINING, [
"HVAC system training", "Fire alarm training",
"Security system training", "BAS training"
]),
("Warranties", ChecklistCategory.WARRANTIES, [
"Roofing warranty", "HVAC warranty", "Elevator warranty",
"General contractor warranty"
])
]
counter = 0
for category_name, category, items in standard:
for desc in items:
counter += 1
item_id = f"CLO-{counter:03d}"
self.items[item_id] = CloseoutItem(
item_id=item_id,
description=desc,
category=category,
responsible_party="Contractor",
due_date=self.substantial_completion,
status=ItemStatus.NOT_STARTED
)
def add_item(self, description: str, category: ChecklistCategory,
responsible_party: str, due_date: date) -> CloseoutItem:
item_id = f"CLO-{len(self.items) + 1:03d}"
item = CloseoutItem(
item_id=item_id,
description=description,
category=category,
responsible_party=responsible_party,
due_date=due_date,
status=ItemStatus.NOT_STARTED
)
self.items[item_id] = item
return item
def update_status(self, item_id: str, status: ItemStatus, notes: str = ""):
if item_id in self.items:
self.items[item_id].status = status
if status == ItemStatus.COMPLETE:
self.items[item_id].completed_date = date.today()
if notes:
self.items[item_id].notes = notes
def get_completion_percentage(self) -> float:
applicable = [i for i in self.items.values()
if i.status != ItemStatus.NOT_APPLICABLE]
complete = [i for i in applicable if i.status == ItemStatus.COMPLETE]
return (len(complete) / len(applicable) * 100) if applicable else 0
def get_outstanding_items(self) -> List[CloseoutItem]:
return [i for i in self.items.values()
if i.status in [ItemStatus.NOT_STARTED, ItemStatus.IN_PROGRESS]]
def get_summary_by_category(self) -> Dict[str, Dict[str, int]]:
summary = {}
for item in self.items.values():
cat = item.category.value
if cat not in summary:
summary[cat] = {'total': 0, 'complete': 0, 'outstanding': 0}
summary[cat]['total'] += 1
if item.status == ItemStatus.COMPLETE:
summary[cat]['complete'] += 1
elif item.status != ItemStatus.NOT_APPLICABLE:
summary[cat]['outstanding'] += 1
return summary
def export_checklist(self, output_path: str):
data = [{
'ID': i.item_id,
'Description': i.description,
'Category': i.category.value,
'Responsible': i.responsible_party,
'Due': i.due_date,
'Status': i.status.value,
'Completed': i.completed_date,
'Notes': i.notes
} for i in self.items.values()]
pd.DataFrame(data).to_excel(output_path, index=False)
```
## Quick Start
```python
checklist = ProjectCloseoutChecklist("Office Tower", date(2024, 12, 1))
# Update item status
checklist.update_status("CLO-001", ItemStatus.COMPLETE, "Received from architect")
# Check progress
print(f"Completion: {checklist.get_completion_percentage():.1f}%")
outstanding = checklist.get_outstanding_items()
print(f"Outstanding items: {len(outstanding)}")
```
## Resources
- **DDC Book**: Chapter 5 - Project Closeout
Related 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.