Skip to main content

Velox GTM Overview

Velox GTM is a lightweight, open-source GTM orchestration engine for AI tools, RevOps builders, and SaaS products. It automates the entire sales-to-ops handoff pipeline: from inbound lead capture and ICP scoring to Notion ERP database deployment and Google Docs proposal generation.


The Core Workflows

┌─────────────────────────────────────────────────────────────┐
│ Velox GTM Engine │
├──────────────────┬──────────────────┬───────────────────────┤
│ ICP Lead │ Notion ERP │ Google Docs │
│ Scoring (0-100) │ Provisioning │ Proposal Compiler │
├──────────────────┴──────────────────┴───────────────────────┤
│ n8n Webhook & Closed-Won Sales-to-Ops Handoff │
└─────────────────────────────────────────────────────────────┘
WorkflowPain SolvedSolution
ICP Lead ScoringManual lead triage and slow response timesDeterministic 3-axis scoring (Industry, Headcount, Seniority) running offline
Notion ERP DeployCopy-pasting deals into Notion manuallyAuto-provisions linked relational Pipeline TrackerClient Vault databases
Google Docs CompilerCopying Markdown specs into Google DocsConverts Markdown blueprints into styled Google Docs proposals with headings & callouts
Closed-Won HandoffDisconnected sales & ops toolsAutomatically detects Closed-Won deals, creates delivery projects, and attaches contract links

60-Second Offline Demo

Run the ICP scoring engine instantly without configuring API keys or credentials:

pip install velox-gtm
velox --demo

Python SDK Integration

Import the lead scoring engine directly into your web backend (FastAPI, Flask, Django):

from linkedin_gtm import LinkedInGTMLeadEngine

engine = LinkedInGTMLeadEngine()
lead = engine.score_lead({
"prospect_name": "Sarah Jenkins",
"prospect_title": "VP of Revenue Operations",
"company_name": "ApexLogistics AI",
"industry": "Logistics",
"employee_count": 180,
"estimated_deal_value": 45000
})

print(f"ICP Score: {lead['icp_score']}/100")
print(f"Tier: {lead['icp_tier']}")

Next Steps