labor-productivity-analyzer
Analyze labor productivity by trade, activity, and location. Track efficiency and identify improvement opportunities.
npx skills add majiayu000/claude-skill-registry --skill labor-productivity-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.
# Labor Productivity Analyzer ## Technical Implementation ```python import pandas as pd from datetime import date from typing import Dict, Any, List from dataclasses import dataclass, field from enum import Enum class ProductivityStatus(Enum): EXCEEDING = "exceeding" ON_TARGET = "on_target" BELOW_TARGET = "below_target" CRITICAL = "critical" @dataclass class ProductivityEntry: entry_id: str date: date trade: str activity_code: str activity_description: str location: str crew_size: int hours_worked: float quantity_installed: float unit: str target_productivity: float # units per hour @property def actual_productivity(self) -> float: if self.hours_worked == 0: return 0 return self.quantity_installed / self.hours_worked @property def productivity_factor(self) -> float: if self.target_productivity == 0: return 0 return self.actual_productivity / self.target_productivity @property def status(self) -> ProductivityStatus: pf = self.productivity_factor if pf >= 1.1: return ProductivityStatus.EXCEEDING elif pf >= 0.9: return ProductivityStatus.ON_TARGET elif pf >= 0.7: return ProductivityStatus.BELOW_TARGET return ProductivityStatus.CRITICAL class LaborProductivityAnalyzer: def __init__(sel
- Technical Implementation
- Quick Start
- Resources
What does the labor-productivity-analyzer skill do?
Analyze labor productivity by trade, activity, and location. Track efficiency and identify improvement opportunities.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill labor-productivity-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.
