Skill hris people operations
HR operations skill — employees, leave, payroll, org chart via mcp-hris
npx -y skills add zavora-ai/skill-hris-people-operationsAssembled 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
get_employee(id)orget_directory(search: "name")— find person- Return: name, title, department, manager, contact info
- NEVER return: salary, SSN, bank details
Leave Management
list_time_off(employee_id, year)— check balancerequest_time_off(employee_id, type, start, end)— submit requestapprove_time_off(request_id)— manager approves
Org Navigation
get_org_chart(department)— visual hierarchyget_headcount(department)— team sizeslist_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