mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-17 23:09:35 +00:00
Targeting & Acquisition OS (16 modules) — نظام الاستهداف الذكي - account_finder: account-first targeting; 12 buying signals; deterministic 10-25 accounts per (sector, city) - buyer_role_mapper: 14 buyer roles + sector-specific buying-committee maps + role-based Arabic angles - contact_source_policy: 12 sources (crm_customer→opt_out) with risk_score, channels-allowed, retention guidance, lawful_basis - contactability_matrix: 5 action modes (suggest_only/draft_only/approval_required/approved_execute/blocked); opt-out always blocked - linkedin_strategy: Lead Forms + Ads + manual ONLY; linkedin_do_not_do() locks scrape/auto-DM/auto-connect/extensions - email_strategy: drafts + unsubscribe footer + domain-pacing (fresh/warmed/trusted/damaged) + spam-trigger risk - whatsapp_strategy: opt-in only; rejects cold + risky phrases; opt-in template requires explicit purpose+company+unsubscribe - social_strategy: official APIs only; listening + drafts; no auto-publish - outreach_scheduler: day-by-day plans + daily limits + opt-out enforcement - reputation_guard: bounce/complaint/opt-out thresholds → healthy/watch/pause + recovery actions per channel - daily_autopilot: Arabic brief + 7 today actions + EOD report - acquisition_scorecard: pipeline + meetings + risks + productivity_score - self_growth_mode: 5 ICP focuses for Dealix; daily brief + monthly targets - free_diagnostic: Free Growth Diagnostic (3 ops + msg + risk + plan) → paid pilot recommendation - contract_drafts: Pilot/DPA/Referral/Agency/SOW outlines (legal_review_required, PDPL-aware) - service_offers: 7 targeting-tier offers + recommend by customer-type Service Tower (8 modules) — برج الخدمات الذاتية (12 productized services) - service_catalog: 12 services with target_customer/outcome/inputs/workflow/deliverables/pricing/risk/proof/upgrade - service_wizard: deterministic recommend (agency→partner; list→list_intelligence; founder→self_growth; CEO→exec_brief; budget≥2999→growth_os; default→first_10) - mission_templates: workflow steps with approval gates + linked growth missions - pricing_engine: SAR quotes scaled by company_size×urgency×channels_count + setup_fee + monthly_offer - deliverables: client report outline + proof pack template + operator checklist (no live actions) - service_scorecard: 0..100 score from drafts/replies/meetings/pipeline/CSAT - whatsapp_ceo_control: daily brief, approval cards (≤3 buttons), risk alerts, EOD reports - upgrade_paths: deterministic next-service recommendation + Arabic upsell messages Service Excellence OS (8 modules) — مصنع الخدمات الممتازة - feature_matrix: 12 must-have features per service + advanced/premium/future tiers - service_scoring: 10-dimension excellence score (clarity, speed_to_value, automation, compliance, proof, upsell, uniqueness, scalability, ops_daily, proof_data) → launch_ready/beta_only/needs_work - quality_review: 4 gates (proof / approval / pricing / channels) + status verdict; review_service_before_launch and review/all - competitor_gap: 7 competitor categories (CRM, WhatsApp tools, email assistants, LinkedIn tools, agencies, revenue intelligence, generic AI) + Dealix advantages + do-not-copy - proof_metrics: required metrics + ROI estimate (pipeline_x + closed_won_x) + Arabic summary - research_lab: monthly brief + feature hypotheses + top-3 experiments + monthly review - service_improvement_backlog: feedback→backlog conversion + impact/effort prioritization + weekly improvements - launch_package: landing outline + sales script + 12-min demo script + 5-day onboarding checklist Routers (3 new) — 62 endpoints - /api/v1/targeting/* — 20 endpoints (accounts, buying-committee, contacts, uploaded-list, outreach, daily-autopilot, self-growth, reputation, linkedin, drafts, free-diagnostic, services, contracts) - /api/v1/services/* — 20 endpoints (catalog, recommend, intake, start, workflow, deliverables, proof-pack, quote, setup-fee, monthly-offer, scorecard, upgrade-path, ceo daily-brief/approval-card/risk-alert/EOD) - /api/v1/service-excellence/* — 22 endpoints (feature-matrix, score, quality-review, review/all, proof-metrics, roi-estimate, gap-analysis, research-brief, hypotheses, experiments, monthly-review, backlog, weekly-improvements, launch-package, landing/sales/demo/onboarding) Tests (3 new files, 105 tests) - test_targeting_os: 47 tests (Arabic accounts, buying committees, opt-out blocked, cold WA blocked, LinkedIn no-scraping, email unsubscribe, WA risk, outreach plan, reputation guard, self-growth, contracts, scorecard) - test_service_tower: 38 tests (12+ services, all have pricing/proof/deliverables/approval, wizard recommendations, workflow includes approval, quote scales, CEO cards ≤3 buttons, no live send) - test_service_excellence: 33 tests (feature matrix, score returns status, ALL services pass quality gates, ROI x-multiples, 7 competitor categories, hypotheses+experiments, backlog conversion, launch package complete, demo=12min) Docs (3 new + 1 updated) - TARGETING_ACQUISITION_OS.md (Arabic) - SERVICE_TOWER_STRATEGY.md (Arabic) - SERVICE_EXCELLENCE_OS.md (Arabic) - DEALIX_100_PERCENT_LAUNCH_PLAN.md — added §36 Targeting OS + §37 Service Tower + §38 Service Excellence + §39 Landing Pages Landing pages (4 new, RTL Arabic) - services.html — 3 doors + 12 productized services - free-diagnostic.html — free growth diagnostic - first-10-opportunities.html — kill feature - agency-partner.html — agency partner program Test results - 105/105 new tests pass - Full suite: 768 passed, 2 skipped - 0 existing tests broken Safety + integration with previous layers - Targeting OS uses contactability_matrix → ALL contacts gated before any send - Service Tower's workflow includes approval gate; ALL services live_send_allowed=False - Service Excellence quality_review BLOCKS launch on missing proof/approval/pricing/unsafe channels - linkedin_do_not_do() encodes 8 explicit prohibitions (scraping/auto-DM/auto-connect/extensions) - whatsapp_do_not_do() blocks cold sends + group scraping - Contracts always: legal_review_required=True, not_legal_advice=True, PDPL sections present - Self-Growth Mode lets Dealix target its OWN ICP using the same approval-first pipeline Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
208 lines
6.2 KiB
Python
208 lines
6.2 KiB
Python
"""
|
|
FastAPI application entry point.
|
|
نقطة دخول تطبيق FastAPI.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from collections.abc import AsyncIterator
|
|
from contextlib import asynccontextmanager
|
|
|
|
from fastapi import FastAPI, Request
|
|
from fastapi.middleware.cors import CORSMiddleware
|
|
from fastapi.responses import JSONResponse
|
|
|
|
from api.middleware import RequestIDMiddleware
|
|
from api.routers import (
|
|
admin,
|
|
agent_observability,
|
|
agents,
|
|
automation,
|
|
autonomous,
|
|
business,
|
|
command_center,
|
|
connector_catalog,
|
|
customer_success,
|
|
data,
|
|
dominance,
|
|
drafts,
|
|
ecosystem,
|
|
email_send,
|
|
full_os,
|
|
growth_curator,
|
|
growth_operator,
|
|
health,
|
|
innovation,
|
|
intelligence_layer,
|
|
leads,
|
|
meeting_intelligence,
|
|
model_router,
|
|
outreach,
|
|
personal_operator,
|
|
platform_services,
|
|
pricing,
|
|
prospect,
|
|
public,
|
|
revenue,
|
|
revenue_os,
|
|
sales,
|
|
sectors,
|
|
security_curator,
|
|
service_excellence,
|
|
service_tower,
|
|
targeting_os,
|
|
v3,
|
|
webhooks,
|
|
)
|
|
from api.security import APIKeyMiddleware, setup_rate_limit
|
|
from core.config.settings import get_settings
|
|
from core.errors import AICompanyError
|
|
from core.logging import configure_logging, get_logger
|
|
|
|
|
|
@asynccontextmanager
|
|
async def lifespan(_app: FastAPI) -> AsyncIterator[None]:
|
|
"""App startup/shutdown hook."""
|
|
configure_logging()
|
|
log = get_logger(__name__)
|
|
settings = get_settings()
|
|
log.info(
|
|
"app_startup",
|
|
app=settings.app_name,
|
|
version=settings.app_version,
|
|
env=settings.app_env,
|
|
)
|
|
# Auto-create tables on boot (additive — safe with SQLAlchemy create_all)
|
|
try:
|
|
from db.session import init_db
|
|
await init_db()
|
|
log.info("db_init_complete")
|
|
except Exception as exc:
|
|
log.warning("db_init_skipped", error=str(exc))
|
|
yield
|
|
log.info("app_shutdown")
|
|
|
|
|
|
def create_app() -> FastAPI:
|
|
"""FastAPI factory."""
|
|
settings = get_settings()
|
|
|
|
app = FastAPI(
|
|
title=settings.app_name,
|
|
version=settings.app_version,
|
|
description=(
|
|
"Multi-agent AI platform for the Saudi Arabian market.\n\n"
|
|
"**Phase 8**: Auto Client Acquisition — intake, ICP match, "
|
|
"pain extraction, qualification, CRM sync, booking, proposals.\n\n"
|
|
"**Phase 9**: Autonomous Growth — sector intel, content, distribution, "
|
|
"enrichment, competitor analysis, market research.\n\n"
|
|
"**Phase 10 / v3**: Autonomous Saudi Revenue OS — revenue memory, "
|
|
"safe agent runtime, market radar, compliance OS, revenue science, "
|
|
"and Sami Personal Strategic Operator."
|
|
),
|
|
docs_url="/docs",
|
|
redoc_url="/redoc",
|
|
openapi_url="/openapi.json",
|
|
lifespan=lifespan,
|
|
)
|
|
|
|
app.add_middleware(
|
|
CORSMiddleware,
|
|
allow_origins=settings.cors_origin_list,
|
|
allow_credentials=True,
|
|
allow_methods=["*"],
|
|
allow_headers=["*"],
|
|
)
|
|
app.add_middleware(RequestIDMiddleware)
|
|
app.add_middleware(APIKeyMiddleware)
|
|
setup_rate_limit(app)
|
|
|
|
try:
|
|
from dealix.observability import instrument_fastapi, setup_sentry, setup_tracing
|
|
|
|
setup_sentry()
|
|
setup_tracing(service_name=settings.app_name, version=settings.app_version)
|
|
instrument_fastapi(app)
|
|
except Exception: # pragma: no cover
|
|
pass
|
|
|
|
@app.exception_handler(AICompanyError)
|
|
async def ai_company_error_handler(_: Request, exc: AICompanyError) -> JSONResponse:
|
|
return JSONResponse(
|
|
status_code=400,
|
|
content={"error": exc.__class__.__name__, "detail": str(exc)},
|
|
)
|
|
|
|
app.include_router(health.router)
|
|
app.include_router(leads.router)
|
|
app.include_router(sales.router)
|
|
app.include_router(sectors.router)
|
|
app.include_router(agents.router)
|
|
app.include_router(webhooks.router)
|
|
app.include_router(pricing.router)
|
|
app.include_router(prospect.router)
|
|
app.include_router(autonomous.router)
|
|
app.include_router(data.router)
|
|
app.include_router(outreach.router)
|
|
app.include_router(revenue.router)
|
|
app.include_router(automation.router)
|
|
app.include_router(email_send.router)
|
|
app.include_router(drafts.router)
|
|
app.include_router(dominance.router)
|
|
app.include_router(full_os.router)
|
|
app.include_router(customer_success.router)
|
|
app.include_router(ecosystem.router)
|
|
app.include_router(command_center.router)
|
|
app.include_router(revenue_os.router)
|
|
app.include_router(v3.router)
|
|
app.include_router(innovation.router)
|
|
app.include_router(business.router)
|
|
app.include_router(personal_operator.router)
|
|
app.include_router(growth_operator.router)
|
|
app.include_router(platform_services.router)
|
|
app.include_router(intelligence_layer.router)
|
|
app.include_router(security_curator.router)
|
|
app.include_router(growth_curator.router)
|
|
app.include_router(meeting_intelligence.router)
|
|
app.include_router(model_router.router)
|
|
app.include_router(connector_catalog.router)
|
|
app.include_router(agent_observability.router)
|
|
app.include_router(targeting_os.router)
|
|
app.include_router(service_tower.router)
|
|
app.include_router(service_excellence.router)
|
|
app.include_router(public.router)
|
|
app.include_router(admin.router)
|
|
|
|
@app.get("/", tags=["root"])
|
|
async def root() -> dict[str, object]:
|
|
return {
|
|
"name": settings.app_name,
|
|
"version": settings.app_version,
|
|
"status": "operational",
|
|
"env": settings.app_env,
|
|
"docs": "/docs",
|
|
"health": "/health",
|
|
"v3_command_center": "/api/v1/v3/command-center/snapshot",
|
|
"personal_operator_daily_brief": "/api/v1/personal-operator/daily-brief",
|
|
"personal_operator_launch_report": "/api/v1/personal-operator/launch-report",
|
|
"business_pricing": "/api/v1/business/pricing",
|
|
"innovation_command_feed_demo": "/api/v1/innovation/command-feed/demo",
|
|
}
|
|
|
|
return app
|
|
|
|
|
|
app = create_app()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
import uvicorn
|
|
|
|
settings = get_settings()
|
|
uvicorn.run(
|
|
"api.main:app",
|
|
host=settings.app_host,
|
|
port=settings.app_port,
|
|
reload=settings.is_development,
|
|
)
|