system-prompts-and-models-o.../dealix/auto_client_acquisition/customer_ops/customer_success_cadence.py
Sami Assiri b13cb389cc feat(dealix): sync full Dealix package to repo
- API routers, ACA modules, integrations (draft operators)
- Docs, landing pages, scripts (launch readiness, scorecard)
- Tests and CI workflow updates for Dealix

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-01 21:01:17 +03:00

24 lines
777 B
Python

"""Weekly cadence for pilots (deterministic)."""
from __future__ import annotations
from typing import Any
def build_weekly_cadence() -> dict[str, Any]:
return {
"weekly_touchpoints_ar": [
"مراجعة كروت الموافقة المعلقة.",
"تحديث Proof Pack (مسودات، موافقات، مخاطر ممنوعة).",
"مكالمة قصيرة أو تحديث كتابي مع صاحب القرار.",
"قراءة مؤشرات القنوات (ردود، شكاوى، opt-out = صفر مطلوب).",
],
"metrics_to_track": [
"demos_booked",
"pilots_active",
"drafts_approved",
"risks_blocked",
"proof_events",
],
}