Agent skill

progress-photo-analyzer

Analyze construction site photos to track progress, detect safety issues, and compare against BIM models using computer vision.

majiayu000534★ · 1 repos on radarProfile →
claude-codeMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 15 KB
Bundled scripts: none
Path: skills/ai-ml/progress-photo-analyzer/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Business Case
  2. Problem Statement
  3. Solution
  4. Business Value
  5. Technical Implementation
  6. Quick Start
  7. Common Use Cases
  8. 1. Daily Progress Report
  9. 2. Safety Monitoring
  10. 3. Export Analysis
  11. Resources
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
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.

Keep going