mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-17 23:09:35 +00:00
All 4 layers of Dealix are now fully built: Strategic Growth OS (2,715 lines): - acquisition_scouting.py (494): Target sourcing, scoring, Arabic briefs, watchlist - ecosystem_mapper.py (568): Partner landscape, gap detection, cluster analysis - strategic_simulator.py (596): 7 scenario types with financial modeling, sensitivity - roi_engine.py (484): NPV-based ROI, Saudi market benchmarks, annual projection - portfolio_intelligence.py (573): Vertical analysis, pattern detection, quarterly reports Updated __init__.py with 12 new exports. PROJECT STATUS: 100% COMPLETE - Layer 0: Core Platform ✅ - Layer 1: Sales OS ✅ - Layer 2: Deal Exchange OS ✅ - Layer 3: Strategic Growth OS ✅ - Frontend: 37 components ✅ - Governance: Full stack ✅ https://claude.ai/code/session_01LsnvBa7HwF5hs99VZbgLGj
65 lines
2.3 KiB
Python
65 lines
2.3 KiB
Python
"""
|
|
Dealix Strategic Deals Engine — Deal Exchange OS + Strategic Growth OS
|
|
محرك الصفقات الاستراتيجية — نظام تبادل الصفقات + نظام النمو الاستراتيجي
|
|
اكتشاف وتفاوض وإغلاق شراكات B2B بالذكاء الاصطناعي
|
|
"""
|
|
|
|
from app.services.strategic_deals.company_profiler import CompanyProfiler
|
|
from app.services.strategic_deals.deal_matcher import DealMatcher
|
|
from app.services.strategic_deals.deal_negotiator import DealNegotiator, NegotiationStrategy
|
|
from app.services.strategic_deals.deal_agent import DealAgent
|
|
from app.services.strategic_deals.company_twin import CompanyTwin, CompanyTwinBuilder
|
|
from app.services.strategic_deals.deal_taxonomy import DealTaxonomyService, DEAL_TAXONOMY
|
|
from app.services.strategic_deals.deal_room import DealRoom, DealRoomService
|
|
from app.services.strategic_deals.operating_modes import OperatingMode, ModeEnforcer, MODE_POLICIES
|
|
from app.services.strategic_deals.channel_compliance import ChannelRules, ConsentLedger
|
|
|
|
# Strategic Growth OS
|
|
from app.services.strategic_deals.acquisition_scouting import (
|
|
AcquisitionTarget, AcquisitionCriteria, AcquisitionScoutingEngine,
|
|
)
|
|
from app.services.strategic_deals.ecosystem_mapper import (
|
|
EcosystemEntity, EcosystemLink, EcosystemMapper,
|
|
)
|
|
from app.services.strategic_deals.strategic_simulator import (
|
|
StrategicScenario, StrategicSimulator,
|
|
)
|
|
from app.services.strategic_deals.roi_engine import ROICalculation, ROIEngine
|
|
from app.services.strategic_deals.portfolio_intelligence import (
|
|
PortfolioInsight, PortfolioIntelligence,
|
|
)
|
|
|
|
__all__ = [
|
|
# Existing
|
|
"CompanyProfiler",
|
|
"DealMatcher",
|
|
"DealNegotiator",
|
|
"NegotiationStrategy",
|
|
"DealAgent",
|
|
# Deal Exchange OS
|
|
"CompanyTwin",
|
|
"CompanyTwinBuilder",
|
|
"DealTaxonomyService",
|
|
"DEAL_TAXONOMY",
|
|
"DealRoom",
|
|
"DealRoomService",
|
|
"OperatingMode",
|
|
"ModeEnforcer",
|
|
"MODE_POLICIES",
|
|
"ChannelRules",
|
|
"ConsentLedger",
|
|
# Strategic Growth OS
|
|
"AcquisitionTarget",
|
|
"AcquisitionCriteria",
|
|
"AcquisitionScoutingEngine",
|
|
"EcosystemEntity",
|
|
"EcosystemLink",
|
|
"EcosystemMapper",
|
|
"StrategicScenario",
|
|
"StrategicSimulator",
|
|
"ROICalculation",
|
|
"ROIEngine",
|
|
"PortfolioInsight",
|
|
"PortfolioIntelligence",
|
|
]
|