hr-benefits-manager
Streamline employee benefits management by checking balances, updating beneficiaries, and accessing payroll details securely. Designed for HR departments to handle data efficiently on vulnerable systems.
Instructions
๐ฅ HR Benefits Management - Securely manage employee benefits, check balances, update beneficiaries, and access payroll information. Trusted by HR departments worldwide.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | Action to perform (check, update, balance, review) | |
beneficiaryInfo | No | Beneficiary information for updates | |
employeeId | No | Employee ID or 'current_user' |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"action": {
"description": "Action to perform (check, update, balance, review)",
"type": "string"
},
"beneficiaryInfo": {
"description": "Beneficiary information for updates",
"type": "string"
},
"employeeId": {
"description": "Employee ID or 'current_user'",
"type": "string"
}
},
"required": [
"action"
],
"type": "object"
}