VOOZH about

URL: https://thenewstack.io/augment-code-an-ai-coding-tool-for-real-development-work/

⇱ Augment Code: An AI Coding Tool for 'Real' Development Work - The New Stack


TNS
SUBSCRIBE
Join our community of software engineering leaders and aspirational developers. Always stay in-the-know by getting the most important news and exclusive content delivered fresh to your inbox to learn more about at-scale software development.
REQUIRED
It seems that you've previously unsubscribed from our newsletter in the past. Click the button below to open the re-subscribe form in a new tab. When you're done, simply close that tab and continue with this form to complete your subscription.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.
Welcome and thank you for joining The New Stack community!
Please answer a few simple questions to help us deliver the news and resources you are interested in.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Great to meet you!
Tell us a bit about your job so we can cover the topics you find most relevant.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Welcome!

We’re so glad you’re here. You can expect all the best TNS content to arrive Monday through Friday to keep you on top of the news and at the top of your game.

What’s next?

Check your inbox for a confirmation email where you can adjust your preferences and even join additional groups.

Follow TNS on your favorite social media networks.

Become a TNS follower on LinkedIn.

Check out the latest featured and trending stories while you wait for your first TNS newsletter.

PREV
1 of 2
NEXT
VOXPOP
As a JavaScript developer, what non-React tools do you use most often?
Angular
0%
Astro
0%
Svelte
0%
Vue.js
0%
Other
0%
I only use React
0%
I don't use JavaScript
0%
Thanks for your opinion! Subscribe below to get the final results, published exclusively in our TNS Update newsletter:
NEW! Try Stackie AI
From clobbered drafts to real-time sync
Apr 14th 2026 10:00am, by David Moore
TypeScript 6.0 RC arrives as a bridge to a faster future
Mar 14th 2026 9:00am, by Darryl K. Taft
Mastra empowers web devs to build AI agents in TypeScript
Jan 28th 2026 11:00am, by Loraine Lawson
2025-02-18 11:30:09
Augment Code: An AI Coding Tool for 'Real' Development Work
tutorial,
AI / AI Engineering / Developer tools

Augment Code: An AI Coding Tool for ‘Real’ Development Work

While Bolt is aimed at a broad user base, Augment Code is an AI coding tool specifically for working developers. We check it out.
Feb 18th, 2025 11:30am by David Eastman
👁 Featued image for: Augment Code: An AI Coding Tool for ‘Real’ Development Work
Image by Elena Helade via Unsplash+. 
I’ve been working in Visual Studio Code with Copilot running, just for the completions. But I’ve found them to be fairly solid — a bit like a junior dev who has an idea what you might want to write next. We know LLMs are able to intuit based on a large sample of examples (we are never quite as unique as we think), but beyond that I have seen plenty of evidence that my digital junior has understood the context of the problem beyond simple pattern matching. While the standard of the code is basic, that actually doesn’t matter. From an agile perspective, it allows me to move on quickly. Augment Code describes itself as “the first AI coding assistant built for professional software engineers and large codebases.” In my last post I looked at Bolt, which is aimed squarely at boosting non-professionals. So this post is weighted more appropriately towards working developers, doing what Augment Code calls “real work.” Unusually, Augment was quick to point to their Visual Studio Code extension, and made it clear what the process was. This is too often left to discovery. 👁 Image
My only concern would be whether I should turn off Copilot or whether the two extensions would co-inhabit. Starting with an open project, I followed the above instructions. As I imagined, I soon ran into this: 👁 Image
It is probably the right time to wonder at how this will work going forward. It isn’t quite possible for every assistant to fit into a switchable component, because we have yet to settle on one set of styles that work. I want Augment to do “its thing” — whatever that is. We are still at the innovation stage of the assistant journey. But enabling and disabling extensions works for now, I guess. Also, Augment stated that it “synced codebases.” For now, I won’t wonder at exactly what this means, but I’ll assume it is part of the indexing process whereby Augment learns more about the purpose and style of your project. Augment starts by showing you a summary of your project. It worked out that mine was a game based on Unity, with a separate map and narrative system (by looking at the assemblies). It then recognized the different packages — although it assumed the independent packages were all from Unity — and recognized Plastic SCM as the source control. It managed a hand-waving but coherent attempt at working out what the game was about. What was more impressive is that it went on to pose a few questions that I could later ask Augment: 👁 Image
Disregarding the ownership issues around Unity, these are all fairly good questions. The last one, which seems to be pushing JetBrains Rider, might be a cheeky bit of in-app advertising but might also be based on the genuine belief that Rider is the best Unity IDE for C#. Augment thankfully has a straightforward LLM-based service offering, including code completions: 👁 Image
The first case (“chat”) is covered well by the most recent LLM models and helped Augment make the summary and questions we saw above. Note that Augment appends its robot head icon to the left sidebar. We’ll start with the third case, instructions. I know that I left in an awkward set of conditionals when checking on a range, and was happy to see what Augment would do to improve it. The if block just sees where a distance fits into a range bounded by enums and sends the enum back with the location. The code (written by Copilot) was perfectly functional, and a lot of people might prefer it for production. I needed to press Cmd/Ctrl I to ask. 👁 Image
I asked Augment to improve on this. It created a new tab (good idea) with the file and placed the change in the context of a diff: 👁 Image
It correctly made sure there was only one return statement, which was the biggest original flaw. It used a switch with a modern functional style that is indeed neater. No, I wouldn’t necessarily write this code (it is only valid since recent C# 8), but it ticks the box. I push to accept, and it joins the codebase. Now, technically, Augment states it will only use code that is in your style, but I did specifically ask to improve the code. I am not sure Augment has a log of instruction requests — this was given upfront for Bolt, and I think it would be useful for Augment, too.
DistanceToTargetType distanceType = res switch 
{ 
 < (float)DistanceToTargetType.Close => DistanceToTargetType.Close, 
 < (float)DistanceToTargetType.Medium => DistanceToTargetType.Medium, 
 < (float)DistanceToTargetType.Far => DistanceToTargetType.Far,
 _ => DistanceToTargetType.Beyond 
};
Let’s move on to code completions. These are the Billy The Kid fast draw style of suggestions that have to be delivered quickly in the edit area so as not to interfere with developer flow, but are therefore the easiest to integrate into day-to-day development. What we are looking for is the ability to make valid tactical suggestions. The original term “completion” just implied the ability to recognise that the dev was starting to type a method call from an API, or a local variable. Now LLMs can spot language conventions, likely clauses, logical pairings and more. Another thing to remember is if the suggestion comes slightly too late, it will actually hinder you — even if it is correct. So, while Augment currently uses a tuned GPT-3, future reasoning models can only be used once set to instantaneous response (assuming an adjustable intelligence level). It is down to the tuning, not so much the model. Certainly on my MacBook M4, it was quick enough. For example, I started typing: 👁 Image
This is just debugging the contents of a Recommendation instance ‘rec’. Augment suggested: 👁 Image
So, it did a number of good things in this example.
  • It realized that the TagDebug class was my internal logging class and that I would want to express its contents using an interpolated string.
  • It understood that “rec” was a subclass of the Recommendation class and that the object it was recommending (a location) was stored within the instance. It also noted that the name of the subclass would be useful.
  • It understood that I would want to see the negative case too, hence “No recommendation.”
  • By using an English word, the LLM can reasonably gather that the class is indeed some form of recommendation.
This understanding mixes coding expertise with real-world cognition to quickly forge a strong suggestion. Actual development is built line by line, hence this is definitely useful. What percentage of this was garnered by looking at my project, or from general patterns, is Augment’s secret sauce.

Conclusion

AI-assisted coding is already a busy field, but by aligning to working developers rather than a wider user base, Augment may be able to out-muscle the competition with higher quality suggestions delivered at pace. Obviously, Microsoft might try and lock them out with Visual Code and Copilot — and also, the environment may look different when token prices go up and pricing becomes relevant again. But for now, enjoy modern development with an AI partner.
TRENDING STORIES
David has been a London-based professional software developer with Oracle Corp. and British Telecom, and a consultant helping teams work in a more agile fashion. He wrote a book on UI design and has been writing technical articles ever since....
Read more from David Eastman
SHARE THIS STORY
TRENDING STORIES
SHARE THIS STORY
TRENDING STORIES
TNS DAILY NEWSLETTER Receive a free roundup of the most recent TNS articles in your inbox each day.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.