├── .DS_Store ├── .env.example ├── .gcloudignore ├── .gitignore ├── .python-version ├── BIGQUERY_GOOGLEMAPS_INTEGRATION.md ├── DEPLOYMENT.md ├── Dockerfile.lead_finder ├── Dockerfile.lead_manager ├── Dockerfile.sdr ├── Dockerfile.test ├── Dockerfile.ui_client ├── ENVIRONMENT.md ├── HACKATHON_STORY.md ├── INSTALLATION.md ├── Makefile ├── README.md ├── __init__.py ├── cloudbuild-gmail_listener.yaml ├── cloudbuild-lead_finder.yaml ├── cloudbuild-lead_manager.yaml ├── cloudbuild-sdr.yaml ├── cloudbuild-test.yaml ├── cloudbuild-ui_client.yaml ├── common ├── __init__.py └── config.py ├── config.template ├── deploy_cloud_run.sh ├── deploy_local.sh ├── gmail_pubsub_listener ├── .env.example ├── Dockerfile ├── README.md ├── __init__.py ├── gmail_listener_service.py └── requirements.txt ├── grant_public_access.sh ├── lead_finder ├── .env.example ├── README.md ├── __init__.py ├── __main__.py ├── agent_executor.py ├── lead_finder │ ├── __init__.py │ ├── agent.py │ ├── callbacks.py │ ├── config.py │ ├── prompts.py │ ├── sub_agents │ │ ├── __init__.py │ │ ├── cluster_search_agent.py │ │ ├── google_maps_agent.py │ │ ├── merger_agent.py │ │ └── potential_lead_finder_agent.py │ ├── tools │ │ ├── __init__.py │ │ ├── bigquery_utils.py │ │ ├── cluster_search.py │ │ └── maps_search.py │ └── utils.py └── requirements.txt ├── lead_manager ├── README.md ├── __init__.py ├── __main__.py ├── adk_main.py ├── agent.py ├── agent_executor.py ├── lead_manager │ ├── __init__.py │ ├── agent.py │ ├── callbacks.py │ ├── config.py │ ├── prompts.py │ ├── sub_agents │ │ ├── __init__.py │ │ ├── calendar_organizer_agent.py │ │ ├── email_analyzer.py │ │ ├── email_analyzer_instance.py │ │ ├── email_checker_agent.py │ │ └── post_action_agent.py │ └── tools │ │ ├── __init__.py │ │ ├── bigquery_utils.py │ │ ├── calendar_utils.py │ │ ├── check_email.py │ │ ├── meeting_request_llm.py │ │ └── ui_notification.py ├── pyproject.toml ├── requirements.txt └── simple_main.py ├── phone_call_debug_detailed.json ├── pyproject.toml ├── requirements-dev.txt ├── requirements.txt ├── sdr ├── .env.example ├── README.md ├── SDR_API_Testing_Instructions.md ├── __init__.py ├── __main__.py ├── agent_executor.py ├── auth_helpers.py ├── requirements.txt └── sdr │ ├── __init__.py │ ├── agent.py │ ├── callbacks.py │ ├── config.py │ ├── prompts.py │ ├── sub_agents │ ├── __init__.py │ ├── conversation_classifier.py │ ├── draft_writer_agent.py │ ├── fact_checker_agent.py │ ├── lead_clerk_agent.py │ ├── outreach_caller_agent.py │ ├── outreach_email_agent │ │ ├── __init__.py │ │ ├── outreach_email_agent.py │ │ ├── outreach_email_prompt.py │ │ ├── sub_agents │ │ │ ├── __init__.py │ │ │ ├── email_sender │ │ │ │ ├── __init__.py │ │ │ │ ├── email_agent.py │ │ │ │ ├── email_crafter_agent.py │ │ │ │ └── email_sender_agent.py │ │ │ ├── engagement_saver_agent.py │ │ │ ├── offer_file_creator_agent.py │ │ │ ├── specification_creator │ │ │ │ ├── __init__.py │ │ │ │ ├── quality_checker_agent.py │ │ │ │ ├── requirements_refiner_agent.py │ │ │ │ ├── spec_status_checker_agent.py │ │ │ │ ├── spec_template.py │ │ │ │ ├── specification_creator_agent.py │ │ │ │ └── specs_prompts.py │ │ │ └── website_creator │ │ │ │ ├── __init__.py │ │ │ │ ├── process_decision_agent.py │ │ │ │ ├── prompt_prepare_agent.py │ │ │ │ ├── request_human_creation.py │ │ │ │ ├── tools │ │ │ │ └── human_creation_tool.py │ │ │ │ └── websiter_creator_agent.py │ │ └── tools │ │ │ ├── ZemZenProposal.pdf │ │ │ ├── big_query_saving.py │ │ │ ├── content_editor_tools.py │ │ │ ├── create_pdf_offer.py │ │ │ ├── gmail_service_account_tool.py │ │ │ └── offer_file_tools.py │ ├── proposal_generator_agent.py │ ├── research_lead_agent.py │ ├── sdr_router.py │ └── sdr_router_instance.py │ └── tools │ ├── __init__.py │ ├── bigquery_utils.py │ └── phone_call.py ├── test_app.py ├── test_deploy.sh ├── test_hot_lead.json ├── test_lead_manager_curl.sh ├── test_local.sh ├── ui_client ├── .DS_Store ├── README.md ├── __init__.py ├── __main__.py ├── main.py ├── requirements.txt ├── static │ ├── css │ │ ├── dashboard.css │ │ └── style.css │ └── js │ │ └── dashboard.js ├── style.css ├── templates │ ├── architecture_diagram.html │ ├── dashboard.html │ ├── error.html │ └── index.html └── test │ └── test_ui_client.py └── update_deployed_constants.sh /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/.DS_Store -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/.env.example -------------------------------------------------------------------------------- /.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/.gcloudignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /BIGQUERY_GOOGLEMAPS_INTEGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/BIGQUERY_GOOGLEMAPS_INTEGRATION.md -------------------------------------------------------------------------------- /DEPLOYMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/DEPLOYMENT.md -------------------------------------------------------------------------------- /Dockerfile.lead_finder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/Dockerfile.lead_finder -------------------------------------------------------------------------------- /Dockerfile.lead_manager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/Dockerfile.lead_manager -------------------------------------------------------------------------------- /Dockerfile.sdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/Dockerfile.sdr -------------------------------------------------------------------------------- /Dockerfile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/Dockerfile.test -------------------------------------------------------------------------------- /Dockerfile.ui_client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/Dockerfile.ui_client -------------------------------------------------------------------------------- /ENVIRONMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/ENVIRONMENT.md -------------------------------------------------------------------------------- /HACKATHON_STORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/HACKATHON_STORY.md -------------------------------------------------------------------------------- /INSTALLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/INSTALLATION.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/__init__.py -------------------------------------------------------------------------------- /cloudbuild-gmail_listener.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/cloudbuild-gmail_listener.yaml -------------------------------------------------------------------------------- /cloudbuild-lead_finder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/cloudbuild-lead_finder.yaml -------------------------------------------------------------------------------- /cloudbuild-lead_manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/cloudbuild-lead_manager.yaml -------------------------------------------------------------------------------- /cloudbuild-sdr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/cloudbuild-sdr.yaml -------------------------------------------------------------------------------- /cloudbuild-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/cloudbuild-test.yaml -------------------------------------------------------------------------------- /cloudbuild-ui_client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/cloudbuild-ui_client.yaml -------------------------------------------------------------------------------- /common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/common/config.py -------------------------------------------------------------------------------- /config.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/config.template -------------------------------------------------------------------------------- /deploy_cloud_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/deploy_cloud_run.sh -------------------------------------------------------------------------------- /deploy_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/deploy_local.sh -------------------------------------------------------------------------------- /gmail_pubsub_listener/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/gmail_pubsub_listener/.env.example -------------------------------------------------------------------------------- /gmail_pubsub_listener/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/gmail_pubsub_listener/Dockerfile -------------------------------------------------------------------------------- /gmail_pubsub_listener/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/gmail_pubsub_listener/README.md -------------------------------------------------------------------------------- /gmail_pubsub_listener/__init__.py: -------------------------------------------------------------------------------- 1 | # Gmail Pub/Sub Listener Package -------------------------------------------------------------------------------- /gmail_pubsub_listener/gmail_listener_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/gmail_pubsub_listener/gmail_listener_service.py -------------------------------------------------------------------------------- /gmail_pubsub_listener/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/gmail_pubsub_listener/requirements.txt -------------------------------------------------------------------------------- /grant_public_access.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/grant_public_access.sh -------------------------------------------------------------------------------- /lead_finder/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_finder/.env.example -------------------------------------------------------------------------------- /lead_finder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_finder/README.md -------------------------------------------------------------------------------- /lead_finder/__init__.py: -------------------------------------------------------------------------------- 1 | """Lead Finder package.""" -------------------------------------------------------------------------------- /lead_finder/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_finder/__main__.py -------------------------------------------------------------------------------- /lead_finder/agent_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_finder/agent_executor.py -------------------------------------------------------------------------------- /lead_finder/lead_finder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_finder/lead_finder/__init__.py -------------------------------------------------------------------------------- /lead_finder/lead_finder/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_finder/lead_finder/agent.py -------------------------------------------------------------------------------- /lead_finder/lead_finder/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_finder/lead_finder/callbacks.py -------------------------------------------------------------------------------- /lead_finder/lead_finder/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_finder/lead_finder/config.py -------------------------------------------------------------------------------- /lead_finder/lead_finder/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_finder/lead_finder/prompts.py -------------------------------------------------------------------------------- /lead_finder/lead_finder/sub_agents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lead_finder/lead_finder/sub_agents/cluster_search_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_finder/lead_finder/sub_agents/cluster_search_agent.py -------------------------------------------------------------------------------- /lead_finder/lead_finder/sub_agents/google_maps_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_finder/lead_finder/sub_agents/google_maps_agent.py -------------------------------------------------------------------------------- /lead_finder/lead_finder/sub_agents/merger_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_finder/lead_finder/sub_agents/merger_agent.py -------------------------------------------------------------------------------- /lead_finder/lead_finder/sub_agents/potential_lead_finder_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_finder/lead_finder/sub_agents/potential_lead_finder_agent.py -------------------------------------------------------------------------------- /lead_finder/lead_finder/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lead_finder/lead_finder/tools/bigquery_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_finder/lead_finder/tools/bigquery_utils.py -------------------------------------------------------------------------------- /lead_finder/lead_finder/tools/cluster_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_finder/lead_finder/tools/cluster_search.py -------------------------------------------------------------------------------- /lead_finder/lead_finder/tools/maps_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_finder/lead_finder/tools/maps_search.py -------------------------------------------------------------------------------- /lead_finder/lead_finder/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_finder/lead_finder/utils.py -------------------------------------------------------------------------------- /lead_finder/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_finder/requirements.txt -------------------------------------------------------------------------------- /lead_manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_manager/README.md -------------------------------------------------------------------------------- /lead_manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_manager/__init__.py -------------------------------------------------------------------------------- /lead_manager/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_manager/__main__.py -------------------------------------------------------------------------------- /lead_manager/adk_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_manager/adk_main.py -------------------------------------------------------------------------------- /lead_manager/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_manager/agent.py -------------------------------------------------------------------------------- /lead_manager/agent_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_manager/agent_executor.py -------------------------------------------------------------------------------- /lead_manager/lead_manager/__init__.py: -------------------------------------------------------------------------------- 1 | # Lead Manager Agent Package 2 | 3 | from .config import * -------------------------------------------------------------------------------- /lead_manager/lead_manager/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_manager/lead_manager/agent.py -------------------------------------------------------------------------------- /lead_manager/lead_manager/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_manager/lead_manager/callbacks.py -------------------------------------------------------------------------------- /lead_manager/lead_manager/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_manager/lead_manager/config.py -------------------------------------------------------------------------------- /lead_manager/lead_manager/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_manager/lead_manager/prompts.py -------------------------------------------------------------------------------- /lead_manager/lead_manager/sub_agents/__init__.py: -------------------------------------------------------------------------------- 1 | # Lead Manager Sub-agents -------------------------------------------------------------------------------- /lead_manager/lead_manager/sub_agents/calendar_organizer_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_manager/lead_manager/sub_agents/calendar_organizer_agent.py -------------------------------------------------------------------------------- /lead_manager/lead_manager/sub_agents/email_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_manager/lead_manager/sub_agents/email_analyzer.py -------------------------------------------------------------------------------- /lead_manager/lead_manager/sub_agents/email_analyzer_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_manager/lead_manager/sub_agents/email_analyzer_instance.py -------------------------------------------------------------------------------- /lead_manager/lead_manager/sub_agents/email_checker_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_manager/lead_manager/sub_agents/email_checker_agent.py -------------------------------------------------------------------------------- /lead_manager/lead_manager/sub_agents/post_action_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_manager/lead_manager/sub_agents/post_action_agent.py -------------------------------------------------------------------------------- /lead_manager/lead_manager/tools/__init__.py: -------------------------------------------------------------------------------- 1 | # Lead Manager Tools -------------------------------------------------------------------------------- /lead_manager/lead_manager/tools/bigquery_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_manager/lead_manager/tools/bigquery_utils.py -------------------------------------------------------------------------------- /lead_manager/lead_manager/tools/calendar_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_manager/lead_manager/tools/calendar_utils.py -------------------------------------------------------------------------------- /lead_manager/lead_manager/tools/check_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_manager/lead_manager/tools/check_email.py -------------------------------------------------------------------------------- /lead_manager/lead_manager/tools/meeting_request_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_manager/lead_manager/tools/meeting_request_llm.py -------------------------------------------------------------------------------- /lead_manager/lead_manager/tools/ui_notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_manager/lead_manager/tools/ui_notification.py -------------------------------------------------------------------------------- /lead_manager/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_manager/pyproject.toml -------------------------------------------------------------------------------- /lead_manager/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_manager/requirements.txt -------------------------------------------------------------------------------- /lead_manager/simple_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/lead_manager/simple_main.py -------------------------------------------------------------------------------- /phone_call_debug_detailed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/phone_call_debug_detailed.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/requirements.txt -------------------------------------------------------------------------------- /sdr/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/.env.example -------------------------------------------------------------------------------- /sdr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/README.md -------------------------------------------------------------------------------- /sdr/SDR_API_Testing_Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/SDR_API_Testing_Instructions.md -------------------------------------------------------------------------------- /sdr/__init__.py: -------------------------------------------------------------------------------- 1 | """SDR Agent""" -------------------------------------------------------------------------------- /sdr/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/__main__.py -------------------------------------------------------------------------------- /sdr/agent_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/agent_executor.py -------------------------------------------------------------------------------- /sdr/auth_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/auth_helpers.py -------------------------------------------------------------------------------- /sdr/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/requirements.txt -------------------------------------------------------------------------------- /sdr/sdr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdr/sdr/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/agent.py -------------------------------------------------------------------------------- /sdr/sdr/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/callbacks.py -------------------------------------------------------------------------------- /sdr/sdr/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/config.py -------------------------------------------------------------------------------- /sdr/sdr/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/prompts.py -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/conversation_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/sub_agents/conversation_classifier.py -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/draft_writer_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/sub_agents/draft_writer_agent.py -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/fact_checker_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/sub_agents/fact_checker_agent.py -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/lead_clerk_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/sub_agents/lead_clerk_agent.py -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/outreach_caller_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/sub_agents/outreach_caller_agent.py -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/outreach_email_agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/sub_agents/outreach_email_agent/__init__.py -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/outreach_email_agent/outreach_email_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/sub_agents/outreach_email_agent/outreach_email_agent.py -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/outreach_email_agent/outreach_email_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/sub_agents/outreach_email_agent/outreach_email_prompt.py -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/outreach_email_agent/sub_agents/__init__.py: -------------------------------------------------------------------------------- 1 | """Sub-agents for the Outreach Email Agent.""" -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/outreach_email_agent/sub_agents/email_sender/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/outreach_email_agent/sub_agents/email_sender/email_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/sub_agents/outreach_email_agent/sub_agents/email_sender/email_agent.py -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/outreach_email_agent/sub_agents/email_sender/email_crafter_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/sub_agents/outreach_email_agent/sub_agents/email_sender/email_crafter_agent.py -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/outreach_email_agent/sub_agents/email_sender/email_sender_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/sub_agents/outreach_email_agent/sub_agents/email_sender/email_sender_agent.py -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/outreach_email_agent/sub_agents/engagement_saver_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/sub_agents/outreach_email_agent/sub_agents/engagement_saver_agent.py -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/outreach_email_agent/sub_agents/offer_file_creator_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/sub_agents/outreach_email_agent/sub_agents/offer_file_creator_agent.py -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/outreach_email_agent/sub_agents/specification_creator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/outreach_email_agent/sub_agents/specification_creator/quality_checker_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/sub_agents/outreach_email_agent/sub_agents/specification_creator/quality_checker_agent.py -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/outreach_email_agent/sub_agents/specification_creator/requirements_refiner_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/sub_agents/outreach_email_agent/sub_agents/specification_creator/requirements_refiner_agent.py -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/outreach_email_agent/sub_agents/specification_creator/spec_status_checker_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/sub_agents/outreach_email_agent/sub_agents/specification_creator/spec_status_checker_agent.py -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/outreach_email_agent/sub_agents/specification_creator/spec_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/sub_agents/outreach_email_agent/sub_agents/specification_creator/spec_template.py -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/outreach_email_agent/sub_agents/specification_creator/specification_creator_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/sub_agents/outreach_email_agent/sub_agents/specification_creator/specification_creator_agent.py -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/outreach_email_agent/sub_agents/specification_creator/specs_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/sub_agents/outreach_email_agent/sub_agents/specification_creator/specs_prompts.py -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/outreach_email_agent/sub_agents/website_creator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/outreach_email_agent/sub_agents/website_creator/process_decision_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/sub_agents/outreach_email_agent/sub_agents/website_creator/process_decision_agent.py -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/outreach_email_agent/sub_agents/website_creator/prompt_prepare_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/sub_agents/outreach_email_agent/sub_agents/website_creator/prompt_prepare_agent.py -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/outreach_email_agent/sub_agents/website_creator/request_human_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/sub_agents/outreach_email_agent/sub_agents/website_creator/request_human_creation.py -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/outreach_email_agent/sub_agents/website_creator/tools/human_creation_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/sub_agents/outreach_email_agent/sub_agents/website_creator/tools/human_creation_tool.py -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/outreach_email_agent/sub_agents/website_creator/websiter_creator_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/sub_agents/outreach_email_agent/sub_agents/website_creator/websiter_creator_agent.py -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/outreach_email_agent/tools/ZemZenProposal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/sub_agents/outreach_email_agent/tools/ZemZenProposal.pdf -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/outreach_email_agent/tools/big_query_saving.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/outreach_email_agent/tools/content_editor_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/sub_agents/outreach_email_agent/tools/content_editor_tools.py -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/outreach_email_agent/tools/create_pdf_offer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/sub_agents/outreach_email_agent/tools/create_pdf_offer.py -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/outreach_email_agent/tools/gmail_service_account_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/sub_agents/outreach_email_agent/tools/gmail_service_account_tool.py -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/outreach_email_agent/tools/offer_file_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/sub_agents/outreach_email_agent/tools/offer_file_tools.py -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/proposal_generator_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/sub_agents/proposal_generator_agent.py -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/research_lead_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/sub_agents/research_lead_agent.py -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/sdr_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/sub_agents/sdr_router.py -------------------------------------------------------------------------------- /sdr/sdr/sub_agents/sdr_router_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/sub_agents/sdr_router_instance.py -------------------------------------------------------------------------------- /sdr/sdr/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdr/sdr/tools/bigquery_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/tools/bigquery_utils.py -------------------------------------------------------------------------------- /sdr/sdr/tools/phone_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/sdr/sdr/tools/phone_call.py -------------------------------------------------------------------------------- /test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/test_app.py -------------------------------------------------------------------------------- /test_deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/test_deploy.sh -------------------------------------------------------------------------------- /test_hot_lead.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/test_hot_lead.json -------------------------------------------------------------------------------- /test_lead_manager_curl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/test_lead_manager_curl.sh -------------------------------------------------------------------------------- /test_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/test_local.sh -------------------------------------------------------------------------------- /ui_client/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/ui_client/.DS_Store -------------------------------------------------------------------------------- /ui_client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/ui_client/README.md -------------------------------------------------------------------------------- /ui_client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/ui_client/__init__.py -------------------------------------------------------------------------------- /ui_client/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/ui_client/__main__.py -------------------------------------------------------------------------------- /ui_client/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/ui_client/main.py -------------------------------------------------------------------------------- /ui_client/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/ui_client/requirements.txt -------------------------------------------------------------------------------- /ui_client/static/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/ui_client/static/css/dashboard.css -------------------------------------------------------------------------------- /ui_client/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/ui_client/static/css/style.css -------------------------------------------------------------------------------- /ui_client/static/js/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/ui_client/static/js/dashboard.js -------------------------------------------------------------------------------- /ui_client/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui_client/templates/architecture_diagram.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/ui_client/templates/architecture_diagram.html -------------------------------------------------------------------------------- /ui_client/templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/ui_client/templates/dashboard.html -------------------------------------------------------------------------------- /ui_client/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/ui_client/templates/error.html -------------------------------------------------------------------------------- /ui_client/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/ui_client/templates/index.html -------------------------------------------------------------------------------- /ui_client/test/test_ui_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/ui_client/test/test_ui_client.py -------------------------------------------------------------------------------- /update_deployed_constants.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merdandt/SalesShortcut/HEAD/update_deployed_constants.sh --------------------------------------------------------------------------------