Agent skill

progress-photo-analyzer

Analyze field progress photos. Catalog, tag, and compare against planned progress.

majiayu000534★ · 1 repos on radarProfile →
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill progress-photo-analyzer-datadrivenconstructi-ddc-skills-for-ai-a-datadrivenconstructi-ddc-skills-for-ai-ag --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/analysis/progress-photo-analyzer-datadrivenconstructi-ddc-skills-for-ai-a-datadrivenconstructi-ddc-skills-for-ai-ag/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

# Field Progress Photo Analyzer ## Business Case Site photos document progress but are often poorly organized. This skill provides systematic photo cataloging and analysis. ## 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 PhotoCategory(Enum): PROGRESS = "progress" QUALITY = "quality" SAFETY = "safety" DELIVERY = "delivery" ISSUE = "issue" GENERAL = "general" @dataclass class SitePhoto: photo_id: str filename: str captured_date: datetime category: PhotoCategory location: str level: str zone: str captured_by: str description: str tags: List[str] = field(default_factory=list) activity_code: str = "" file_path: str = "" class ProgressPhotoAnalyzer: def __init__(self, project_name: str): self.project_name = project_name self.photos: Dict[str, SitePhoto] = {} self._counter = 0 def catalog_photo(self, filename: str, captured_date: datetime, category: PhotoCategory, location: str, level: str, captured_by: str, description: str = "", zone: str = "", tags: List[str] = None) -> SitePhoto: self._counter += 1 photo_id = f"PH-{self._counte

What's inside
Steps it walks through
  1. Business Case
  2. Technical Implementation
  3. Quick Start
  4. 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 field progress photos. Catalog, tag, and compare against planned progress.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill progress-photo-analyzer-datadrivenconstructi-ddc-skills-for-ai-a-datadrivenconstructi-ddc-skills-for-ai-ag --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