Workflows· People & Organization

    The Onboarding Track

    A workflow that automatically creates a position specific onboarding checklist for the first 30, 60 and 90 days when a new employee is added to the HR system, generates tasks from it in the project tool, and notifies the manager and IT in good time.

    automatingplanningwriting

    Description

    Steps

    Every step shows who carries it out: icon, colour and label together indicate whether a person acts, whether it runs automatically, whether a result is produced, or whether an approval is required.

    01Person

    A new employee is added to the HR system with status active or upcoming, which starts the process.

    02Automated

    03Automated

    04Automated

    05Automated

    06Approval

    Key
    PersonAutomatedResultApproval

    Requirements and operations

    Requirements

    • HR system Personio, BambooHR or comparable, supplies role, team, start date and location.
    • Project tool Asana, Trello or Monday for tasks with due dates.
    • Team chat Slack, Teams or Discord to notify the manager and IT.
    • LLM access An API key for OpenAI, Claude or Gemini.

    Testing

    • Test employee Set up a complete test data set with role, team and start date.
    • Checklist and tasks Check whether 15 to 25 tasks are generated across the four categories, with the right owner and due dates.
    • Notifications Check whether the manager and IT receive the message with the project link in the respective channel.
    • Edge cases Test a case without a start date, a remote case in a different time zone, an international hire, and several employees added at the same time.

    Go-live

    • Approval to start Activate the workflow only once the checklist, tasks and notifications are reliably correct.
    • Team start Start with a single team and use its standard task list as the baseline.
    • Review Check the generated checklists monthly and refine the prompt where needed.
    • Extend Add calendar entries, a welcome email, a buddy system or a feedback survey as needed.

    Common issues

    • Webhook does not fire Check the event type, URL and token in the HR system.
    • Tasks without a due date Validate the date calculation from the start date and the day count.
    • LLM output cannot be parsed Enforce the JSON format strictly in the prompt.
    • Tasks end up in the wrong project Check the target board and permissions.

    Builder Prompt

    GOAL
    Build a workflow that automatically generates a position specific onboarding checklist covering the first 30, 60 and 90 days whenever a new employee is added to the HR system, creates tasks from it in the project tool, and notifies the manager and IT.
    
    Adapt the structure to the concepts of your automation tool (for example nodes, steps, zaps or agent actions). While doing so, preserve the trigger logic, the sequence and the data flow.
    
    TRIGGER
    Type: webhook or native integration with your HR system (Personio, BambooHR or comparable).
    Condition: new employee with status active or upcoming.
    
    STEPS
    1. Load data: pull name, role, team, location and start date from the HR system.
    2. AI step: generate checklist. Use exactly the Onboarding Checklist working prompt (see the Working Prompts section). Output: a JSON array with 15 to 25 tasks across the four categories IT, HR, role specific and team.
    3. Create tasks: for each entry in the JSON array, create a task in the project tool, with the category as a label or section, the owner via the assignee to person or team mapping (IT, manager, HR or employee), and the due date calculated from the start date plus the day count.
    4. Notify: inform the manager and IT in the team chat with the key data (name, role, start date) and a link to the project.
    5. Manual step outside the workflow: the manager reviews the checklist before the start date and adds to it where needed.
    
    PROMPTS
    Take over the Onboarding Checklist working prompt from the section of the same name unchanged. Do not alter the placeholders it contains, and map them as described in the data flow.
    
    DATA FLOW
    Trigger to step 1: new employee in the HR system.
    Step 1 to step 2: name, role, team, start date and location.
    Step 2 to step 3: JSON array with task, category, due_days and assignee.
    Step 1 to step 3: start date for calculating the due date.
    Step 3 to step 4: link to the project or board that was created.
    
    ERROR HANDLING
    Webhook does not fire: check the event type, URL and token in the HR system.
    Start date is missing: do not create tasks without a due date, notify HR instead and pause the run.
    LLM output cannot be parsed: retry once, then report the error to HR instead of an incomplete checklist.
    Tasks end up in the wrong project: check the target board and permissions.
    Several employees added at the same time: process each run in isolation, do not mix checklists.
    
    PLACEHOLDER CONVENTION
    All placeholders in square brackets inside the working prompt are fully mapped dynamically from the HR system, as described in the data flow. There are no placeholders that require manual configuration in the prompt itself. Only the system access credentials, the target project and the mapping of assignee to concrete people or teams are configured manually.
    
    SELF CHECK BEFORE COMPLETION
    Check, before you report the workflow as finished:
    1. Is the trigger connected correctly and does it fire only for new employees with status active or upcoming?
    2. Is the working prompt inserted in full and unchanged, and are all HR fields mapped?
    3. Are the due dates calculated correctly, start date plus the day count, and are owners assigned correctly?
    4. Are all points listed that require manual configuration: the HR webhook, the target project in the project tool, the owner mapping, the notification channels, and LLM access?

    Working prompts

    Onboarding Checklist

    Creates a structured checklist with 15 to 25 tasks from the loaded employee data.

    You are an HR onboarding expert who creates detailed onboarding checklists for new employees.
    
    Create an onboarding checklist for the following new employee:
    
    Name: [EMPLOYEE_NAME]
    Position: [POSITION]
    Department: [DEPARTMENT]
    Start date: [START_DATE]
    Location: [LOCATION]
    
    Task:
    Create a structured onboarding checklist with tasks for the first 30, 60 and 90 days. Take the specific requirements of the position and department into account.
    
    Format:
    Return the tasks in the following JSON format:
    [
      {
        "task": "Task description",
        "category": "IT/HR/Role specific/Team",
        "due_days": Number of days after start,
        "assignee": "IT/Manager/HR/Employee"
      }
    ]
    
    Cover the following categories:
    - IT setup: hardware, software, access
    - HR formalities: contracts, training, benefits
    - Role specific induction: position specific
    - Team integration: meetings, introductions
    
    Make sure the tasks are realistically distributed and prioritized.

    JSON export

    Setup

    Two routes lead to the same result. Pick the one that fits your setup.

    Suitable when you want to build the workflow in your own automation tool.

    1. Open your workflow tool, for example n8n, Make, Zapier or Langdock.
    2. Create a new workflow and give it a name.
    3. Choose the AI-assisted build option if your tool offers one.
    4. Paste the builder prompt from above in full.
    5. Check the result against the step sequence in this document, then add your access credentials and channels.

    Suitable when you want to take the workflow over unchanged.

    1. Download the JSON file from the JSON export section.
    2. Open the workflow area of your tool and create a new workflow.
    3. Give it a name and confirm.
    4. Open the menu on the workflow name and choose to import a JSON file.
    5. Upload the file, then add your own access credentials.
    6. Run a test before you activate the workflow.

    Last reviewed:

    In the workshop this becomes your method.

    A single prompt becomes a repeatable method. We show that in the workshop From Prompt to Method.

    View workshops

    Related resources

    Browse all resources

    Conversation, not pitch

    Understand first, then decide. We take time for an initial conversation, without sales pressure, without obligation.

    Schedule a call