← Discover MCPs and Agents
D
AgentAI & MLGitHub

DDC_Skills_for_AI_Agents_in_Construction

221 AI skills for construction: BIM analysis, cost estimation, scheduling, document control, and automation with Claude Code

Links

README

From the repo.

DDC Skills Collection for AI Coding Assistants

AI Tools for Construction Company Automation

Skills Categories Languages License

DDC Skills

Works with any AI coding assistant:

Claude Code Google Antigravity OpenCode ClawdBot


What is this?

A collection of 238 skills for automating construction company processes with AI coding assistants.

What is a "Skill"?

A skill is a SKILL.md file — structured instructions that an AI coding assistant can read and execute. Each skill describes a specific task: what problem it solves, what code to generate, and what tools are needed. You open a skill folder in your AI assistant, and it helps you implement the described functionality.


Collection Structure

Skills are organized by source and complexity level:

CategoryWhat's insideSkillsStart here if...
1_DDC_ToolkitProduction-ready tools: CWICR database, CAD converters, analytics85You need a working tool now
2_DDC_BookSkills mapped to book chapters: data evolution, types, estimation, ML67You want to follow a structured learning path
3_DDC_InsightsPractical workflows: n8n automation, AI agents, field tools20You need workflow automation
4_DDC_CuratedDocument generation (PDF, Excel, DOCX, PPTX), quality checks20You need document or report templates
5_DDC_InnovativeAdvanced: computer vision, IoT, digital twins, risk assessment, AI agents, ESG, EU AI Act, circular construction, generative design34You're ready for AI/ML experimentation
6_OpenConstructionERPWork with the OpenConstructionERP platform: load cost bases, BOQ & estimating, BIM takeoff, 4D/5D, cost browser, MCP, field ops, tendering, validation, geo/coordination, property development12You build on the open-source construction ERP
mindmap
  root((DDC Skills<br/>238 skills))
    1_DDC_Toolkit
      CWICR Database
        8 national bases
        30 markets · 26 languages
      CAD Converters
        RVT → Excel
        IFC → Excel
        DWG → Excel
      Analytics
        KPI Dashboard
        Cost Analysis
    2_DDC_Book
      Part I: Data Evolution
      Part II: Data Types
      Part III: Estimation
      Part IV: Analytics & ML
      Part V: Threats & Strategy
    3_DDC_Insights
      n8n Workflows
        Daily Reports
        Photo Reports
      AI Agents 2026
      Field Automation
    4_DDC_Curated
      Document Generation
        PDF, Excel
        DOCX, PPTX
      Quality Assurance
    5_DDC_Innovative
      AI/ML Skills
        Defect Detection
        Risk Assessment
      IoT & Sensors
      Advanced BIM
        Digital Twin
      AI Agent Orchestration
      Embodied Carbon & ESG
      EU AI Act
      Material Passports
      Generative Design
    6_OpenConstructionERP
      Load Cost Bases
        TR · ZH · BR · ES · IT
        VN · ID · GR · 30 markets
      BOQ & Estimating
      BIM & CAD Takeoff
      4D/5D Scheduling
      Cost Browser
      MCP Integration
      Field Ops · Tendering
      Validation · Geo Hub
      Property Development

Where to Start

If you manage or lead a construction company:

Step 1. Read GETTING_STARTED.md — a non-technical overview of what can be automated and how to prioritize.

Step 2. Download the Data-Driven Construction book (free, 31 languages) — it explains the methodology behind these skills: how to assess your company's data maturity, identify bottlenecks, and plan digital transformation.

Step 3. Identify your biggest pain point in the table below and start with the corresponding skill.

If you are a developer or IT lead:

Step 1. Install prerequisites (see Prerequisites).

Step 2. Pick a skill from the table below, open its folder in your AI assistant, and follow the SKILL.md.

Step 3. Adapt the generated code to your data and deploy.


What Can You Automate?

Examples of common problems and which skills address them:

Your problemWhat the skill doesSkill to runFolder
Searching for work item rates takes too longSemantic search across 78,228 national + 55,719 global items in 26 languagessemantic-search-cwicr1_DDC_Toolkit/
Estimators spend days building estimates manuallyGenerates estimates from historical data and templatesestimate-builder1_DDC_Toolkit/
BIM models contain data but it's locked in RVT/IFC filesExtracts quantities and properties to Excelifc-to-excel, rvt-to-excel1_DDC_Toolkit/
Daily/weekly reports take hours to compileAutomated data collection and report generationn8n-daily-report3_DDC_Insights/
Site photos pile up with no organizationAI classifies and tags site photos automaticallyn8n-photo-report3_DDC_Insights/
Data is scattered across Excel files, emails, PDFsFinds all data sources and maps dependenciesdata-silo-detection2_DDC_Book/
No visibility into project KPIsDashboard with real-time metrics from your datakpi-dashboard1_DDC_Toolkit/
Budget overruns discovered too lateScheduled budget vs. actual comparisonbudget-tracker1_DDC_Toolkit/
PDF specifications need to be searchableExtracts text and tables from PDFs into structured dataspecification-extractor2_DDC_Book/
Schedule delays are hard to predictStatistical analysis of schedule variance patternsschedule-delay-analyzer3_DDC_Insights/

This is a selection of examples. The full collection contains 221 skills covering estimation, reporting, BIM, document processing, analytics, and more.


How to Use a Skill

1. Clone this repository
   git clone https://github.com/datadrivenconstruction/DDC_Skills_for_AI_Agents_in_Construction.git

2. Open a skill folder in your AI assistant
   cd DDC_Skills_for_AI_Agents_in_Construction/1_DDC_Toolkit/CWICR-Database/semantic-search-cwicr/

3. The assistant reads SKILL.md and generates the code for you

4. Review, adapt to your data, and run

Example: ETL Pipeline

# Automatic processing of all Excel files from a folder

import pandas as pd
from pathlib import Path

# Extract
all_data = [pd.read_excel(f) for f in Path("./estimates/").glob("*.xlsx")]
df = pd.concat(all_data)

# Transform
df['Total'] = df['Quantity'] * df['Unit_Price']
summary = df.groupby('Category')['Total'].sum()

# Load
summary.to_excel("summary_report.xlsx")

Implementation Path

A typical automation project follows these stages. You don't need to do all of them — start with what solves your most pressing problem.

StageWhat you doWhich skills help
1. AuditList all data sources in your company (Excel files, databases, BIM models, PDFs, emails)data-silo-detection, data-source-audit
2. ClassifyUnderstand what data you have: structured, semi-structured, or unstructureddata-type-classifier, data-profiler
3. ConnectBuild ETL pipelines to extract and normalize dataetl-pipeline, ifc-to-excel, specification-extractor
4. AutomateSet up recurring reports, alerts, and dashboardsn8n-daily-report, kpi-dashboard, budget-tracker
5. AnalyzeApply analytics and ML to find patterns and predict outcomescost-prediction, schedule-forecaster, risk-assessment

Each stage builds on the previous one, but you can enter at any point depending on your current state.


How Does It Work?

Each step in the implementation path corresponds to specific skills and tools:

flowchart LR
    subgraph S1["STEP 1"]
        A[Audit<br/>Find Data Silos]
    end

    subgraph S2["STEP 2"]
        B[Classify<br/>Data Types]
    end

    subgraph S3["STEP 3"]
        C[Connect<br/>ETL Pipelines]
    end

    subgraph S4["STEP 4"]
        D[Automate<br/>Reports & Dashboards]
    end

    subgraph S5["STEP 5"]
        E[Analyze<br/>ML & Predictions]
    end

    A --> B --> C --> D --> E

    A1[data-silo-detection<br/>data-source-audit] -.-> A
    B1[data-type-classifier<br/>data-profiler] -.-> B
    C1[etl-pipeline<br/>ifc-to-excel] -.-> C
    D1[n8n-daily-report<br/>kpi-dashboard] -.-> D
    E1[cost-prediction<br/>schedule-forecaster] -.-> E

    style S1 fill:#ffebee
    style S2 fill:#fff3e0
    style S3 fill:#e8f5e9
    style S4 fill:#e3f2fd
    style S5 fill:#f3e5f5

Data Types in Construction

Construction data comes in three forms. Each requires a different processing approach, and each has corresponding skills:

flowchart TB
    subgraph STRUCTURED["STRUCTURED"]
        S1[Excel]
        S2[SQL Database]
        S3[CSV]
    end

    subgraph SEMI["SEMI-STRUCTURED"]
        M1[IFC/BIM]
        M2[JSON]
        M3[XML]
    end

    subgraph UNSTRUCTURED["UNSTRUCTURED"]
        U1[PDF]
        U2[Photos]
        U3[Scans]
    end

    STRUCTURED -->|SQL queries, pandas| DB[(Central<br/>Database)]
    SEMI -->|ifcopenshell, parsers| DB
    UNSTRUCTURED -->|AI/OCR, pdfplumber| DB

    DB --> AUTO[Automation & Analytics]

    style STRUCTURED fill:#c8e6c9
    style SEMI fill:#fff9c4
    style UNSTRUCTURED fill:#ffcdd2
    style DB fill:#e1f5fe
    style AUTO fill:#f3e5f5
Data typeExamplesSkills that process it
StructuredExcel, CSV, SQL databasesetl-pipeline, estimate-builder, budget-tracker
Semi-structuredIFC/BIM models, JSON, XMLifc-to-excel, rvt-to-excel, dwg-to-excel
UnstructuredPDF documents, photos, scansspecification-extractor, n8n-photo-report, document-ocr

Prerequisites

RequirementDetails
Python 3.9+Most skills use Python scripts
AI Coding AssistantClaude Code, Cursor, Copilot, or similar
Basic Python knowledgeAbility to run scripts and install packages
Your dataExcel files, PDFs, or BIM models to process

Optional for advanced skills:

  • Docker (for n8n workflows)
  • PostgreSQL or SQLite (for database skills)
  • OpenAI API key (for LLM-based skills)

Installation

pip install pandas openpyxl ifcopenshell pdfplumber

Data Flow in Construction

Skills cover the typical data pipeline: from raw input files to processed, actionable outputs.

flowchart LR
    subgraph INPUT["📥 YOUR DATA"]
        A1[Excel Estimates]
        A2[Revit/IFC Models]
        A3[Site Photos]
        A4[PDF Documents]
    end

    subgraph DDC["⚙️ DDC SKILLS"]
        B1[ETL Pipeline]
        B2[IFC Parser]
        B3[AI Analysis]
        B4[Document OCR]
    end

    subgraph OUTPUT["📤 RESULTS"]
        C1[Auto Reports]
        C2[Auto Estimates]
        C3[Progress Tracking]
        C4[Searchable Data]
    end

    A1 --> B1 --> C1
    A2 --> B2 --> C2
    A3 --> B3 --> C3
    A4 --> B4 --> C4

    style INPUT fill:#e1f5fe
    style DDC fill:#fff3e0
    style OUTPUT fill:#e8f5e9

Construction data comes in three forms. Each requires a different processing approach:

Data typeExamplesHow skills process it
StructuredExcel, CSV, SQL databasesDirect queries and transformations
Semi-structuredIFC/BIM models, JSON, XMLParsing with specialized libraries
UnstructuredPDF documents, photos, scansAI/OCR extraction to structured format

Folder Structure

DDC_Skills/
│
├── 1_DDC_Toolkit/              ← Production tools (85 skills)
│   ├── CWICR-Database/         ← 8 national bases + 30 markets database
│   ├── CAD-Converters/         ← Revit/IFC/DWG → Excel
│   └── ...
│
├── 2_DDC_Book/                 ← Skills from the book (67 skills)
│   ├── 1.1-Data-Evolution/     ← Digital maturity assessment
│   ├── 1.2-Data-Silos-Integration/  ← Find & connect data sources
│   ├── 3.1-Cost-Estimation/    ← Build estimates from data
│   ├── 4.2-ETL-Automation/     ← Automate data pipelines
│   └── ...
│
├── 3_DDC_Insights/             ← Practical workflows (20 skills)
│   ├── Automation-Workflows/   ← n8n automation
│   ├── AI-Agents/              ← Multi-agent systems (2026)
│   ├── Field-Automation/       ← Telegram bot, voice reports
│   └── Open-Data-Transparency/ ← Uberization readiness
│
├── 4_DDC_Curated/              ← External skills (20 skills)
│   ├── Document-Generation/    ← PDF/Excel/DOCX/PPTX generation
│   └── Quality-Assurance/      ← Quality checks
│
├── 5_DDC_Innovative/           ← Advanced AI/ML skills (29 skills)
│   ├── defect-detection-ai/    ← Computer vision for defects
│   ├── digital-twin-sync/      ← Real-time BIM sync
│   └── ...
│
├── Books/                      ← Free book downloads (31 languages)
├── GETTING_STARTED.md          ← START HERE
└── README.md                   ← You are here

Documentation

DocumentDescriptionAudience
GETTING_STARTED.mdStep-by-step automation guideExecutives, beginners
OPTIMIZER_GUIDE.mdHow to work effectively with AI assistantsDevelopers
IMPROVEMENT_ROADMAP.mdCollection development planContributors

Potential Time Savings

Automation results vary depending on company size, data quality, and implementation effort:

ProcessManual approachWith automation
Find work item rateSearch through price booksDatabase query with filters
Daily report compilationCollect data from multiple sourcesPre-configured data aggregation
IFC quantity extractionOpen model, measure manuallyScript-based extraction to Excel
Budget variance trackingWeekly spreadsheet updatesScheduled comparison reports
Document organizationManual folder sortingMetadata-based classification

Results depend on data preparation and workflow complexity. See GETTING_STARTED.md for implementation guidance.


About the Book

The majority of skills are based on the book "Data-Driven Construction" — a methodology for digital transformation in construction. The book explains the reasoning behind each skill category: why data silos matter, how to classify your data, and what to automate first.

Data-Driven Construction Book

Book structure maps to skills:

  1. Part I — Data landscape assessment → 2_DDC_Book/1.1-*, 1.2-*
  2. Part II — Data types and classification → 2_DDC_Book/2.1-* through 2.6-*
  3. Part III — Estimation and scheduling → 2_DDC_Book/3.1-* through 3.3-*
  4. Part IV — Analytics and ML → 2_DDC_Book/4.1-* through 4.5-*
  5. Part V — Threats and long-term strategy → 2_DDC_Book/5.*

Download Free in 31 Languages →


Resources

ResourceLink
Book (All Languages)https://datadrivenconstruction.io/books/
Websitehttps://datadrivenconstruction.io
CWICR Demohttps://openconstructionestimate.com
GitHubhttps://github.com/datadrivenconstruction
CWICR Databasehttps://github.com/datadrivenconstruction/OpenConstructionEstimate-DDC-CWICR
CAD2Data Pipelinehttps://github.com/datadrivenconstruction/cad2data-Revit-IFC-DWG-DGN-pipeline-with-conversion-validation-qto

Support the Project

If you find these tools useful, please give the repository a star — it helps others discover these resources.

GitHub stars

Related repositories:

RepositoryDescription
OpenConstructionEstimate-DDC-CWICR8 national bases + 30 markets in 26 languages
cad2data PipelineRevit/IFC/DWG/DGN to Excel converter

Contributing

Contributions are welcome:

  • Report issues — bugs, unclear documentation, broken links
  • Suggest skills — describe the automation you need
  • Submit PRs — new skills, improvements, translations

Each skill should include a SKILL.md with clear instructions and working code examples.


License

  • CWICR Database: CC BY-NC 4.0 (non-commercial; separate DDC commercial license)
  • DDC Tools: MIT License
  • Skills: MIT License

Trademarks

All product names, logos, and brands mentioned in this repository are property of their respective owners. All company, product and service names used are for identification purposes only. Use of these names, logos, and brands does not imply endorsement.

  • IFC is an open standard by buildingSMART International
  • File format references (RVT, DWG, DGN, NWD, etc.) are used for technical interoperability purposes only

Start here → GETTING_STARTED.md

Collected info

  • 330 stars
  • 80 forks
  • Language: Python
  • Source updated: 9/21/2026