Market Intelligence Engine

VP3 Cortex

Total Addressable Market analysis, real sales tracking, growth rate modeling, and 12-month revenue forecasting — powered by your pitch deck data.

Market Size & Opportunity
Imported from VP3 pitch deck. Click Rescan to pull latest data.
Pitch Deck Source: Google Slides · Last scanned:
Enter Sales & Predict Growth
Enter your last 5 months of unit sales. Cortex will calculate your growth rate and project 12 months forward.

Monthly Unit Sales

Enter total units sold for each month. Leave blank to skip.

Sales Channel Distribution
Pitch deck channel mix applied to forecasted revenue.
Capital Deployment Phases
Runway aligned to growth milestones from pitch deck.
Per-User Daily Compute Cost
Estimate infrastructure cost per person per day across all energy-consuming services. Adjust sliders to model different usage patterns.
Test Monthly Subscription Packages
Create custom subscription tiers. Enter a price and see margin after compute costs.

Build a Package

Set monthly price and included usage limits for each service. Cortex calculates your margin.

Terminal Commands

Copy-paste these into PowerShell (Windows) or Terminal (Mac/Linux) to install, manage, and uninstall VP3 Cortex.

Direct Download
Or skip the terminal and download directly.
VP3-Setup.exe or download .zip
Install Cortex Desktop App PowerShell
Downloads the VP3 runtime, extracts it, and launches the installer. Run this in any folder.
# Download and install VP3 Cortex (Windows)
cd $env:USERPROFILE\Desktop
mkdir VP3 -Force | cd
Invoke-WebRequest -Uri "https://vp3.me/vp3-runtime-v101.zip" -OutFile "vp3-runtime-v101.zip"
Expand-Archive -Path "vp3-runtime-v101.zip" -Destination "." -Force
.\VP3.bat
Install Cortex Desktop App Bash
Downloads the VP3 runtime, extracts it, and launches the installer on Mac or Linux.
# Download and install VP3 Cortex (Mac/Linux)
cd ~/Desktop
mkdir -p VP3 && cd VP3
curl -L "https://vp3.me/vp3-runtime-v101.zip" -o vp3-runtime-v101.zip
unzip -o vp3-runtime-v101.zip
chmod +x vp3.sh && ./vp3.sh
Start VP3 Both
Launch VP3 after it's already been installed. Starts the home server and opens Cortex browser.
# Windows
.\VP3.bat

# Mac/Linux
./vp3.sh
Stop VP3 Both
Kill the home server and Cortex browser processes.
# Windows (PowerShell)
Get-Process chrome -ErrorAction SilentlyContinue | Stop-Process -Force
Get-Process node -ErrorAction SilentlyContinue | Stop-Process -Force

# Mac/Linux
pkill -f "vp3-home"
pkill -f "chrome.*vp3"
Uninstall / Clean Reinstall PowerShell
Stops all VP3 processes, removes the Cortex browser profile, config, shortcuts, and home server node_modules. Run VP3.bat again after to reinstall fresh.
# Kill Chrome + Node processes first
Get-Process chrome -ErrorAction SilentlyContinue | Stop-Process -Force
Start-Sleep -Seconds 2
Get-Process node -ErrorAction SilentlyContinue | Stop-Process -Force
Start-Sleep -Seconds 1

# Remove VP3 data folder (Cortex profile, config, icon)
Remove-Item -Recurse -Force "$env:USERPROFILE\.vp3" -ErrorAction SilentlyContinue

# Remove desktop & start menu shortcuts
Remove-Item -Force "$env:USERPROFILE\Desktop\VP3 Cortex.lnk" -ErrorAction SilentlyContinue
Remove-Item -Force "$env:APPDATA\Microsoft\Windows\Start Menu\Programs\VP3 Cortex.lnk" -ErrorAction SilentlyContinue

# Verify
if (Test-Path "$env:USERPROFILE\.vp3") {
    Write-Host "Some files still locked. Reboot and re-run." -ForegroundColor Yellow
} else {
    Write-Host "[VP3] Clean complete. Run VP3.bat to reinstall." -ForegroundColor Green
}
Uninstall / Clean Reinstall Bash
Removes VP3 config, Cortex profile, and home server data on Mac or Linux.
# Kill processes
pkill -f "vp3-home" 2>/dev/null
pkill -f "chrome.*vp3" 2>/dev/null
sleep 2

# Remove VP3 data
rm -rf ~/.vp3
rm -f ~/Desktop/VP3\ Cortex.desktop

echo "[VP3] Clean complete. Run ./vp3.sh to reinstall."
Check If VP3 Is Running Both
Check if the home server and Cortex browser are currently running.
# Windows (PowerShell)
Get-Process node -ErrorAction SilentlyContinue | Select-Object Id, ProcessName
Test-NetConnection localhost -Port 3077 | Select-Object TcpTestSucceeded

# Mac/Linux
lsof -i :3077
curl -s http://localhost:3077/health
Update VP3 Runtime PowerShell
Download the latest runtime zip and replace your existing install. Your Cortex profile and data are preserved.
# Navigate to your VP3 folder and download latest
cd "$env:USERPROFILE\Desktop\VP3"
Invoke-WebRequest -Uri "https://vp3.me/vp3-runtime-v101.zip" -OutFile "vp3-runtime-v101.zip"
Expand-Archive -Path "vp3-runtime-v101.zip" -Destination "." -Force
Write-Host "[VP3] Updated. Run VP3.bat to launch." -ForegroundColor Green