progress-photo-analyzer
Analyze construction site photos to track progress, detect safety issues, and compare against BIM models using computer vision.
Profile →npx skills add majiayu000/claude-skill-registry --skill progress-photo-analyzer --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Progress Photo Analyzer ## Business Case ### Problem Statement Site photos are underutilized for progress tracking: - Manual review is time-consuming - Subjective progress assessment - No systematic comparison to plans - Safety issues may be missed ### Solution AI-powered photo analysis system that extracts progress information, detects safety concerns, and compares site conditions to BIM models. ### Business Value - **Automation** - Reduce manual photo review - **Accuracy** - Objective progress measurement - **Safety** - Automatic hazard detection - **Documentation** - Structured photo records ## Technical Implementation ```python import pandas as pd from datetime import datetime, date from typing import Dict, Any, List, Optional, Tuple from dataclasses import dataclass, field from enum import Enum from pathlib import Path import base64 class PhotoType(Enum): """Types of construction photos.""" PROGRESS = "progress" SAFETY = "safety" QUALITY = "quality" GENERAL = "general" DELIVERY = "delivery" class AnalysisStatus(Enum): """Analysis status.""" PENDING = "pending" ANALYZING = "analyzing" COMPLETED = "completed" FAILED = "failed" class SafetyIssue(Enum): """Detected safety issues
- Business Case
- Problem Statement
- Solution
- Business Value
- Technical Implementation
- Quick Start
- Common Use Cases
- 1. Daily Progress Report
- 2. Safety Monitoring
- 3. Export Analysis
- Resources
What does the progress-photo-analyzer skill do?
Analyze construction site photos to track progress, detect safety issues, and compare against BIM models using computer vision.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill progress-photo-analyzer --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.