Agent skill

labor-productivity-analyzer

Analyze labor productivity by trade, activity, and location. Track efficiency and identify improvement opportunities.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 7 KB
Bundled scripts: none
Path: skills/analysis/labor-productivity-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

# 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

What's inside
Steps it walks through
  1. Technical Implementation
  2. Quick Start
  3. Resources
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
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.

Keep going