TruckMatch
Arizona Market Integrity Hub Active

DON'T JUST SEARCH.
AUDIT.

Your AI Guide to the Perfect Truck

Waiting for neural intercept...

Intelligence Reports

Neural Stream

Ram TRX: Long Term Verdict

TFL Truck • 1.2M Views

Lifted Truck Pros & Cons

Custom Offsets • 2.1M Views

TAX STRATEGY
DECODED

Section 179 Explained

Financial Education • 890K Views

Lifted Truck Pros & Cons

Custom Offsets • 2.1M Views

Our Technology

Experience Truckmatch

Current Status: Public Beta / MVP

Powered by Gemini

We utilize Google’s Gemini models to parse natural language queries (e.g., "I need a truck that can tow a 5th wheel but fits in a standard garage") and match them against dealer inventory with high precision.

Privacy-First Architecture

Our "Rosetta Vault" approach ensures that driver data is protected, adhering to high ethical standards while still providing monetization opportunities for dealers.

The Experience

Conversational Discovery, Not Filters. Users interact with our AI agents to filter, compare, and locate vehicles without navigating through endless dropdown menus. The interface bridges the gap between complex consumer needs and dealer inventory in real-time.

Truckmatch Gemini Interface
// Global function for forms to use window.sendLeadToCRM = async function (leadData, sourceName, assetData) { try { console.log("Sending lead to CRM from " + sourceName + "..."); const timestamp = new Date().toISOString(); // DATA PREP const user = { first: leadData.name ? leadData.name.split(' ')[0] : 'Unknown', last: leadData.name ? leadData.name.split(' ').slice(1).join(' ') : 'User', phone: leadData.phone || '', email: leadData.email || 'no-email@provided.com' }; const vehicle = assetData || { year: "2024", make: "Vehicle", model: "Inquiry", vin: "N/A", priceStr: "Inquire", image: "https://truckmatch.ai/Truckmatch.aigif.gif", dealer: { name: "TruckMatch Partner", city: "Scottsdale", state: "AZ" } }; // 1. SAVE LEAD TO CRM await addDoc(collection(crmDb, 'artifacts', CRM_APP_ID, 'public', 'data', 'customers'), { firstName: user.first, lastName: user.last, email: user.email, phone: user.phone, vehicleInterest: `${vehicle.year} ${vehicle.make} ${vehicle.model}`, notes: leadData.message || 'Quick Lead from Site', source: sourceName || 'Web', status: 'New', assetId: vehicle.id || null, createdAt: serverTimestamp() }); // 2. ADMIN NOTIFICATION OVERRIDE (To Thomas) // Template ID: Nexus_Dealer_Alert_v1 await addDoc(collection(crmDb, 'mail'), { to: "thomas@artificiallyintelligent.ai", message: { subject: `🎯 [ADMIN] New Lead for ${vehicle.dealer ? vehicle.dealer.name : 'Network Info'}: ${vehicle.year} ${vehicle.make} ${vehicle.model}`, html: `

[SYSTEM NOTICE: QA OVERRIDE ACTIVE]

Target Dealer: ${vehicle.dealer ? vehicle.dealer.name : 'Unknown Dealer'}

LEAD INTELLIGENCE

Customer: ${user.first} ${user.last}

Email: ${user.email}

Phone: ${user.phone}

Location: ${leadData.city || 'Geo-Locating...'}, ${leadData.state || 'AZ'}

ASSET DETAILS

Vehicle: ${vehicle.year} ${vehicle.make} ${vehicle.model}

VIN: ${vehicle.vin || 'N/A'}

Price: ${vehicle.priceStr}

SNIPER INSIGHTS

"Customer session active. High intent signal detected on Mobile device. Action Item: Call immediately."


VIEW IN COMMAND CENTER
` } }); // 3. USER CONFIRMATION (Option A) // Template ID: TM_User_Confirm_v1 if (user.email && user.email.includes('@')) { await addDoc(collection(crmDb, 'mail'), { to: user.email, message: { subject: `🎯 Your Match: ${vehicle.year} ${vehicle.make} ${vehicle.model} is waiting.`, html: `

TRUCKMATCH.AI

Hi ${user.first},

We have successfully received your inquiry on the ${vehicle.year} ${vehicle.make} ${vehicle.model}.

Unlike traditional platforms, TruckMatch uses the Antigravity Operating System to process your request securely. We have verified the availability of this asset and prioritized your connection.

${vehicle.year} ${vehicle.make} ${vehicle.model}

VIN: ${vehicle.vin || 'Pending'}

${vehicle.priceStr}

${vehicle.dealer ? vehicle.dealer.city : 'Scottsdale'}, ${vehicle.dealer ? vehicle.dealer.state : 'AZ'}

VIEW SECURE LISTING

WHAT HAPPENS NEXT?
Your interest has been routed directly to the specific partner holding this inventory. A verified representative will reach out shortly.

TruckMatch.ai | Nexus Intelligence

Manage My Data

` } }); } console.log("Lead emails dispatched!"); return true; } catch (e) { console.error("Error sending lead:", e); // Fallback for UI throw e; } } // ALIAS FOR LEGACY UI CALLS window.sendLeadToCloud = window.sendLeadToCRM;