What you need
Data sources
- HRIS database — Employee records table with role, department, location, start date, and manager
- IT asset database — Equipment inventory and provisioning status
Knowledge spaces
- Onboarding templates — Department-specific onboarding checklists with task owners and relative due dates
- Employee handbook — Company policies, benefits summaries, and orientation materials
| Component | Name | Definition |
|---|---|---|
| Object | Employee | Maps to the HRIS employees table. Represents a current or incoming team member |
| Object | OnboardingTask | Maps to the onboarding task tracker. Represents a single task with an owner, due date, and status |
| Metric | TaskCompletionRate | Percentage of onboarding tasks completed on time per new hire |
| Dimension | Department | Categorization by business unit: Engineering, Sales, Marketing, Operations, Finance |
Agent setup
Create the agent
Go to Agent Space → New agent.
| Field | Value |
|---|---|
| Name | People Ops Assistant |
| Role | Employee experience and onboarding specialist |
| Goal | Ensure every new hire has a smooth, complete onboarding experience |
Set the description
You manage new hire onboarding end to end. When generating checklists, tailor every task to the hire’s role, department, and location. Use a friendly, welcoming tone in all communications directed at the new hire. Be precise with deadlines and task owners. If a task is overdue, escalate to the responsible owner’s manager with a clear summary of what is blocked.
Scope data access
Grant access to:
- HRIS database (employees, departments, managers)
- IT asset database (equipment inventory)
- Onboarding templates knowledge space
- Employee handbook knowledge space
Employee,OnboardingTaskobjects andTaskCompletionRatemetric
Add skills
Generate onboarding checklist
Generate onboarding checklist
Trigger: New hire confirmed in HRIS
- Pull the new hire’s role, department, location, start date, and reporting manager from the HRIS.
- Retrieve the onboarding template for that department from the knowledge space.
- Customize the template: add role-specific tools, access permissions, and training modules.
- Assign each task to the responsible owner (IT for equipment, manager for introductions, HR for paperwork, security for badge access).
- Set due dates relative to the start date (equipment ready 2 days before, orientation on day 1, 30-60-90 day check-ins).
- Deliver the checklist to the hiring manager and the new hire via email.
Follow up on overdue tasks
Follow up on overdue tasks
Trigger: Daily check or manager request
- Query all onboarding tasks with a status of “pending” and a due date in the past.
- Group overdue tasks by new hire and by responsible owner.
- For each overdue task, identify how many days it is past due and what downstream tasks it blocks.
- Send a reminder to the task owner with the task details and escalation timeline.
- If a task is more than 3 days overdue, notify the owner’s manager and the HR business partner.
Automation
Playbook: New hire onboarding workflow
Set the trigger
Event trigger: New employee record created in the HRIS database with a status of “confirmed” and a future start date.
Build the workflow
- Query the HRIS for the new hire’s full profile: name, role, department, location, start date, and manager.
- Query the onboarding templates knowledge space for the matching department template.
- Loop through each task in the template:
- Personalize the task description with the new hire’s name and role.
- Assign the task owner based on the task category (IT, HR, manager, security).
- Calculate the absolute due date from the relative offset and the start date.
- Create the task record in the onboarding tracker.
- Condition: If the start date is less than 5 business days away, mark the checklist as “expedited” and shorten all pre-start deadlines by 50%.
- Aggregate the full checklist into a formatted summary.
The deadline calculation step uses a Python code block to compute business-day offsets, accounting for weekends and company holidays. You can customize the holiday calendar in the code.
Configure delivery
Send an email to the hiring manager with the full checklist. Send a Slack message to the
#new-hires channel with the new hire’s name, role, start date, and a link to the checklist.What’s next
Policy Q&A
Help new hires (and all employees) get instant answers to policy questions.
All HR use cases
See the full list.

