Client Onboarding Automator
by @merjua14
Automates client onboarding from inquiry to project start, handling intake, contract creation, payment, welcome emails, and project setup.
clawhub install client-onboarding-automatorπ About This Skill
Client Onboarding Automator Skill
Automate the entire client onboarding workflow β from initial inquiry to project kickoff. Handles intake forms, contract generation, payment collection, welcome sequences, and project setup.
What This Skill Does
1. Intake Processing β Captures new client info from email/form submissions 2. Contract Generation β Creates service agreements from templates 3. Payment Collection β Sends Stripe payment links automatically 4. Welcome Sequence β Sends onboarding email series (day 0, 1, 3, 7) 5. Project Setup β Creates folders, tasks, and checklists for new clients 6. CRM Update β Logs client details in your tracking system
Trigger
When a new inquiry arrives (email matching pattern, form webhook, or manual trigger):
New client: [name] | [email] | [service] | [budget]
Workflow
Step 1: Intake
Parse the incoming inquiry and extract:Step 2: Auto-Response (Immediate)
Send a personalized acknowledgment email:Subject: Thanks for reaching out, [Name]! Here's what happens nextHi [Name],
Thanks for your interest in [service]. I've received your inquiry and here's what to expect:
1. I'll review your requirements (within 2 hours)
2. You'll receive a proposal with pricing
3. Once approved, we kick off immediately
In the meantime, here's a quick questionnaire to help me prepare:
[Link to intake form]
Best,
[Your name]
Step 3: Proposal Generation
Create a proposal document with:Step 4: Contract + Payment
Once proposal is accepted:Step 5: Welcome Sequence
After payment:Step 6: Project Setup
Configuration
{
"business_name": "Your Business Name",
"from_email": "hello@yourdomain.com",
"reply_to": "you@yourdomain.com",
"stripe_key": "sk_live_...",
"services": {
"basic": { "name": "Basic Package", "price": 497, "description": "..." },
"pro": { "name": "Pro Package", "price": 997, "description": "..." },
"enterprise": { "name": "Enterprise", "price": 2497, "description": "..." }
},
"welcome_sequence_delays": [0, 1, 3, 7]
}
Requirements
βοΈ Configuration
{
"business_name": "Your Business Name",
"from_email": "hello@yourdomain.com",
"reply_to": "you@yourdomain.com",
"stripe_key": "sk_live_...",
"services": {
"basic": { "name": "Basic Package", "price": 497, "description": "..." },
"pro": { "name": "Pro Package", "price": 997, "description": "..." },
"enterprise": { "name": "Enterprise", "price": 2497, "description": "..." }
},
"welcome_sequence_delays": [0, 1, 3, 7]
}