The four heights
The same task, four distances: today's deadline, the next reviewer, the stuck moment, the pattern.
Execute — do the immediate task
+I need this sorting routine to run within our 120ms frame budget on PlayTest servers. Send the…
Execute — do the immediate task
+I need this sorting routine to run within our 120ms frame budget on PlayTest servers. Send the optimized version of the compare-and-swap loop to Mika in engine integration and to me for benching, sign off Friday if latency tests pass. Check for branch mispredictions and inlining opportunities before sending.
Pasted it? When the reply comes back, push once: ask it to sharpen the weakest part. — Did this prompt help?
Improve — make it easier to accept
+Before I hand this to Mika in engine integration, make the algorithm easy to review and measure —…
Improve — make it easier to accept
+Before I hand this to Mika in engine integration, make the algorithm easy to review and measure — put a simple microbenchmark at the top, show worst-case and average-case times, move the inner compare into a named function so reviewers spot intent, and call out any assumptions about input distribution that would make reviewers hesitate.
Pasted it? When the reply comes back, push once: ask it to sharpen the weakest part. — Did this prompt help?
Decide — diagnose the stuck moment
+We ran into a 350ms hitch during level load; the new sort routine ran at that moment. I profiled…
Decide — diagnose the stuck moment
+A frame spike just happened during the level load
We ran into a 350ms hitch during level load; the new sort routine ran at that moment. I profiled briefly and saw tails of long comparisons but I don’t know if it’s the comparator, allocation during sorting, or bad pivot choices. I’m worried if I change pivot logic I’ll regress average case. What’s the most likely cause and the safest next change to test in isolation?
Pasted it? When the reply comes back, push once: ask it to sharpen the weakest part. — Did this prompt help?
Become — change the pattern
+Across builds we keep losing CPU headroom to ad-hoc sorting routines added for different systems. I…
Become — change the pattern
+Latency spikes recur on player-heavy scenes
Across builds we keep losing CPU headroom to ad-hoc sorting routines added for different systems. I waste time rewriting similar micro-optimizations and then unpinned assumptions cause regressions. Which habit should I change so new sorting needs don’t erode frame budget, and what standard checks to add to PRs to prevent future regressions?
Pasted it? When the reply comes back, push once: ask it to sharpen the weakest part. — Did this prompt help?
Next to this one
Other programming language work people do in C++.
Every task here came from the work, not from a feature list — which is why the prompts name what you want done and never the button that does it. The tool changes; the work does not.
Copyright © LLOS.ai · 2026 — original pedagogy, voice, and design — all rights reserved.
The rest of the map
Same library, five ways in.