Close Menu
    Trending
    • Three OpenClaw Mistakes to Avoid and How to Fix Them
    • I Stole a Wall Street Trick to Solve a Google Trends Data Problem
    • How AI is turning the Iran conflict into theater
    • Why Your AI Search Evaluation Is Probably Wrong (And How to Fix It)
    • Machine Learning at Scale: Managing More Than One Model in Production
    • Improving AI models’ ability to explain their predictions | MIT News
    • Write C Code Without Learning C: The Magic of PythoC
    • LatentVLA: Latent Reasoning Models for Autonomous Driving
    ProfitlyAI
    • Home
    • Latest News
    • AI Technology
    • Latest AI Innovations
    • AI Tools & Technologies
    • Artificial Intelligence
    ProfitlyAI
    Home » How to Facilitate Effective AI Programming
    Artificial Intelligence

    How to Facilitate Effective AI Programming

    ProfitlyAIBy ProfitlyAIDecember 29, 2025No Comments8 Mins Read
    Share Facebook Twitter Pinterest LinkedIn Tumblr Reddit Telegram Email
    Share
    Facebook Twitter LinkedIn Pinterest Email


    with AI is an efficient means of accelerating coding velocity. AI brokers can deal with plenty of the easy and repetitive duties, when you can act as an orchestrator to your brokers.

    An issue I typically encounter, nevertheless, is that I’ve extra context in my head than an AI agent may ever have. This might, for instance, be:

    • Enterprise goal with a characteristic
    • Technical discussions are taking place orally within the workplace
    • Conferences the place we mentioned totally different subjects
    • Historic data

    The similarity between all of those is that this info sometimes isn’t written down, and is unquestionably not out there to your AI agent when implementing code.

    This infographic highlights the principle contents of this text. I’ll focus on how a serious problem with at the moment’s coding brokers is that they don’t have entry to the identical context that people have entry to. Moreover, I’ll cowl particular methods I make the most of to present my coding brokers as a lot related context as potential. Picture by Gemini.

    Nonetheless, everyone knows that to be as efficient a programmer as potential, you want in depth context. You should know why a characteristic is being constructed to make the appropriate selections when implementing the code. The technical discussions within the workplace are necessary to understanding the codebase, and tasks are sometimes formed in conferences. The query then is:

    How can we make AI have the identical context as human programmers?

    I’d argue the reply is to be strict about writing down all data (which is now rather a lot easier utilizing AI instruments), and offering tooling for the AI to have entry to this info.

    On this article, I’ll focus on how I’m making an attempt to facilitate my coding agent to be as environment friendly as potential. I consider a big a part of that is merely to verify the AI has entry to the identical info I’ve, and I’ll focus on three particular methods I take advantage of each day to make this occur.

    I feel an necessary level in why coding agent isn’t simpler, is just because they don’t have entry to the identical context people have entry to

    Why present all context to the AI

    The principle motive for offering your AI coding agent as a lot context as potential is that the extra info the AI has, the higher it’s going to carry out.

    Think about you needed to implement a characteristic, say, for instance, a device to summarize conferences. Creating this characteristic is extremely troublesome in case you don’t know:

    • Which repository ought to the code belong to?
    • Ought to it summarize all conferences, or simply exterior conferences?
    • How briskly does the summarization have to occur? 5 seconds, or 5 minutes?

    These questions are all contexts that you just get as a human {that a} coding agent doesn’t natively have entry to.

    You realize which code repository to implement the code in, since you’ve labored within the repository earlier than.

    You realize it ought to solely summarize exterior conferences, and that it solely must summarize in 5 minutes, as a result of it was mentioned in the course of the shaping assembly final week.

    Nonetheless, in case you don’t present your coding agent with this context on implementation, it’s going to by no means be capable of implement the characteristic the best way you need it applied.

    If the agent lacks context that you’ve, you’ll discover the agent begins performing undesired actions. That is irritating and time-consuming, however may be eradicated by syncing your context, with the coding agent’s context

    3 Methods to Present Context to AI

    On this part, I’ll cowl particular methods I take advantage of in my day-to-day to supply my coding brokers as a lot context as potential. I consider these methods are crucial to creating me environment friendly as a programmer, and I’m consistently on the lookout for extra methods to grow to be much more efficient.

    Retailer IaC schema in a Markdown file

    A easy method you should use to present the AI extra context is to retailer your Infrastructure as Code in a simple-to-access file.

    IaC is the code representing info resembling:

    • Desk names
    • S3 buckets and prefixes
    • Manufacturing logs
    • Permissions,

    While you’ve been working in an organization for some time, you in all probability have all of this info memorized. You keep in mind the desk names of crucial tables, and which S3 buckets retailer what, and through which prefixes.

    Nonetheless, your coding agent doesn’t have easy entry to this, until you present them entry. The best means to do that is:

    1. Retailer all of your IaC repositories in a single folder
    2. Inform a coding agent to undergo all of those repositories and summarize all of the IaC in a single Markdown file
    3. Now you may check with this Markdown file everytime you need your agent to work with something IaC

    It’s troublesome to elucidate how a lot time this has saved me. My agent doesn’t must record all database tables earlier than discovering the appropriate desk storing the knowledge it’s on the lookout for. As an alternative, it merely is aware of all of those desk names and immediately accesses the appropriate info. This makes the agent rather a lot quicker and in addition cheaper, because it’s spending fewer tokens to seek out the knowledge it’s on the lookout for.

    Discover when your coding agent is lacking context

    One other necessary level is to be alert to when your AI is lacking context. Should you didn’t summarize your IaC (as defined within the final part), you’ll in all probability discover the agent is at all times:

    1. Itemizing all desk names
    2. Reasoning about which desk is the proper one to entry now
    3. Attempt accessing one desk, and typically be flawed, and must attempt one other desk

    This can be a results of your coding agent lacking necessary context. Everytime you discover a sample like this, you must instantly interrupt and inform the coding agent:

    While you search for paperwork, yow will discover them within the desk referred to as
    DocumentTable. Memorize this in AGENTS.md

    Now the agent will keep in mind this for subsequent time, and also you’ll save plenty of time and tokens.


    I urge you to at all times search for conditions the place your coding agent is struggling. If it’s taking longer than standard for a job, it’s normally as a result of it’s lacking context, and it’s your job to supply that context to the AI coding agent.

    Summarize conferences with AI instruments

    One other easy method you should use to supply your coding agent extra context is to summarize conferences with AI instruments, resembling Granola, and supply this as context to your coding agent.

    For instance, in case you had a shaping assembly discussing find out how to implement a characteristic, you may summarize that assembly and supply it as context to your coding agent when implementing the characteristic.

    This fashion, the agent has entry to the entire info you do about how the characteristic needs to be applied. This can be a low cost and easy method you may make the most of to enhance the context of your coding agent.


    To amend the final part, I additionally need to spotlight that shaping conferences ought to sometimes lead to correctly formed duties in venture administration instruments resembling Linear.

    The characteristic you’re implementing, for instance, needs to be summarized and formed utterly right into a single Linear situation or venture. If that is so, you must solely have to supply for AI agent entry to the Linear situation (which you are able to do with the Linear MCP), to make sure it has entry to all of the related info.

    Conclusion

    On this article, I’ve lined find out how to facilitate simpler programming with AI coding brokers. I’ve mentioned how a quite common drawback for coding brokers is that they don’t have entry to the identical context human programmers have. That is easy as a result of subjects are mentioned in conferences and across the workplace, and this info shouldn’t be written down. I’ve highlighted three particular methods I take advantage of to present my coding agent as a lot context as potential. I consider that within the coming years, we’ll see nice enhancements in coding brokers’ efficiency, just because we’re higher in a position to present all of them the context that’s wanted to successfully full duties.

    👉 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
    Previous ArticleMachine Learning vs AI Engineer: What Are the Differences?
    Next Article The ascent of the AI therapist
    ProfitlyAI
    • Website

    Related Posts

    Artificial Intelligence

    Three OpenClaw Mistakes to Avoid and How to Fix Them

    March 9, 2026
    Artificial Intelligence

    I Stole a Wall Street Trick to Solve a Google Trends Data Problem

    March 9, 2026
    Artificial Intelligence

    Why Your AI Search Evaluation Is Probably Wrong (And How to Fix It)

    March 9, 2026
    Add A Comment
    Leave A Reply Cancel Reply

    Top Posts

    When 50/50 Isn’t Optimal: Debunking Even Rebalancing

    July 24, 2025

    Does More Data Always Yield Better Performance?

    November 10, 2025

    OpenAI Hits $12 Billion in Revenue, ChatGPT Study Mode, More AI Job Losses, AI Is Coming for Consultants, Big Tech Earnings & Gemini 2.5 Deep Think

    August 5, 2025

    Nvidia rekommenderar att varje land ska ha en egen nationell AI

    May 26, 2025

    Running Python Programs in Your Browser

    May 12, 2025
    Categories
    • AI Technology
    • AI Tools & Technologies
    • Artificial Intelligence
    • Latest AI Innovations
    • Latest News
    Most Popular

    Google DeepMind’s Genie 3 Could Be the Virtual World Breakthrough AI Has Been Waiting For

    August 12, 2025

    Hidden Gems in NumPy: 7 Functions Every Data Scientist Should Know

    October 21, 2025

    Exposing biases, moods, personalities, and abstract concepts hidden in large language models | MIT News

    February 19, 2026
    Our Picks

    Three OpenClaw Mistakes to Avoid and How to Fix Them

    March 9, 2026

    I Stole a Wall Street Trick to Solve a Google Trends Data Problem

    March 9, 2026

    How AI is turning the Iran conflict into theater

    March 9, 2026
    Categories
    • AI Technology
    • AI Tools & Technologies
    • Artificial Intelligence
    • Latest AI Innovations
    • Latest News
    • Privacy Policy
    • Disclaimer
    • Terms and Conditions
    • About us
    • Contact us
    Copyright © 2025 ProfitlyAI All Rights Reserved.

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