"""Root landing page HTML for the SimLab HR Space on Hugging Face.""" LANDING_HTML = """ SimLab HR — AI Recruiting & People Management Agent Environment
OpenEnv 4 Tool Servers 14+ Tasks

SimLab HR

AI Recruiting & People Management Agent Environment

A fully-functional HR simulation for training, evaluating, and benchmarking AI agents. Your agent gets a task — "schedule a phone screen", "approve a leave request", "onboard a new hire" — and a real workplace with an HRMS, email, calendar, and team chat.

4 Tool Servers, 1 Environment

HRMS

Employee records, leave management, attendance, payroll

:8030

Email

Send and read emails, inbox management

:8040

Calendar

Schedule meetings, check availability, manage events

:8050

RocketChat

Team messaging, channels, direct messages

:8060

Quickstart

from simlab_hr import HRAction
from simlab_hr.client import HREnv

client = HREnv(base_url="http://localhost:8000")

with client:
    obs = client.reset()
    print(obs.observation.task_instruction)

    result = client.step(HRAction(
        tool_server="hrms",
        tool_name="get_leave_balance",
        parameters={"employee_id": "EMP-0042"}
    ))

Sample Tasks

DifficultyExample
EasyApprove a leave request, update an employee's designation
MediumSchedule a phone screen + send confirmation, run attendance report
HardMulti-person panel interview scheduling, full onboarding flow

8 tasks included out of the box. Every task requires coordinating across multiple tool servers.

Unlock 14+ Tasks from the API

Set COLLINEAR_API_KEY to access the full task set with real HR scenarios — recruiting workflows, people management, compliance tasks, and more.

Get a Free API Key →

Run Locally

git clone https://github.com/collinear-ai/simlab.git
cd simlab/envs/simlab_hr
docker compose up

More Environments

SimLab includes 5 enterprise simulation scenarios with 14 tool servers:

ScenarioTools
Human Resources ← you are hereHRMS, email, calendar, team chat
Customer ServiceHelpdesk ticketing, team chat, email
FinanceSEC filings, market data, Google Workspace
CodingSandboxed IDE, browser automation, team chat
CRMContacts, deals, pipelines, activities
pip install simulationlab
simlab templates list
"""