Add intensity level examples to README Before/After section

Show lite, full, and ultra side-by-side using the same React re-render
and auth middleware examples from the existing Before/After section.
Also fixes emoji encoding from prior edit.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
vraj
2026-04-05 10:52:09 -07:00
co-authored by Claude Opus 4.6
parent 04af4695c6
commit 73e35f5232
2 changed files with 68 additions and 0 deletions
+68
View File
@@ -66,6 +66,74 @@ Based on the viral observation that caveman-speak dramatically reduces LLM token
**Same fix. 75% less word. Brain still big.**
### Now with intensity levels
Same examples, you pick the grunt level:
<table>
<tr>
<th>Level</th>
<th>React re-render question</th>
</tr>
<tr>
<td>🪶 <strong>Lite</strong></td>
<td>
> "Your component re-renders because you create a new object reference each render. Inline object props fail shallow comparison every time. Wrap it in `useMemo`."
</td>
</tr>
<tr>
<td>🪨 <strong>Full</strong></td>
<td>
> "New object ref each render. Inline object prop = new ref = re-render. Wrap in `useMemo`."
</td>
</tr>
<tr>
<td>🔥 <strong>Ultra</strong></td>
<td>
> "Inline obj prop → new ref → re-render. `useMemo`."
</td>
</tr>
</table>
<table>
<tr>
<th>Level</th>
<th>Auth middleware bug</th>
</tr>
<tr>
<td>🪶 <strong>Lite</strong></td>
<td>
> "Your auth middleware has a bug. The token expiry check uses `<` instead of `<=`. Here's the fix:"
</td>
</tr>
<tr>
<td>🪨 <strong>Full</strong></td>
<td>
> "Bug in auth middleware. Token expiry check use `<` not `<=`. Fix:"
</td>
</tr>
<tr>
<td>🔥 <strong>Ultra</strong></td>
<td>
> "Auth bug. Expiry: `<` → `<=`. Fix:"
</td>
</tr>
</table>
**Same fix. Three grunt level. Pick your rock size.**
## Benchmarks
Real token counts from the Claude API ([reproduce it yourself](benchmarks/)):
BIN
View File
Binary file not shown.