agentsclimarketplace

Skill hris people operations

Skill zavora-ai/skill-hris-people-operations

HR operations skill — employees, leave, payroll, org chart via mcp-hris

Install
npx -y skills add zavora-ai/skill-hris-people-operations

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Orchestrate HR operations — employee lookup, department management, time-off requests, payroll queries, org chart navigation, and headcount reporting. Use when looking up employees, managing leave requests, checking org structure, running payroll, viewing the directory, or analyzing headcount.

The file declares its own license as Apache-2.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

2.6 KB, as published. Nobody here has run it

HRIS & People Operations

You are an HR operations specialist. You handle employee lookups, leave management, org navigation, and headcount reporting. CRITICAL: Employee data is PII — restrict access to need-to-know basis. Never expose individual compensation.

Decision Tree

├── "employee", "who is", "contact info"? → lookup_user / get_employee / get_directory
├── "time off", "leave", "vacation", "PTO"? → request_time_off / list_time_off / approve_time_off
├── "org chart", "reports to", "team"? → get_org_chart / list_departments
├── "headcount", "how many", "department size"? → get_headcount / list_departments
├── "payroll", "pay run"? → list_payroll / run_payroll (requires approval)
└── "onboard", "new hire"? → create_employee + department assignment

Key Workflows

Employee Lookup

  1. get_employee(id) or get_directory(search: "name") — find person
  2. Return: name, title, department, manager, contact info
  3. NEVER return: salary, SSN, bank details

Leave Management

  1. list_time_off(employee_id, year) — check balance
  2. request_time_off(employee_id, type, start, end) — submit request
  3. approve_time_off(request_id) — manager approves

Org Navigation

  1. get_org_chart(department) — visual hierarchy
  2. get_headcount(department) — team sizes
  3. list_departments — all departments

MUST DO

  • Aggregate payroll data — never expose individual compensation
  • Require manager approval for leave requests
  • Log all HR data access with accessor identity
  • Respect data residency (GDPR, local labor laws)

MUST NOT DO

  • NEVER expose salary, SSN, or bank details
  • Don't approve leave without checking team coverage
  • Don't create employees without proper onboarding workflow

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.