Jacob Jackson created Tabnine in college, watched it get slower with every update, then worked as a researcher at OpenAI and realized AI autocomplete could be way faster. So he built Supermaven because waiting 3 seconds for GitHub Copilot suggestions was driving him insane.
Context Window Actually Works
GitHub Copilot sees maybe 8k tokens of your code. Supermaven sees 1 million tokens. That's the difference between it suggesting useState<any>
(useless) and useState<User | null>
because it actually remembers your User type from 50 files ago.
I was refactoring this massive React app last month - like 200 components, maybe more? Lost count. Anyway, Copilot kept suggesting generic bullshit like const [data, setData] = useState<any>()
. Supermaven knew I always use const [user, setUser] = useState<User | null>(null)
because it actually remembers the pattern from other components. That's exactly why this context window matters - it actually learns your habits instead of being a fancy autocomplete with amnesia.
Speed That Doesn't Make You Want to Throw Your Laptop
250ms vs 3 seconds. Doesn't sound like much until you're debugging at 3AM and Copilot makes you wait while your train of thought derails completely. I've timed it - Copilot takes 2-4 seconds on complex completions, sometimes longer if you're on shitty WiFi. Supermaven usually hits in under 500ms even when my hotel internet is garbage.
Their Babble model is optimized for speed over showing off. When you type const handleSubmit = async (
it immediately suggests (formData: FormData) => {
instead of making you wait 3 seconds while it contemplates the meaning of async functions. No spinner, no delay, just works.
Real Companies Use This (Not Just Marketing Claims)
DigitalOcean, Midjourney, and Framer engineers switched from Copilot. When you're working on 500k+ line codebases, that context window makes autocomplete actually useful instead of just annoying.
Cursor bought them in November 2024 for undisclosed money because their inference was so much faster. Free tier is actually unlimited - no monthly limits, no "10 completions then fuck you" like some tools.