payment-application-generator

Featured

Generate AIA-style payment applications. Track schedule of values, calculate retention, and produce payment documentation.

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

# Payment Application Generator ## Business Case ### Problem Statement Payment applications are error-prone: - Manual calculations cause mistakes - Retention tracking is complex - Inconsistent documentation - Delayed submissions affect cash flow ### Solution Automated payment application generation with schedule of values tracking, retention calculations, and standard format output. ### Business Value - **Accuracy** - Eliminate calculation errors - **Speed** - Faster billing cycle - **Cash flow** - Timely payments - **Compliance** - Standard documentation ## Technical Implementation ```python import pandas as pd from datetime import datetime, date from typing import Dict, Any, List, Optional from dataclasses import dataclass, field from enum import Enum class SOVStatus(Enum): """Schedule of Values item status.""" NOT_STARTED = "not_started" IN_PROGRESS = "in_progress" COMPLETE = "complete" STORED_MATERIAL = "stored_material" @dataclass class SOVItem: """Schedule of Values line item.""" item_number: str description: str scheduled_value: float work_completed_previous: float work_completed_current: float materials_stored_previous: float materials_stored_current: float total_completed_previous: float @property def total_completed_current(self) -> float: """Total completed and stored this period.""" return (self.work_completed_previous + self.work_completed_current + self.mat...

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