clous-hr/skills/workload-health/SKILL.md
Use when the user wants to detect or assess engineering burnout risk (after-hours work, on-call load, unsustainable pace, team health checks) for an individual or team.
npx skillsauth add clous-ai/agents workload-healthInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Detect and diagnose engineering burnout risk using data across workload patterns, after-hours activity, on-call load, and team context, then turn it into a concrete mitigation plan.
Use this skill when:
Do not use this skill when:
performance-diagnose.career-path.capability-planning.| Dimension | Example Metrics | Typical Red Flags (guidance, not hard rules) | |---------------------|----------------------------------------------------|-----------------------------------------------------------------------| | After-hours work | Commits/emails by hour, weekend activity | >20–30% work outside 9–6; regular weekend pushes; late-night spikes | | On-call load | Incidents/shift, pages/night, time to resolve | >3 incidents/week; >5 pages/shift; same person paged repeatedly | | Workload & focus | PRs to review, projects per person, context areas | >10 PRs/week; >3 parallel projects; 5+ distinct domains in a week | | Meetings | Hours/week, fragmentation | >20 hours/week; 4+ context switches/day due to meetings | | Trend & trajectory | Last 3–6 months | Clear upward trend in load + downward trend in engagement/output |
Goal: Detect sustained, not one-off, patterns of after-hours and weekend work.
Example commands (adapt author filters as needed):
# Commits by hour (detect after-hours work)
git log --author="Name" --date=format:'%H' --pretty=format:'%ad' | sort | uniq -c
# Commits by day of week (weekend work)
git log --author="Name" --date=format:'%u' --pretty=format:'%ad' | sort | uniq -c
# Commit velocity trend by week
git log --author="Name" --since="6 months ago" --pretty=format:'%ad' --date=short | uniq -c
Interpretation guidance:
Typical warning signs:
Metrics to assemble:
Typical warning signs:
Signals to gather:
Typical warning signs:
Pull in:
Always normalize your output to the JSON structure in templates/burnout-indicators.json. A typical filled-out structure looks like:
{
"employee": "Name",
"assessment_date": "2026-01-22",
"risk_level": "high",
"indicators": [
{
"category": "after_hours_work",
"severity": "high",
"evidence": "35% of commits between 8pm-1am over last 8 weeks (team avg: 9%)",
"trend": "increasing"
},
{
"category": "on_call_load",
"severity": "medium",
"evidence": "4.2 incidents per on-call week (team avg: 2.1)",
"trend": "stable"
}
],
"overall_drivers": [
"Incident spike since Q4",
"Understaffed platform team"
]
}
Map your indicator severities to an overall risk level:
Anchor your recommendations in templates/recommendations.md and produce a short, prioritized list (3–7 items) with owners and timelines.
Immediate actions (high/critical risk):
Medium-term (systemic fixes):
Long-term (culture & norms):
Use templates/burnout-risk-assessment-report-manager.md as the base and populate:
templates/burnout-indicators.json – Canonical indicators JSON schema.templates/burnout-risk-assessment-report-manager.md – Manager-facing narrative assessment template.templates/recommendations.md – Mitigation and intervention plan structure.scripts/check-workload-health.sh – Pre-run checks for the skill.scripts/validate-workload-health.py – Validate indicators JSON and report structure.Aim for specific, data-backed, and humane recommendations that a manager can act on within the next 1–3 sprints.
development
Use when an AI agent needs to inspect, create, update, delete, or troubleshoot Clous webhook subscriptions and events.
tools
Use when an external AI agent needs to operate Clous safely across MCP, SDK, CLI, and API surfaces while preserving user/company context and avoiding unsafe mutations.
tools
Use when reading, creating, updating, or deleting Clous objects such as employees, candidates, jobs, reviews, skills, and forms.
tools
Use when an AI agent can call Clous remote MCP tools to inspect or operate the Clous platform, HR, or employee surfaces.