This is a sample report. Start your own assessment below. Start Your Assessment →
← All use cases
HR & recruitment

Access, training, documents to sign and intro meetings, all triggered by one action.

What the audit checks

Onboarding is held together by a checklist in one person head, and something always gets forgotten. The audit maps how many systems need touching, which of them have APIs, and what can fire without anyone clicking through it.

FULLVISION Assessment Report

Automated employee onboarding

01 January 2026

01/Recommendation
Recommended path

AI Workflow

AI workflow with human checkpoints will automate routine onboarding while routing exceptions to HR for judgment.

AI workflow is the best fit for this process. The client has no stated tech stack preference, and this approach handles the core challenge: almost every onboarding has something unusual. An AI workflow can orchestrate the routine steps across multiple systems, interpret variations in role requirements, and intelligently route exceptions to the HR team. Traditional RPA would break on the high exception rate, and a full AI agent lacks the necessary guardrails for GDPR-sensitive employee data. The workflow can automate 60 to 70 percent of the work while keeping humans in the loop for judgment calls, delivering meaningful time savings without requiring the HR system API upgrade immediately.

The client did not state a preferred tech stack, so the recommendation is based purely on process fit and can be implemented on any modern workflow platform.

02/Process Overview

Process Overview

When the organization decides to hire a new employee, the HR manager and assistant begin a multi-step onboarding process that touches several systems and stakeholders. They create an employee record in the HR SaaS system, coordinate with IT to provision accounts and access permissions, schedule mandatory training sessions, send employment documents for electronic signature, and book introduction meetings with team members and managers. Each onboarding takes roughly three hours of coordination work spread across email, spreadsheets, and manual data entry. The process runs about sixty times per year, and almost every case has something unusual: a role with non-standard access needs, a department with specific training requirements, or an exception that requires judgment from HR. The end outcome is a new employee who has all necessary access, signed paperwork, scheduled training, and introduction meetings in place before their first day.

03/Path Scores

Path Scores

AI Workflow Recommended
9/10

This process needs orchestration across multiple systems with intelligent exception handling. An AI workflow can parse new hire details, determine required access and training, trigger actions in connected systems, and route unusual cases to HR for review. The high exception rate and compliance requirements make structured workflow with human gates ideal.

AI Agent + human review
8/10

Very similar to AI workflow in practice. The distinction is minor here since the recommended AI workflow already includes human checkpoints. This would work equally well but is essentially the same solution with different labeling.

RPA
5/10

RPA could automate the routine steps but would struggle with the high exception rate and lack of standardization. Every unusual case would require manual intervention or complex branching logic. Without the HR API, screen automation would be brittle and maintenance-heavy.

Traditional Code Not recommended
4/10

Building a custom integration would require the HR API upgrade and significant development effort for a single-person IT team that also handles support. The exception handling logic would be hard to maintain as requirements evolve, and the ROI is weak at 60 cases per year.

AI Agent Not recommended
3/10

An autonomous agent is too risky for GDPR-sensitive employee data and access provisioning. The compliance requirements and potential for costly errors in access permissions make unsupervised AI inappropriate. Human oversight is essential for this process.

Stay Manual Not recommended
2/10

The current manual approach is failing. Steps are forgotten, knowledge sits in people's heads, and 180 hours per year are spent on repetitive coordination. The client explicitly wants to automate routine cases and free HR for exception handling.

04/Process Dimensions

Process Dimensions

Eight dimensions drive the recommendation, scored 0–10 with a note on each.

Data Structure 6/10

Data is scattered across HR system, email, and spreadsheets with no single source of truth, but the core employee data fields are likely structured.

Rule Clarity 5/10

The routine steps are clear, but almost every case has something unusual and judgment calls are frequent, indicating rules are not fully codified.

Exception Frequency 3/10

Almost every onboarding has something unusual, making exceptions the norm rather than rare edge cases.

Integration Readiness 4/10

HR system API exists but requires a tier upgrade, IT systems integration is unclear, and current state relies on manual handoffs.

Volume / ROI 6/10

60 cases per year at 180 minutes each equals 180 hours annually, a moderate volume that justifies low-code automation but not heavy custom development.

Process Stability 7/10

HR onboarding processes are relatively stable, though role-specific requirements and organizational changes will require periodic updates.

Human Judgment Required 7/10

Frequent judgment calls about access permissions, training needs, and exception handling mean humans must remain in the loop for non-routine cases.

Compliance Requirements 8/10

GDPR for employee data, works council consultation, and AI Act considerations create significant compliance obligations that require careful handling and audit trails.

05/ROI Estimate

ROI Estimate

€4,500

Current annual cost

65%

Estimated time saved

€2,925

Annual savings

4mo

Payback period

Build cost estimate: €8,000 – €15,000

Current cost is 60 onboardings per year times 180 minutes each, divided by 60 to get 180 hours, times 25 EUR per hour equals 4500 EUR annually. Automation can realistically save 65 percent by handling routine steps, leaving exceptions and oversight to HR. Build cost reflects low-code workflow platform setup, integration work, and iteration with a small team.

06/Implementation Roadmap

Implementation Roadmap

1
Map and document the current process 1-2 weeks

Work with the HR team to document all onboarding steps, decision rules, and exception types. Identify which steps are truly routine versus which require judgment. This creates the blueprint for automation and clarifies where human gates are needed.

2
Select workflow platform and build proof of concept 2-3 weeks

Choose a low-code AI workflow platform that supports GDPR compliance and can integrate with the existing HR system. Build a proof of concept covering one or two routine onboarding scenarios end to end, including document generation and email notifications. Validate with HR team.

3
Implement exception detection and routing logic 2-3 weeks

Add AI-powered logic to detect unusual cases based on role type, department, or missing information, and route these to the HR team for review. Build a simple dashboard where HR can see pending cases and approve or modify automated actions. This is the core value delivery.

4
Integrate with IT systems and HR API 3-4 weeks

Connect the workflow to IT provisioning systems for access creation. Evaluate whether upgrading to the HR API tier is justified by reduced manual data entry. If not, use email or form-based handoffs initially and revisit later.

5
Pilot with live onboardings and iterate 4-6 weeks

Run the workflow in parallel with manual process for 5 to 10 onboardings. Collect feedback from HR team on accuracy, exception handling, and usability. Refine rules and add missing edge cases. Ensure GDPR compliance and audit logging are working.

6
Full rollout and handover 1-2 weeks

Switch to workflow as primary method for all new onboardings. Train HR team on monitoring dashboard and handling escalated exceptions. Document the system for future maintenance and establish a quarterly review cycle to update rules as the organization evolves.

07/Risks & Considerations

Risks & Considerations

The biggest risk is underestimating the variety of exceptions. If almost every case truly requires human judgment, automation savings will fall short of the estimate and the HR team may find the workflow adds overhead rather than removing it. GDPR compliance is critical: any automated processing of employee data must have clear legal basis, audit trails, and data protection safeguards built in from day one. If the workflow makes an error in access provisioning, it could create security or privacy breaches. Start with a narrow scope, validate that the routine cases are genuinely routine, and expand only after proving the exception detection logic works reliably. Human oversight must remain mandatory for access permissions and any decisions that affect employee rights or data.

08/Architecture Overview

Architecture Overview

flowchart TD Start([New hire decision]) Start --> Workflow[AI workflow receives details] Workflow --> Check{Routine or exception?} Check -->|Routine| Auto[Automate steps] Check -->|Exception| HR[Route to HR review] Auto --> HRSys(HR system) Auto --> IT(IT provisioning) Auto --> Docs[Send documents] Auto --> Calendar[Book meetings] HR --> Approve{Approved?} Approve -->|Yes| Auto Approve -->|No| Manual[HR handles manually] Docs --> Complete Calendar --> Complete Manual --> Complete Complete([Onboarding complete]) subgraph External HRSys IT end

Hover to zoom · click for fullscreen

09/Why This Approach

Why This Approach

AI Workflow is the right fit for this onboarding process because it solves the core challenge: high variability with frequent exceptions. The client has no stated technology stack preference, so the recommendation is based purely on what the process needs. Almost every onboarding has something unusual, which rules out traditional RPA. Robotic process automation works well when steps are identical every time, but it breaks down when the logic has to interpret role-specific requirements or decide whether a case needs human review. You end up maintaining a brittle system that escalates constantly.

An AI workflow platform can orchestrate the routine steps, provision accounts, send documents, and schedule meetings, while also interpreting variations in role requirements and intelligently routing exceptions to the HR team. The workflow acts as the coordination layer across the HR system, IT provisioning, email, and calendar tools. When it encounters an unusual case, it flags it for human review instead of guessing. This keeps compliance tight and avoids the risks of unsupervised automation in a GDPR-sensitive domain. Human oversight remains mandatory for access permissions and any decisions affecting employee data, which is exactly what the compliance requirements demand.

The AI agent path scores lower because autonomous decision-making is inappropriate here. Provisioning the wrong access or mishandling employee data creates real liability, and the works council consultation and AI Act considerations add further constraints. A workflow with explicit human gates gives you the efficiency gains without the risk exposure. The hybrid path scores nearly as high, but in practice it is the same solution with different labeling, since the recommended AI workflow already includes human checkpoints.

Traditional custom code would require upgrading the HR system to the API tier and significant development effort for a single IT team that also handles support. At sixty onboardings per year, the return on investment does not justify custom build and ongoing maintenance. A low-code workflow platform delivers the same outcome faster and keeps the logic visible and editable by the HR team as requirements evolve. The process will change as the organization grows, and a workflow platform makes those updates straightforward without waiting for developer time.

The realistic savings estimate is sixty-five percent of current effort, automating the routine coordination while keeping humans in the loop for judgment calls. If the exception rate turns out to be even higher than expected, the savings will be lower, but the workflow still adds value by structuring the process, ensuring nothing is forgotten, and creating an audit trail. The alternative is staying manual, which is failing now and will only get worse as hiring volume increases.

10/Comparing the Top Approaches

Comparing the Top Approaches

The top contenders for this onboarding process are AI Workflow and Hybrid, with scores of 9 and 8 respectively. In practice, these two approaches are nearly identical for this use case. Both involve orchestrating tasks across multiple systems while routing exceptions to humans for judgment. The recommended AI Workflow path emphasizes structured orchestration with intelligent decision points built into the flow itself, detecting unusual cases based on role type, missing data, or non-standard requirements and escalating them automatically. The Hybrid label describes essentially the same architecture, just framed as combining automation with human gates. Since the recommended solution already includes mandatory human checkpoints for access permissions and exception handling, the distinction is semantic rather than technical.

RPA scores lower at 5 because it struggles with the core challenge here: almost every onboarding has something unusual. Traditional RPA thrives on highly standardized, repetitive tasks with minimal variation. This process has frequent exceptions, judgment calls about which access permissions are needed, and decisions about training requirements that vary by role and department. An RPA bot could handle the mechanical steps like filling forms and sending emails, but it would either break on exceptions or require extensive branching logic that becomes a maintenance nightmare. Without access to the HR system API on the current subscription tier, RPA would rely on brittle screen automation that breaks whenever the interface changes.

AI Agent scores only 3 because autonomous operation is inappropriate for GDPR-sensitive employee data and access provisioning. An unsupervised agent making decisions about who gets access to which systems, or automatically signing employees up for training without human verification, creates unacceptable compliance and security risks. The AI Workflow approach delivers the intelligence needed to interpret variations and route decisions, but keeps humans firmly in control of sensitive actions. Traditional Code scores 4 because building a custom integration would require the API tier upgrade, significant development effort, and ongoing maintenance that is hard to justify for 60 cases per year. The current manual approach scores lowest at 2 because it is visibly failing, with steps forgotten and knowledge trapped in people's heads.

11/How to Build It

How to Build It

The recommended implementation uses a low-code AI workflow platform like Make, Zapier with AI features, or n8n to orchestrate the entire onboarding sequence. When a new hire decision is made, the trigger can be an email notification, a form submission, or a webhook from the HR system if that integration becomes available later. The workflow starts by parsing the new hire details using natural language processing to extract role, department, start date, and any special requirements mentioned in the trigger message. It then creates or updates the employee record in the HR system, either through API calls if the tier is upgraded or through structured email handoffs to the HR assistant if not.

Next, the workflow evaluates which IT access permissions and training modules are required based on the role. This is where AI adds value over traditional RPA. Instead of rigid if-then rules, the system can match the role description against a library of standard profiles and flag any ambiguities or unusual requests for human review. For routine cases that match known patterns, it automatically generates provisioning requests and sends them to IT systems via email, ticketing system integration, or direct API calls where available. It schedules training sessions by checking availability in the training calendar system and sends calendar invites. It generates onboarding documents using templates, sends them to a digital signature platform like DocuSign or PandaDoc, and tracks completion status.

Throughout the process, the workflow maintains a simple dashboard where the HR team can see all active onboardings, their status, and any items flagged for review. When the AI detects an exception, such as a role it has not seen before, conflicting information in the trigger data, or a request that falls outside normal parameters, it pauses that part of the workflow and notifies the HR manager. The manager reviews the case in the dashboard, makes a decision, and the workflow continues. All actions are logged for GDPR audit purposes, and the system enforces mandatory human approval for access provisioning and any data processing that could affect employee rights.

The beauty of this approach is that it does not require the HR API upgrade immediately. You can start with email-based handoffs and form submissions, prove the value with real onboardings, and then decide whether the API investment is justified by the time savings. As the system learns from more cases and the HR team refines the exception detection rules, the automation rate improves over time. Integration with IT systems can be phased in gradually, starting with the easiest connections and adding more as the workflow matures.

12/Risks in Detail

Risks in Detail

The biggest risk is that the exception rate is even higher than expected. The assessment notes that almost every onboarding has something unusual, which already puts the process at the edge of automation viability. If the reality is that truly routine cases are rare and most onboardings require significant judgment, the workflow could end up adding overhead rather than removing it. The HR team would spend their time reviewing flags and approving steps in a dashboard instead of just doing the work directly, and the promised time savings would not materialize. This risk is manageable by starting with a narrow scope, running a genuine pilot with 5 to 10 onboardings, and honestly measuring whether the automation is saving time or creating friction. If the pilot shows that 70 percent of cases require human intervention at multiple steps, the recommendation should be revisited.

GDPR compliance is critical and non-negotiable. Any automated processing of employee data must have a clear legal basis, typically either contractual necessity for employment or legitimate interest with appropriate safeguards. The workflow must include audit logs showing who approved what actions and when, and employees must be informed that their onboarding is partially automated. If the AI component makes inferences about training needs or access permissions based on role descriptions, that could constitute automated decision-making under GDPR Article 22, which has strict limitations. The safest approach is to treat the AI as a recommendation engine only, with mandatory human approval for any action that affects employee rights, access, or data. Access provisioning errors are particularly dangerous because they can create security breaches or privacy violations. An employee accidentally given access to sensitive financial data or another department's files because the workflow misunderstood their role creates both compliance and operational risk. Human oversight must remain mandatory for access permissions, and the IT team should have a verification step before activating any new accounts.

Claude Code Starter

A scaffolded project ready to open in Claude Code. Unzip, open the folder, and Claude starts building immediately.

Claude Code Starter (.zip)

Your own assessment includes a ready-to-use project scaffold: CLAUDE.md, pyproject.toml, src/agent.py and .env.example. Open the folder in Claude Code and it starts building.

📁 your-process/
📄 CLAUDE.md
📄 pyproject.toml
📁 src/agent.py
📄 .env.example
Start Your Assessment

What's next?

That was someone else's process. Now do yours.

Same six paths, same eight dimensions, same honest verdict, except scored against how your team actually works. Five to eight questions, about fifteen minutes.

Start Your Assessment
HR & recruitment
AI CV screening against the job ad Exit interview and feedback analysis Tracking expiring contracts and certificates
Illustrative scenario based on how these processes typically run. Not a customer case study. Run this on your own process