Close Menu
    Facebook LinkedIn YouTube WhatsApp X (Twitter) Pinterest
    Trending
    • when asked whether xAI has ever distilled tech from OpenAI, Elon Musk says the claim is “partly” true (New York Times)
    • What’s New on HBO Max in May 2026: ‘Wuthering Heights,’ ‘On the Roam’ and More
    • AI Cyberattacks Meet Memory-Safe Code Defenses
    • Proxy-Pointer RAG: Multimodal Answers Without Multimodal Embeddings
    • Compact electric cargo bike fits in your closet
    • Blackbird leads $14 million Seed round for the ‘Canva of financial advice’
    • This Summer, the American Water Crisis Becomes Real
    • US officials are preparing a wide-ranging AI policy memo that outlines rules for national security agencies’ AI use, including avoiding single vendors (Bloomberg)
    Facebook LinkedIn WhatsApp
    Times FeaturedTimes Featured
    Thursday, April 30
    • Home
    • Founders
    • Startups
    • Technology
    • Profiles
    • Entrepreneurs
    • Leaders
    • Students
    • VC Funds
    • More
      • AI
      • Robotics
      • Industries
      • Global
    Times FeaturedTimes Featured
    Home»Artificial Intelligence»How to Maximize Agentic Memory for Continual Learning
    Artificial Intelligence

    How to Maximize Agentic Memory for Continual Learning

    Editor Times FeaturedBy Editor Times FeaturedDecember 10, 2025No Comments8 Mins Read
    Facebook Twitter Pinterest Telegram LinkedIn Tumblr WhatsApp Email
    Share
    Facebook Twitter LinkedIn Pinterest Telegram Email WhatsApp Copy Link


    fashions able to automating quite a lot of duties, akin to analysis and coding. Nonetheless, usually occasions, you’re employed with an LLM, full a activity, and the subsequent time you work together with the LLM, you begin from scratch.

    This can be a main drawback when working with LLMs. We waste plenty of time merely repeating directions to LLMs, akin to the specified code formatting or find out how to carry out duties in keeping with your preferences.

    That is the place brokers.md information are available in: A option to apply continuous studying to LLMs, the place the LLM learns your patterns and behaviours by storing generalizable info in a separate file. This file is then learn each time you begin a brand new activity, stopping the chilly begin drawback and serving to you keep away from repeating directions.

    On this article, I’ll present a high-level overview of how I obtain continuous studying with LLMs by frequently updating the brokers.md file.

    On this article, you’ll discover ways to apply continuous studying to LLMs. Picture by Gemini.

    Why do we’d like continuous studying?

    Beginning with a contemporary agent context takes time. The agent wants to choose up in your preferences, and it is advisable to spend extra time interacting with the agent, getting it to do precisely what you need.

    For instance:

    • Telling the agent to make use of Python 3.13 syntax, as a substitute of three.12
    • Informing the agent to at all times use return sorts on features
    • Guaranteeing the agent by no means makes use of the Any kind

    I usually needed to explicitly inform the agent to make use of Python 3.13 syntax, and never 3.12 syntax, in all probability as a result of 3.12 syntax is extra prevalent of their coaching dataset.

    The entire level of utilizing AI brokers is to be quick. Thus, you don’t wish to be spending time repeating directions on which Python model to make use of, or that the agent ought to by no means use the Any kind.

    Moreover, the AI agent generally spends further time determining info that you have already got out there, for instance:

    • The identify of your paperwork desk
    • The names of your CloudWatch logs
    • The prefixes in your S3 buckets

    If the agent doesn’t know the identify of your paperwork desk, it has to:

    1. Checklist all tables
    2. Discover a desk that sounds just like the doc desk (could possibly be a number of potential choices)
    3. Both make a lookup to the desk to verify, or ask the consumer
    Agentic memory
    This picture represents what an agent has to do to seek out the identify of your paperwork desk. First, it has to record all tables within the database, then discover related desk names. Lastly, the agent has to verify it has the right desk by both asking the consumer for affirmation or making a lookup within the desk. This takes plenty of time. As an alternative of this, you may retailer the identify of the doc desk in brokers.md, and be far simpler together with your coding agent in future interactions. Picture by Gemini.

    This takes plenty of time, and is one thing we are able to simply stop by including the doc desk identify, CloudWatch logs, and S3 bucket prefixes into brokers.md.

    Thus, the principle motive we’d like continuous studying is that repeating directions is irritating and time-consuming, and when working with AI brokers, we wish to be as efficient as potential.

    Easy methods to apply continuous studying

    There are two foremost methods I strategy continuous studying, each involving heavy utilization of the brokers.md file, which you need to have in each repository you’re engaged on:

    1. Every time the agent makes a mistake, I inform the agent find out how to right the error, and to recollect this for later within the agent.md file
    2. After every thread I’ve had with the agent, I take advantage of the immediate beneath. This ensures that something I advised the agent all through the thread, or info it found all through the thread, is saved for later use. This makes later interactions far simpler.
    Generalize the data from this thread, and bear in mind it for later. 
    Something that could possibly be helpful to know for a later interplay, 
    when doing comparable issues. Retailer in brokers.md

    Making use of these two easy ideas will get you 80% on the best way to continuous studying with LLMs and make you a much more efficient engineer.


    An important level is to at all times preserve the agentic reminiscence with brokers.md in thoughts. Every time the agent does one thing you don’t like, you at all times have to recollect to retailer it in brokers.md

    You would possibly assume you’re risking bloating the brokers.md file, which is able to make the agent each slower and extra pricey. Nonetheless, this isn’t actually the case. LLMs are extraordinarily good at condensing info down right into a file. Moreover, even when you’ve got an brokers.md file consisting of hundreds of phrases, it’s probably not an issue, neither with regard to context size or value.

    The context size of frontier LLMs is tons of of hundreds of tokens, in order that’s no problem in any respect. And for the fee, you’ll in all probability begin seeing the price of utilizing the LLM go down. The explanation for that is that the agent will spend fewer tokens determining info, as a result of that info is already current in brokers.md.

    Heavy utilization of brokers.md for agentic reminiscence will each make LLM utilization sooner, and scale back value

    Some added suggestions

    I might additionally like so as to add some extra suggestions which can be helpful when coping with agentic reminiscence.

    The primary tip is that when interacting with Claude Code, you may entry the agent’s reminiscence utilizing “#”, after which write what to recollect. For instance, write this into the terminal when interacting with Claude Code:

    # At all times use Python 3.13 syntax, keep away from 3.12 syntax

    You’ll then get an possibility, as you see within the picture beneath. Both you reserve it to the consumer reminiscence, which shops the knowledge for all of your interactions with Claude Code, irrespective of the code repository. That is helpful for generic info, like at all times having a return kind for features.

    The second and third choices are to reserve it to the present folder you’re in or to the basis folder of your venture. This may be helpful for both storing folder-specific info, for instance, solely describing a selected service. Or for storing details about a code repository usually.

    Claude Code Memory Options
    This picture highlights the totally different reminiscence choices you could have with Claude. You possibly can both save into the consumer reminiscence, storing the reminiscence throughout all of your periods, irrespective of the repository. Moreover, you may retailer it in a subfolder of the venture you’re in, for instance, if you wish to retailer details about a selected service. Lastly, it’s also possible to retailer the reminiscence within the root venture folder, so all work with the repository may have the context. Picture by the creator.

    Moreover, totally different coding brokers use totally different reminiscence information.

    • Claude Code makes use of CLAUDE.md
    • Warp makes use of WARP.md
    • Cursor makes use of .cursorrules

    Nonetheless, all brokers often learn brokers.md, which is why I like to recommend storing info in that file, so you could have entry to the agentic reminiscence irrespective of which coding agent you’re utilizing. It is because someday Claude Code would be the finest, however we’d see one other coding agent on high one other day.

    AGI and continuous studying

    I might additionally like so as to add a notice on AGI and continuous studying. True continuous studying is usually stated to be one of many final hindrances to reaching AGI.

    Presently, LLMs basically faux continuous studying by merely storing issues they be taught into information they learn in a while (akin to brokers.md). Nonetheless, the best can be that LLMs frequently replace their mannequin weights every time studying new info, basically the best way people be taught instincts.

    Sadly, true continuous studying is just not achieved but, but it surely’s possible a functionality we’ll see extra of within the coming years.

    Conclusion

    On this article, I’ve talked about find out how to develop into a much more efficient engineer by using brokers.md for continuous studying. With this, your agent will decide up in your habits, the errors you make, the knowledge you often use, and plenty of different helpful items of knowledge. This once more will make later interactions together with your agent far simpler. I imagine heavy utilization of the brokers.md file is crucial to changing into a superb engineer, and is one thing you need to continuously attempt to attain.

    👉 My Free Sources

    🚀 10x Your Engineering with LLMs (Free 3-Day Email Course)

    📚 Get my free Vision Language Models ebook

    💻 My webinar on Vision Language Models

    👉 Discover me on socials:

    📩 Subscribe to my newsletter

    🧑‍💻 Get in touch

    🔗 LinkedIn

    🐦 X / Twitter

    ✍️ Medium



    Source link

    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email
    Editor Times Featured
    • Website

    Related Posts

    Proxy-Pointer RAG: Multimodal Answers Without Multimodal Embeddings

    April 30, 2026

    DeepSeek’s new AI model is rolling out quietly, not to the Wall Street market shock

    April 30, 2026

    System Design Series: Apache Flink from 10,000 Feet, and Building a Flink-powered Recommendation Engine

    April 30, 2026

    Agentic AI: How to Save on Tokens

    April 29, 2026

    4 YAML Files Instead of PySpark: How We Let Analysts Build Data Pipelines Without Engineers

    April 29, 2026

    Ensembles of Ensembles of Ensembles: A Guide to Stacking

    April 29, 2026

    Comments are closed.

    Editors Picks

    when asked whether xAI has ever distilled tech from OpenAI, Elon Musk says the claim is “partly” true (New York Times)

    April 30, 2026

    What’s New on HBO Max in May 2026: ‘Wuthering Heights,’ ‘On the Roam’ and More

    April 30, 2026

    AI Cyberattacks Meet Memory-Safe Code Defenses

    April 30, 2026

    Proxy-Pointer RAG: Multimodal Answers Without Multimodal Embeddings

    April 30, 2026
    Categories
    • Founders
    • Startups
    • Technology
    • Profiles
    • Entrepreneurs
    • Leaders
    • Students
    • VC Funds
    About Us
    About Us

    Welcome to Times Featured, an AI-driven entrepreneurship growth engine that is transforming the future of work, bridging the digital divide and encouraging younger community inclusion in the 4th Industrial Revolution, and nurturing new market leaders.

    Empowering the growth of profiles, leaders, entrepreneurs businesses, and startups on international landscape.

    Asia-Middle East-Europe-North America-Australia-Africa

    Facebook LinkedIn WhatsApp
    Featured Picks

    Val Kilmer’s digital resurrection is jolting the entertainment industry, and raising some uncomfortable dilemmas

    March 23, 2026

    UK and US team up to dismantle $15B international crypto scam and illegal gambling network

    October 15, 2025

    Disney Outage on YouTube TV Gets Spicier as Google Spurns ABC

    November 4, 2025
    Categories
    • Founders
    • Startups
    • Technology
    • Profiles
    • Entrepreneurs
    • Leaders
    • Students
    • VC Funds
    Copyright © 2024 Timesfeatured.com IP Limited. All Rights.
    • Privacy Policy
    • Disclaimer
    • Terms and Conditions
    • About us
    • Contact us

    Type above and press Enter to search. Press Esc to cancel.