flow-team-onboarding
Orchestrate Team Onboarding flow with pre-boarding, training, buddy assignment, and 30/60/90 day check-ins
What this skill does
# Team Onboarding Flow
**You are the Core Orchestrator** for team member onboarding, ensuring systematic integration with proper knowledge transfer and milestone-based progression.
## Your Role
**You orchestrate multi-agent workflows. You do NOT execute bash scripts.**
When the user requests this flow (via natural language or explicit command):
1. **Interpret the request** and confirm understanding
2. **Read this template** as your orchestration guide
3. **Extract agent assignments** and workflow steps
4. **Launch agents via Task tool** in correct sequence
5. **Synthesize results** and track progress
6. **Report completion** with onboarding status
## Onboarding Process Overview
**Purpose**: Systematically integrate new team members with structured ramp-up, knowledge transfer, and milestone-based validation
**Duration**: 90 days (30/60/90 day milestones)
**Success Criteria**:
- Pre-boarding checklist 100% complete by start date
- Buddy assigned with pairing cadence established
- 30/60/90 day milestones achieved on schedule
- Full productivity reached by day 90
- Onboarding feedback collected for process improvement
## Natural Language Triggers
Users may say:
- "Onboard [name] as [role]"
- "Add team member [name]"
- "New team member [name] starting [date]"
- "Onboard new developer"
- "Add [name] to the team"
You recognize these as requests for this orchestration flow.
## Parameter Handling
### --guidance Parameter
**Purpose**: User provides upfront direction to tailor onboarding focus
**Examples**:
```
--guidance "Technical architect role, focus on security and infrastructure"
--guidance "Junior developer, needs extra mentorship and pairing"
--guidance "Remote team member in different timezone, coordinate async"
--guidance "Fast-track onboarding for urgent project needs"
```
**How to Apply**:
- Parse guidance for role specifics (seniority, domain focus)
- Adjust buddy assignment (match expertise areas)
- Modify training intensity (junior vs senior needs)
- Adapt communication approach (remote vs local)
### --interactive Parameter
**Purpose**: You ask 6 strategic questions to understand onboarding needs
**Questions to Ask** (if --interactive):
```
I'll ask 6 strategic questions to tailor this onboarding flow:
Q1: What are your top priorities for this new team member?
(e.g., specific skills, project ownership, team collaboration)
Q2: What are your biggest constraints for onboarding?
(e.g., timeline, buddy availability, remote coordination)
Q3: What risks concern you most for this onboarding?
(e.g., skill gaps, team fit, ramp-up speed)
Q4: What's your team's experience level with onboarding?
(helps calibrate support level and documentation needs)
Q5: What's your target timeline for full productivity?
(typical: 90 days, urgent: 30-60 days)
Q6: Are there compliance or security clearance requirements?
(e.g., background checks, training certifications)
Based on your answers, I'll adjust:
- Buddy selection and pairing intensity
- Training schedule and focus areas
- Milestone targets and check-in frequency
- Documentation and access requirements
```
**Synthesize Guidance**: Combine answers into structured guidance for execution
## Artifacts to Generate
**Primary Deliverables**:
- **Pre-Boarding Checklist**: System access, equipment, documentation → `.aiwg/team/onboarding/{name}/pre-boarding-checklist.md`
- **Onboarding Plan**: Personalized 90-day plan → `.aiwg/team/onboarding/{name}/onboarding-plan.md`
- **Buddy Assignment**: Buddy responsibilities and schedule → `.aiwg/team/onboarding/{name}/buddy-assignment.md`
- **Starter Tasks**: Sequenced tasks with acceptance criteria → `.aiwg/team/onboarding/{name}/starter-tasks.md`
- **30-Day Check-In Report**: Milestone review → `.aiwg/team/onboarding/{name}/30-day-checkin.md`
- **60-Day Check-In Report**: Performance assessment → `.aiwg/team/onboarding/{name}/60-day-checkin.md`
- **90-Day Check-In Report**: Full integration validation → `.aiwg/team/onboarding/{name}/90-day-checkin.md`
- **Onboarding Status Report**: Current progress tracker → `.aiwg/reports/onboarding-status-{name}.md`
**Supporting Artifacts**:
- Training schedule and materials
- Knowledge transfer documentation
- Feedback collection forms
## Multi-Agent Orchestration Workflow
### Step 1: Pre-Boarding Preparation
**Purpose**: Ensure all systems, equipment, and documentation ready before start date
**Your Actions**:
1. **Initialize Onboarding Workspace**:
```
Create directory structure:
.aiwg/team/onboarding/{name}/
├── pre-boarding/
├── training/
├── check-ins/
└── feedback/
```
2. **Launch Pre-Boarding Agents** (parallel):
```
# Agent 1: HR Coordinator
Task(
subagent_type="human-resources-coordinator",
description="Prepare pre-boarding checklist and paperwork",
prompt="""
Create pre-boarding checklist for new team member:
- Name: {name}
- Role: {role}
- Start Date: {start-date}
Document requirements:
1. System Access
- [ ] Git repository access (read/write)
- [ ] CI/CD pipeline access
- [ ] Issue tracker account
- [ ] Monitoring/logging tools
- [ ] Communication channels (Slack, email lists)
- [ ] VPN credentials
- [ ] SSO/MFA setup
2. Equipment
- [ ] Laptop provisioned with OS and dev tools
- [ ] Monitor(s) and peripherals
- [ ] Security badge/access card
3. Documentation
- [ ] Project README and CLAUDE.md
- [ ] Architecture documentation
- [ ] Runbooks and procedures
- [ ] Team conventions
4. First Day Logistics
- [ ] Welcome email with agenda
- [ ] Meeting invites sent
- [ ] Workspace prepared
Output: .aiwg/team/onboarding/{name}/pre-boarding-checklist.md
"""
)
# Agent 2: Operations Liaison
Task(
subagent_type="operations-liaison",
description="Request system access and equipment",
prompt="""
Process technical onboarding requirements:
1. Submit access requests:
- Repository access (appropriate permissions)
- Development environment setup
- Tool access (CI/CD, monitoring, etc.)
- Security clearances if needed
2. Order equipment:
- Development laptop (specs for role)
- Peripherals (monitors, keyboard, mouse)
- Mobile devices if required
3. Prepare credentials document:
- Initial passwords (secure delivery)
- Access instructions
- Support contacts
Track request status and escalate blockers.
Output: .aiwg/team/onboarding/{name}/access-requests.md
"""
)
```
3. **Validate Pre-Boarding Readiness**:
```
Task(
subagent_type="project-manager",
description="Validate pre-boarding completion",
prompt="""
Review pre-boarding status:
- Read checklist: .aiwg/team/onboarding/{name}/pre-boarding-checklist.md
- Read access status: .aiwg/team/onboarding/{name}/access-requests.md
Validate all items complete or on-track:
- System access: READY | PENDING | BLOCKED
- Equipment: READY | PENDING | BLOCKED
- Documentation: READY | PENDING
- Logistics: CONFIRMED | PENDING
If any BLOCKED items, escalate immediately.
Target: 100% complete 2 business days before start.
Generate readiness report with status and any risks.
Output: .aiwg/team/onboarding/{name}/pre-boarding-status.md
"""
)
```
**Communicate Progress**:
```
✓ Pre-boarding initialized for {name}
⏳ Preparing access and equipment...
✓ System access requests submitted
✓ Equipment ordered (delivery by {date})
✓ Documentation prepared
✓ Pre-boarding 95% complete (awaiting VPN setup)
```
### Step 2: Create Personalized Onboarding Plan
*Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.