Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

Daily Progress Report Generator

Turns site inputs — work quantities, labor, equipment and weather — into a structured daily progress report exported to Excel or plain text.

Data & AnalyticsIntermediate27068AI score 7/10Last updated: Feb 14, 2026

What it does

  • Builds a daily report header with project name/number, date, weather condition, high/low temperature and preparer.
  • Auto-classifies each work activity as completed, in progress, delayed or not started by comparing planned vs. actual quantities.
  • Logs labor by trade and subcontractor (workers, regular hours, overtime) and equipment (hours used, status, operator).
  • Computes summary metrics: total workers, total man-hours, overtime, equipment hours, safety incidents, delivery count.
  • Exports a multi-sheet Excel workbook (Summary / Work Activities / Labor / Equipment) or a text report ready to paste into email.

Who it's for

  • Site managers and field engineers writing daily reports by hand
  • Construction managers consolidating multi-subcontractor labor and plant usage
  • PMO/data folks automating construction reporting with Python

Examples

  1. "Poured 150 m³ slab on Level 3 Zone A with an 8-person crew, 10 h plus 2 h overtime" → generates daily_report.xlsx
  2. Append delay entries such as "rain stoppage 14:00–16:00" and "material delivery 2 h late" to build a claim record
  3. Aggregate a week of reports' man-hours to compare actual productivity against plan

· · · Install guide · · ·

Try it now, no install

Paste this into Claude to use the skill without installing anything.

Read the instructions in this file and follow them to help me:
https://raw.githubusercontent.com/datadrivenconstruction/DDC_Skills_for_AI_Agents_in_Construction/HEAD/1_DDC_Toolkit/Analytics/daily-progress-report/SKILL.md

What I want: (describe your task here)

If Claude can't open the link, open it yourself and paste the contents instead.

If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the 1_DDC_Toolkit/Analytics/daily-progress-report folder from the GitHub repo datadrivenconstruction/DDC_Skills_for_AI_Agents_in_Construction into my ~/.claude/skills/daily-progress-report/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/datadrivenconstruction/DDC_Skills_for_AI_Agents_in_Construction.git && mkdir -p ~/.claude/skills && cp -r DDC_Skills_for_AI_Agents_in_Construction/1_DDC_Toolkit/Analytics/daily-progress-report ~/.claude/skills/

This is a third-party skill. Check the source repository before installing.

  1. Open a terminal (Git Bash or PowerShell on Windows).
  2. Clone the repo: git clone https://github.com/datadrivenconstruction/DDC_Skills_for_AI_Agents_in_Construction.git
  3. Create the skills folder: mkdir -p ~/.claude/skills
  4. Copy just this skill: cp -r DDC_Skills_for_AI_Agents_in_Construction/1_DDC_Toolkit/Analytics/daily-progress-report ~/.claude/skills/
  5. Install Python dependencies: pip install pandas openpyxl (python3 required)
  6. Restart Claude Code and ask something like "create today's site daily progress report".