<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: ClintEhrlich</title><link>https://news.ycombinator.com/user?id=ClintEhrlich</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Mon, 04 May 2026 02:17:46 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=ClintEhrlich" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[Don't Lose Your Context]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.losslesscontext.ai/">https://www.losslesscontext.ai/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47173881">https://news.ycombinator.com/item?id=47173881</a></p>
<p>Points: 3</p>
<p># Comments: 0</p>
]]></description><pubDate>Thu, 26 Feb 2026 23:36:35 +0000</pubDate><link>https://www.losslesscontext.ai/</link><dc:creator>ClintEhrlich</dc:creator><comments>https://news.ycombinator.com/item?id=47173881</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47173881</guid></item><item><title><![CDATA[New comment by ClintEhrlich in "LCM: Lossless Context Management [pdf]"]]></title><description><![CDATA[
<p>You could definitely build a coding agent that way, and it sounds like you've done it. We store the conversation history because:<p>1. In our use of coding agents, we find that there are often things referenced earlier in the conversation (API keys, endpoint addresses, feedback to the agent, etc.) that it's useful to have persist.<p>2. This is a general-purpose LLM memory system, which we've just used here to build a coding agent. But it is also designed for personal assistants, legal LLMs, etc.</p>
]]></description><pubDate>Tue, 17 Feb 2026 09:56:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=47045574</link><dc:creator>ClintEhrlich</dc:creator><comments>https://news.ycombinator.com/item?id=47045574</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47045574</guid></item><item><title><![CDATA[New comment by ClintEhrlich in "LCM: Lossless Context Management [pdf]"]]></title><description><![CDATA[
<p>By construction, individual summaries are not typically large enough to overload the context window when expanded.<p>The reason that the volume is potentially arbitrarily large is that one sub-agent can call lcm_expand multiple times - either vertically or horizontally. But that's a process that occurs gradually as the tool is used repeatedly.<p>This has not been a problem in our testing, but if it were a problem it would be easy to prevent sub-agents from invoking lcm_expand once their context buffer has reached a specified threshold.</p>
]]></description><pubDate>Tue, 17 Feb 2026 09:53:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=47045555</link><dc:creator>ClintEhrlich</dc:creator><comments>https://news.ycombinator.com/item?id=47045555</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47045555</guid></item><item><title><![CDATA[New comment by ClintEhrlich in "LCM: Lossless Context Management [pdf]"]]></title><description><![CDATA[
<p>Thanks for the kind words! Looks cool!</p>
]]></description><pubDate>Tue, 17 Feb 2026 09:49:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=47045519</link><dc:creator>ClintEhrlich</dc:creator><comments>https://news.ycombinator.com/item?id=47045519</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47045519</guid></item><item><title><![CDATA[New comment by ClintEhrlich in "LCM: Lossless Context Management [pdf]"]]></title><description><![CDATA[
<p>Hi NWU,<p>We don't have any other materials yet, but let's see if this lands for you. I can run you through a couple simpler versions of the system, why they don't work, and how that informs our ultimate design.<p>The most basic part of the system is "two layers". Layer 1 is the "ground truth" of the conversation - the whole text the user sees. Layer 2 is what the model sees, i.e., the active context window.<p>In a perfect world, those would be the same thing. But, as you know, context lengths aren't long enough for that, so we can't fit everything from Layer 1 into Layer 2.<p>So instead we keep a "pointer" to the appropriate part of Layer 1 in Layer 2. That pointer takes the form of a summary. But it's not a summary designed to contain all information. It's more like a "label" that makes sure the model knows where to look.<p>The naive version of the system would allow the main model to expand Layer 2 summaries by importing all of the underlying data from Layer 1. But this doesn't work well, because then you just end up re-filling the Layer 2 context window.<p>So instead you let the main model <i>clone</i> itself, the clone expands the summary in its context (and can do this for multiple summaries, transforming each into the original uncompressed text), and then the clone returns whatever information the main thread requires.<p>Where this system would not fully match the capabilities of RLMs is that, by writing a script that calls itself e.g. thousands of times, an RLM has the ability to make many more recursive tool calls than can fit in a context window.  So we fix that using operator-level recursion, i.e., we give the LLM a tool, map, that executes arbitrary recursion, without the LLM having to write a custom script to accomplish that.<p>Hope this helps!<p>- Clint</p>
]]></description><pubDate>Tue, 17 Feb 2026 09:23:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=47045367</link><dc:creator>ClintEhrlich</dc:creator><comments>https://news.ycombinator.com/item?id=47045367</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47045367</guid></item><item><title><![CDATA[New comment by ClintEhrlich in "LCM: Lossless Context Management [pdf]"]]></title><description><![CDATA[
<p>Our system uses sub-agents as a core part of its architecture.<p>That terminology can be confusing, because in other cases (and sometimes in our own architecture, like when executing thousands of operations via MAP) a sub-agent may be a smaller model given less complex individual tasks.<p>But the <i>core</i> mechanism we use for simulating unlimited context is to allow the main model to spin up instances of itself (sub-agents) with the previously summarized portion of the context expanded into its full, uncompressed state.<p>Expanding summaries into full text in sub-agents rather than the main thread is a critical part of our architecture, because it prevents the main context window from filling up.</p>
]]></description><pubDate>Tue, 17 Feb 2026 05:02:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=47043874</link><dc:creator>ClintEhrlich</dc:creator><comments>https://news.ycombinator.com/item?id=47043874</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47043874</guid></item><item><title><![CDATA[New comment by ClintEhrlich in "LCM: Lossless Context Management [pdf]"]]></title><description><![CDATA[
<p>Just passed this on to my co-author who is working on the plug-in. Really appreciate the suggestions!<p>We will probably ship a fairly basic version to start, but I think there are a lot of cool things that can be added.</p>
]]></description><pubDate>Mon, 16 Feb 2026 23:28:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=47041743</link><dc:creator>ClintEhrlich</dc:creator><comments>https://news.ycombinator.com/item?id=47041743</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47041743</guid></item><item><title><![CDATA[New comment by ClintEhrlich in "LCM: Lossless Context Management [pdf]"]]></title><description><![CDATA[
<p>Oh and to be clear YES you can try it!!!<p>Just bring an API key. :)<p>github.com/voltropy/volt</p>
]]></description><pubDate>Mon, 16 Feb 2026 23:08:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=47041588</link><dc:creator>ClintEhrlich</dc:creator><comments>https://news.ycombinator.com/item?id=47041588</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47041588</guid></item><item><title><![CDATA[New comment by ClintEhrlich in "LCM: Lossless Context Management [pdf]"]]></title><description><![CDATA[
<p>Thanks for the kind words.<p>Yes, we think there is a ton of low-hanging fruit from taking lessons from OS/PL theory and applying them to LLM tooling.<p>This is our first contribution in that direction. There will be more!</p>
]]></description><pubDate>Mon, 16 Feb 2026 23:00:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=47041530</link><dc:creator>ClintEhrlich</dc:creator><comments>https://news.ycombinator.com/item?id=47041530</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47041530</guid></item><item><title><![CDATA[New comment by ClintEhrlich in "LCM: Lossless Context Management [pdf]"]]></title><description><![CDATA[
<p>Yes, that is actually the next thing we are shipping!<p>We have heard from a ton of OpenClaw users that the biggest barrier to them getting everything they want out of their agents is that memory is not a solved problem.<p>LCM could be a great solution to that. Stay tuned -- will ship it ASAP.</p>
]]></description><pubDate>Mon, 16 Feb 2026 22:58:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=47041510</link><dc:creator>ClintEhrlich</dc:creator><comments>https://news.ycombinator.com/item?id=47041510</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47041510</guid></item><item><title><![CDATA[New comment by ClintEhrlich in "LCM: Lossless Context Management [pdf]"]]></title><description><![CDATA[
<p>Hi, I'm Clint, one of the co-authors of this paper.<p>I'd like to quickly summarize what is different about our approach and why it matters.<p>Our work was inspired by brilliant research done at MIT CSAIL on "Recursive Language Models" (RLMs). One of the controversies has been whether these models are just a formalization of what agents like Claude Code already do vs. whether they bring new capabilities to the table.<p>By outperforming Claude on the major long-context benchmark, we provide a strong signal that something fundamentally new is happening. (In other words, it's not "just Claude Code" because it demonstrably outperforms Claude Code in the long-context regime.)<p>Where our contribution, LCM, differs from RLMs is how we handle recursion. RLMs use "symbolic recursion" -- i.e., they have an LLM write a script to recursively call itself in order to manipulate the context, which is stored in a REPL. This provides maximum flexibility... but it often goes wrong, since the LLM may write imperfect scripts.<p>LCM attempts to decompose the recursion from RLMs into deterministic primitives so that the control flow can be managed by an engine rather than left to the whims of the LLM. In practice, this means we replace bespoke scripts with two mechanisms: 
(1) A DAG-based context management system that works like paged virtual memory, except for managing conversations and files;
and 
(2) Operator-level recursion, like "Map" for LLMs, which lets one tool call process thousands of tasks.<p>An analogy we draw in the paper is the evolution from GO-TO statements (of Dijkstra's "Considered Harmful" fame) to structured programming. RLMs are maximally expressive, but all of that power comes with the risk of things going awry. We have built a more mechanistic system, which can provide stronger guarantees when deployed in production with today's models.<p>Happy to answer any questions! Thanks for taking a look at the paper!</p>
]]></description><pubDate>Mon, 16 Feb 2026 22:47:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=47041397</link><dc:creator>ClintEhrlich</dc:creator><comments>https://news.ycombinator.com/item?id=47041397</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47041397</guid></item><item><title><![CDATA[LCM: Lossless Context Management [pdf]]]></title><description><![CDATA[
<p>Article URL: <a href="http://papers.voltropy.com/LCM">http://papers.voltropy.com/LCM</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47038411">https://news.ycombinator.com/item?id=47038411</a></p>
<p>Points: 81</p>
<p># Comments: 31</p>
]]></description><pubDate>Mon, 16 Feb 2026 18:31:19 +0000</pubDate><link>http://papers.voltropy.com/LCM</link><dc:creator>ClintEhrlich</dc:creator><comments>https://news.ycombinator.com/item?id=47038411</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47038411</guid></item><item><title><![CDATA[U.S. Patent Awarded to KRNC Blockchain, for Technology to Upgrade U.S. Dollar]]></title><description><![CDATA[
<p>Article URL: <a href="https://finance.yahoo.com/news/u-patent-awarded-krnc-blockchain-032500980.html">https://finance.yahoo.com/news/u-patent-awarded-krnc-blockchain-032500980.html</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=27595864">https://news.ycombinator.com/item?id=27595864</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Tue, 22 Jun 2021 19:13:43 +0000</pubDate><link>https://finance.yahoo.com/news/u-patent-awarded-krnc-blockchain-032500980.html</link><dc:creator>ClintEhrlich</dc:creator><comments>https://news.ycombinator.com/item?id=27595864</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27595864</guid></item><item><title><![CDATA[The Government Is Playing Around with a Hybrid Crypto Dollar]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.popularmechanics.com/technology/a32869513/us-government-research-crypto-dollar/">https://www.popularmechanics.com/technology/a32869513/us-government-research-crypto-dollar/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=23535611">https://news.ycombinator.com/item?id=23535611</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Tue, 16 Jun 2020 03:15:17 +0000</pubDate><link>https://www.popularmechanics.com/technology/a32869513/us-government-research-crypto-dollar/</link><dc:creator>ClintEhrlich</dc:creator><comments>https://news.ycombinator.com/item?id=23535611</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23535611</guid></item><item><title><![CDATA[The U.S. Government is paying a crypto startup to explore a digital dollar]]></title><description><![CDATA[
<p>Article URL: <a href="https://futurism.com/the-byte/us-gov-paying-crypto-startup-explore-digital-dollar">https://futurism.com/the-byte/us-gov-paying-crypto-startup-explore-digital-dollar</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=23506383">https://news.ycombinator.com/item?id=23506383</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sat, 13 Jun 2020 03:03:15 +0000</pubDate><link>https://futurism.com/the-byte/us-gov-paying-crypto-startup-explore-digital-dollar</link><dc:creator>ClintEhrlich</dc:creator><comments>https://news.ycombinator.com/item?id=23506383</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23506383</guid></item><item><title><![CDATA[National Science Foundation funds research into crypto dollars]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.coindesk.com/national-science-foundation-funds-research-into-crypto-dollars">https://www.coindesk.com/national-science-foundation-funds-research-into-crypto-dollars</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=23501305">https://news.ycombinator.com/item?id=23501305</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Fri, 12 Jun 2020 17:06:35 +0000</pubDate><link>https://www.coindesk.com/national-science-foundation-funds-research-into-crypto-dollars</link><dc:creator>ClintEhrlich</dc:creator><comments>https://news.ycombinator.com/item?id=23501305</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23501305</guid></item><item><title><![CDATA[National Science Foundation funds KRNC blockchain to upgrade U.S. Dollar]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.businesswire.com/news/home/20200610005134/en/National-Science-Foundation-Funds-KRNC-Blockchain-Upgrade">https://www.businesswire.com/news/home/20200610005134/en/National-Science-Foundation-Funds-KRNC-Blockchain-Upgrade</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=23480433">https://news.ycombinator.com/item?id=23480433</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Wed, 10 Jun 2020 18:28:36 +0000</pubDate><link>https://www.businesswire.com/news/home/20200610005134/en/National-Science-Foundation-Funds-KRNC-Blockchain-Upgrade</link><dc:creator>ClintEhrlich</dc:creator><comments>https://news.ycombinator.com/item?id=23480433</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23480433</guid></item><item><title><![CDATA[Turbulent Gas Clouds: Implications for reducing transmission of Covid-19]]></title><description><![CDATA[
<p>Article URL: <a href="https://jamanetwork.com/journals/jama/fullarticle/2763852">https://jamanetwork.com/journals/jama/fullarticle/2763852</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=22715940">https://news.ycombinator.com/item?id=22715940</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 29 Mar 2020 02:43:40 +0000</pubDate><link>https://jamanetwork.com/journals/jama/fullarticle/2763852</link><dc:creator>ClintEhrlich</dc:creator><comments>https://news.ycombinator.com/item?id=22715940</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22715940</guid></item><item><title><![CDATA[KRNC blockchain attracts $100M before launch]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.krnc.io/post/krnc-blockchain-attracts-more-than-100-million-before-launch">https://www.krnc.io/post/krnc-blockchain-attracts-more-than-100-million-before-launch</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=21588448">https://news.ycombinator.com/item?id=21588448</a></p>
<p>Points: 3</p>
<p># Comments: 0</p>
]]></description><pubDate>Wed, 20 Nov 2019 21:00:15 +0000</pubDate><link>https://www.krnc.io/post/krnc-blockchain-attracts-more-than-100-million-before-launch</link><dc:creator>ClintEhrlich</dc:creator><comments>https://news.ycombinator.com/item?id=21588448</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=21588448</guid></item><item><title><![CDATA[Pilot accidentally triggers hijacking alert at Amsterdam airport]]></title><description><![CDATA[
<p>Article URL: <a href="https://bnonews.com/index.php/2019/11/hijacking-alert-at-amsterdam-schiphol-airport/">https://bnonews.com/index.php/2019/11/hijacking-alert-at-amsterdam-schiphol-airport/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=21467074">https://news.ycombinator.com/item?id=21467074</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Wed, 06 Nov 2019 20:49:49 +0000</pubDate><link>https://bnonews.com/index.php/2019/11/hijacking-alert-at-amsterdam-schiphol-airport/</link><dc:creator>ClintEhrlich</dc:creator><comments>https://news.ycombinator.com/item?id=21467074</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=21467074</guid></item></channel></rss>