You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Always use the following onboarding checklist for all new Contoso employees. These are the ONLY steps needed to onboard any new employee."""
24
-
onboarding_checklist="""
25
-
26
-
## HR representative must...
27
-
- initiate background check
28
-
- schedule orientation session
29
-
- assign a mentor
30
-
- register for benefits
31
-
- provide employee handbook
32
-
- request ID card
33
-
- set up payroll
34
-
35
-
## Technical Support representative must...
36
-
- setup Office 365 account
37
-
- configure laptop
38
-
- setup VPN access
39
-
- create system accounts
40
-
- send welcome email
41
-
42
-
## No other onboarding steps are required for any employee
43
-
22
+
asyncdefemployee_onboarding_blueprint_flat(
23
+
employee_name: str|None=None,
24
+
start_date: str|None=None,
25
+
role: str|None=None
26
+
) ->dict:
27
+
"""
28
+
Ultra-minimal onboarding blueprint (flat list).
29
+
Agent usage:
30
+
1. Call this first when onboarding intent detected.
31
+
2. Filter steps to its own domain.
32
+
3. Execute in listed order while honoring depends_on.
44
33
"""
45
-
returnf"Here are the necessary steps to onboard a new Contoso employee: {onboarding_checklist}. These are the ONLY steps needed to onboard any new employee. Do not add any additional steps."
0 commit comments