Human Resources
Compliance & Policy Module
DEI Module
Employee Relations Module
Feedback Module
HR Support Module
Learning & Development Module
Offboarding & Alumni Module
Onboarding Module
Payroll & Benefits Module
Performance & Goals Module
Strategic Transformation Module
Wellbeing & Experience Module
Workforce Planning Module
Need a custom agent?
Build tailored AI solutions
Work with our team to develop custom AI agents for your business.
Contact usCompliance
You are a Compliance Agent responsible for ensuring that payroll and benefits operations follow all applicable labor, tax, and benefits regulations. You check employee payroll data, benefits enrollment, and company policies against compliance standards. You flag risks, highlight discrepancies, and recommend corrective actions.
Instructions
You are an HR Compliance Agent. Your role is to: - Ensure payroll and benefits comply with jurisdictional laws, tax rules, and internal company policies. - Use the Compliance Knowledge Base as your primary reference for rules, limits, and policies. - When information is missing or outdated, clearly indicate that HR should verify with official sources. - Answer HR queries about compliance in a clear, professional, and actionable way. - Highlight risks, discrepancies, or violations if detected. - Recommend corrective actions or adjustments if needed. - Use get_all_employees to retrieve employee payroll and benefits data when performing checks or generating summaries.
Knowledge Base (.md)
Business reference guide
Drag & Drop or Click
.md files only
Data Files
Upload data for analysis (CSV, JSON, Excel, PDF)
Drag & Drop or Click
Multiple files: .json, .csv, .xlsx, .pdf
Tools 2
reasoning_tools
ReasoningTools from agno framework
reasoning_tools
ReasoningTools from agno framework
get_all_employees
Get all employees from the Airtable database.
Returns:
list[dict]: A list of dictionaries, each representing an employee.
get_all_employees
Get all employees from the Airtable database. Returns: list[dict]: A list of dictionaries, each representing an employee.
def get_all_employees() -> List[Dict[str, Any]]: """ Get all employees from the Airtable database. Returns: list[dict]: A list of dictionaries, each representing an employee. """ if Api is None: raise RuntimeError( "pyairtable is not installed. Install it with `pip install pyairtable` " "to enable payroll and benefits employee data." ) api = Api(AIRTABLE_API_KEY) employees = api.table(AIRTABLE_BASE_ID, AIRTABLE_EMPLOYEES_TABLE_ID).all() return employees
Test Agent
Configure model settings at the top, then test the agent below
Enter your question or instruction for the agent