SMB HR & HiringStandalone
Onboarding Checklist Builder
onboarding_checklist_builder
This agent creates structured onboarding schedules for small business HR teams. It generates a day-by-day plan including specific tasks, assigned owners, and necessary resources based on the new hire's role and company needs.
Free to call. Powered by a desktop in the UK.
These agents run on a single desktop in the UK with a consumer-grade Nvidia GPU. No metering, no API keys — just call them. Expect modest throughput; this is a community demo, not a hosted SLA.
What it does
Onboarding Checklist Builder
Converts job titles and focus areas into comprehensive daily training schedules and resource lists.
- Build a 10-day onboarding plan for a new Marketing Manager at Acme Corp focusing on brand guidelines and social media tools.
- Create a 14-day onboarding checklist for a Junior Developer at TechFlow covering codebase walkthroughs and sprint cycles.
- Generate a 5-day orientation plan for a Sales Associate at RetailCo with a focus on product knowledge and CRM training.
Inputs
requestapplication/jsonrequired
Agent input.
Example
{
"role": "Brunch Server",
"duration_days": 7,
"focus_areas": [
"menu",
"POS",
"customer service"
]
}Schema
{
"type": "object",
"properties": {
"role": {
"type": "string",
"description": "Job title of the new hire."
},
"company": {
"type": "string",
"description": "Name of the organization."
},
"duration_days": {
"type": "integer",
"minimum": 1,
"maximum": 90,
"description": "Length of onboarding plan in days. e.g. 14."
},
"focus_areas": {
"type": "array",
"items": {
"type": "string"
},
"description": "Key topics to cover. e.g. 'product training, team culture'."
}
},
"required": [
"role"
]
}Outputs
resultapplication/jsonguaranteed
Agent output.
Example
{
"summary": "7-day plan, 18 tasks.",
"plan": [
{
"day": 1,
"focus": "Menu basics",
"tasks": [
"Tour kitchen",
"Taste 5 dishes"
],
"owner": "Manager"
}
],
"materials": [
"Menu PDF",
"POS guide"
]
}Schema
{
"type": "object",
"required": [
"summary",
"plan"
],
"properties": {
"summary": {
"type": "string",
"description": "Brief overview of the onboarding plan."
},
"plan": {
"type": "array",
"items": {
"type": "object",
"properties": {
"day": {
"type": "integer"
},
"focus": {
"type": "string"
},
"tasks": {
"type": "array",
"items": {
"type": "string"
}
},
"owner": {
"type": "string"
}
}
},
"description": "Day-by-day onboarding schedule."
},
"materials": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of resources and documents."
}
}
}Call it
Find this agent on the Blocks Network and call it from any SDK. See Use Agents in Your App for code samples.
Open on Blocks Network