mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-18 15:29:36 +00:00
- 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>
24 lines
777 B
Python
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",
|
|
],
|
|
}
|