<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: juneyoung</title>
    <description>The latest articles on DEV Community by juneyoung (@jybuilds).</description>
    <link>https://dev.to/jybuilds</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4001453%2Fe2a075ff-a574-4192-ac7e-1f49858ce061.png</url>
      <title>DEV Community: juneyoung</title>
      <link>https://dev.to/jybuilds</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jybuilds"/>
    <language>en</language>
    <item>
      <title>I built a free tool so LLMs stop wasting tokens when they pull web pages</title>
      <dc:creator>juneyoung</dc:creator>
      <pubDate>Thu, 25 Jun 2026 02:59:09 +0000</pubDate>
      <link>https://dev.to/jybuilds/i-built-a-free-tool-so-llms-stop-wasting-tokens-when-they-pull-web-pages-4jdl</link>
      <guid>https://dev.to/jybuilds/i-built-a-free-tool-so-llms-stop-wasting-tokens-when-they-pull-web-pages-4jdl</guid>
      <description>&lt;p&gt;When I let an LLM go search the web for me, it grabs the whole page raw and&lt;br&gt;
burns a bunch of tokens on stuff it doesn't actually need. I kept wishing it&lt;br&gt;
could just pull the part that matters. So I built a small tool for that.&lt;/p&gt;

&lt;p&gt;Lean Reader takes a URL and gives you back just the body text, cleaned up,&lt;br&gt;
plus the numbers on how many tokens it saved. It tells you which model and&lt;br&gt;
tokenizer it's counting against, so you can check it yourself.&lt;/p&gt;

&lt;p&gt;For example, one React docs page went from 119,126 tokens down to 4,942.&lt;br&gt;
About 96% off, roughly $0.29 saved on gpt-4o pricing.&lt;/p&gt;

&lt;p&gt;How it works is pretty boring. It grabs the page, throws out the nav, cookie&lt;br&gt;
banners, scripts and that kind of junk, then runs two extractors and keeps&lt;br&gt;
whichever one holds onto more of the actual body.&lt;/p&gt;

&lt;p&gt;It's not perfect. It fetches pages statically, so JS-heavy sites and GitHub&lt;br&gt;
repos come out thin. For those, something that actually renders the page like&lt;br&gt;
Jina or Firecrawl will do better. And the tech honestly isn't fancy. It&lt;br&gt;
fetches, cleans, counts tokens. That's it.&lt;/p&gt;

&lt;p&gt;It's free and open source (MIT). You can run it with npx lean-reader, and it&lt;br&gt;
works as an MCP server too, so an agent can call it mid-search.&lt;/p&gt;

&lt;p&gt;Link: &lt;a href="https://lean-reader-web.vercel.app/" rel="noopener noreferrer"&gt;lean-reader-web.vercel.app&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you try it, I'd really like to know where it breaks for you.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>opensource</category>
      <category>showdev</category>
      <category>rag</category>
    </item>
  </channel>
</rss>
