Founder · Building the missing interaction layer for long-lived AI conversations.

Pinned Tweet
A chat that runs for three months is not a chat. It's a workspace. Most AI products still treat it like a transcript. That's why they die.
1
8
Long context is cheap to advertise, expensive to run. The cost isn't the window size. It's that the model keeps reprocessing everything that came before, on every single turn.
1
2
The first 20 turns feel great. Turn 100 feels fine. Turn 500 is where most teams can't explain why the assistant started drifting. It's not the model. It's the session.
1
1
What's wrong with this code? 1. int halts(int (*f)(void*), void* x); /* must be pure, total, exact: 1 iff f(x) halts */ 2. int D(void* x){ while (halts(D, x)) {} return 0; } 3. int main(void){ return D(0); }
1
5