system-prompts-and-models-o.../salesflow-saas/ai-agents/booking/auto-booking-config.json
Claude 5f3b0b9a20
Migrate SalesMatic to Dealix + Add complete affiliate recruitment & AI sales system
- Rename all SalesMatic references to Dealix (ديل اي اكس) across frontend, backend, configs, and SVG logos
- Add complete automated affiliate recruitment system with:
  - Job posting templates (Arabic/English) with ad variations for social media, LinkedIn, job boards
  - Full onboarding package: welcome guide, company profile, step-by-step guide, FAQ (60+ Q&A), targets & earnings
  - Sales scripts: phone calls, WhatsApp, in-person, email templates, objection handling (15+), closing techniques
  - Targeting guides: social media, AI tools, Google, LinkedIn, local business, referral strategies
  - Legal agreements: freelance contract, employment offer (10+ deals/month auto-hire), commission structure
  - AI chatbot for affiliates: config, knowledge base, conversation flows
- Add professional sector presentations for 10 industries (healthcare, real estate, restaurants, retail, education, beauty, automotive, legal, construction, e-commerce)
- Add Gold Guarantee system (30-day full refund) with terms and conditions
- Add AI Sales Agents system: lead generation, WhatsApp/voice/email outreach, lead scoring, auto-booking
- Add backend: Affiliate & AI Conversation models, API endpoints, Celery worker tasks
- Update landing page with Gold Guarantee, Affiliate CTA, and AI Agents sections

https://claude.ai/code/session_01KnJgK7RwyeCvRZTRThHtfU
2026-03-30 15:49:58 +00:00

65 lines
2.1 KiB
JSON

{
"system": "dealix-auto-booking",
"version": "1.0",
"timezone": "Asia/Riyadh",
"meeting_types": {
"demo": {
"name_ar": "عرض تجريبي",
"duration_minutes": 30,
"description_ar": "عرض مباشر لمنصة Dealix مع تجربة حية",
"priority": "high",
"auto_confirm": true
},
"consultation": {
"name_ar": "استشارة مجانية",
"duration_minutes": 15,
"description_ar": "استشارة سريعة لفهم احتياجات العميل",
"priority": "medium",
"auto_confirm": true
},
"custom_presentation": {
"name_ar": "عرض مخصص",
"duration_minutes": 45,
"description_ar": "عرض مخصص لقطاع العميل مع تحليل احتياجات",
"priority": "high",
"auto_confirm": false
},
"follow_up": {
"name_ar": "متابعة",
"duration_minutes": 15,
"description_ar": "اجتماع متابعة بعد التجربة المجانية",
"priority": "medium",
"auto_confirm": true
}
},
"availability": {
"working_days": ["sunday", "monday", "tuesday", "wednesday", "thursday"],
"working_hours": {"start": "09:00", "end": "17:00"},
"break_time": {"start": "12:00", "end": "13:00"},
"buffer_minutes": 15,
"max_meetings_per_day": 8,
"advance_booking_days": 14,
"minimum_notice_hours": 2
},
"notifications": {
"client": {
"confirmation": {"channel": ["whatsapp", "email"], "template": "booking_confirmed"},
"reminder_24h": {"channel": ["whatsapp"], "template": "booking_reminder_24h"},
"reminder_1h": {"channel": ["whatsapp"], "template": "booking_reminder_1h"}
},
"sales_rep": {
"new_booking": {"channel": ["whatsapp", "email"], "include_lead_summary": true},
"reminder_15min": {"channel": ["whatsapp"]}
}
},
"assignment_rules": {
"method": "round_robin",
"fallback": "least_busy",
"specialization": {
"healthcare": ["rep_1", "rep_2"],
"real_estate": ["rep_2", "rep_3"],
"default": ["rep_1", "rep_2", "rep_3"]
}
}
}