VOOZH about

URL: https://thenewstack.io/agentic-coding-how-googles-jules-compares-to-claude-code/

⇱ Agentic Coding: How Google’s Jules Compares to Claude Code - 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-06-14 07:00:55
Agentic Coding: How Google’s Jules Compares to Claude Code
tutorial,
AI / AI Engineering / Software Development

Agentic Coding: How Google’s Jules Compares to Claude Code

Google's version of an agentic coding tool that isn't IDE-based is Jules. We look at how it works and how it compares to Claude Code.
Jun 14th, 2025 7:00am by David Eastman
👁 Featued image for: Agentic Coding: How Google’s Jules Compares to Claude Code
Photo by YASA Design Studio on Unsplash.

After my successful use of Claude Code, I was keen to try other equivalent agentic large language model (LLM) tools that aren’t IDE-based. These have better ways to interact with a plan than staring at files. Because a plan can be expressed as an ordered set of well-known coding practices, an LLM just acts as a code wrangler — which we know it does well.

The Google project Jules describes itself as “an async development agent — Jules tackles bugs, small feature requests, and other software engineering tasks, with direct export to GitHub.” I like the way they have limited what they think the tool can tackle. I’m not so happy that it only works over GitHub even at beta — this might make sense for Microsoft, not Google.

My previous example project that I used to test Claude would be suitable for Jules: some early code for a Rails CRUD project that I wanted to add Bootstrap to. The task did not appear particularly challenging for Claude, so what I’m looking at mostly is the workflow with Jules.

Using Jules

Jules clones your repo into a private virtual machine (VM) and gets to work. When I initially try Jules (marked as beta, like everything Google produces), I get an interesting formal privacy notice that is a somewhat harsh buzzkill to the playful bitmap graphics style on the previous page. It made the usual confusing set of statements about what Google uses and what they don’t read — none of which can be proven. Apparently, they never read code from private repositories, but even that statement is couched in caveats.

There is a 90-second video that shows a user connecting to GitHub, selecting a repo and then making a request. I like the fact that it can do anything “you would normally write a PR for.” Again, this is a nice sizing premise for the product — even though it’s slightly different from what I read above. It uploads your code and creates a plan that you can approve. This should feel comfortable for non-developers, with diffs displayed in a side panel.

Jules also pushes the idea of a collaborator, not just a tool — much like Claude. Hence, it has a friendly (and gender-neutral) sounding name. After working on the plan, it then creates a new branch and puts the code on that. That’s a sensible approach from an engineering point of view, but it suddenly forces causal users to understand the semantics of git. That almost feels vindictive.

Getting Code Into GitHub

OK, my example code project isn’t in GitHub yet, but we can put it there.

In a similar step to what I did with Claude, I untarred an early build of my Rails project for my work with Jules:

👁 Image

Now we’ll push this code to GitHub. The best way to do that is to create a repo in your account, then push your code after adding the new remote. (This is actually a reasonable task for AI, too!)

Go into your GitHub account and set up the repo:

👁 Image

I sadly declined the excellent suggestion of “cautious-octo-succotash” for the repo name, though I’m sure I will use it in the future. Then I take a note of what will become the remote destination:

👁 Image

And then we just push the code from the command line after putting it into a local git repo. You may very well need a personal credential to do this. The trick is to add the remote:

👁 Image

When your code is safely in GitHub, you can go back to using Jules. And once you give permission for the repository, you should finally be able to put Jules through its paces, with your chosen project:

👁 Image

OK, this is roughly what I asked Claude to do with my basic Rails app, so we ask roughly the same thing:

  • Use Bootstrap 5 definitions to improve HTML.
  • Apply Bootstrap color utilities to improve visual hierarchy.
  • Update buttons with Bootstrap button classes.

So I copied this into the chat panel. After booting up the VM, cloning the repo and reading the files (about 2 minutes), it worked out a plan:

👁 Image

Note that if you don’t immediately approve, then it auto-approves after about a minute! But I approved the plan.

Remember, there’s a lot here I have not said. I did have a few examples in code, but not consistently applied.

While working through the tasks, it had already shown me what it did with the main sidebar within applications.html.erb, which looked very similar to how Claude cleaned it up.

After some time (remember it isn’t working on your local system, so time is not a big issue), it was ready to publish:

👁 Image

So I could publish the improvements branch, and then merge it into my main branch. While this does require a casual user to align with the git workflow, it’s the correct way to do things. Of course, I can go straight to GitHub and check that there was indeed a new branch:

👁 Image

As expected, it had made a sensible entry for its change:

👁 Image

I created the pull request and merged it. Now, I don’t normally use the pull request method — within internal corporate repositories, it wasn’t the norm — but all we’re doing is confirming that the changes made by Jules are approved to be merged into the project’s main code. When the merge is done, the branch becomes redundant:

👁 Image

So now I’ll do a local pull and see how it looks.

I won’t do a side-by-side comparison of the Rails app after Claude changed it, but I’ll compare the same set of images. Here is the original project code with sidebar:

👁 Image

And here is the same section now after Jules upgraded it:

👁 Image

Apart from the much nicer sidebar, Jules has made no changes to the links on this page. It did clean up nicely elsewhere.

I gave it one more instruction — the exact same hint with Bootstrap that I also gave to Claude to change path links:

👁 Image

It did make the improved changes. Here’s how it looked:

👁 Image

If I was more specific, I would’ve been able to change all the links at once.

Conclusion

This wasn’t quite as clever as Claude in getting my intents, but with a little more prompt engineering, I know I’ll get the right results. The process of iteration and testing is a little lengthier using pull requests, but it’s more of an industrial workflow. Obviously, I prefer not having to use GitHub; but then again, I appreciate that Google is doing everything on their own hardware.

As usual, Google’s products are internally inconsistent, which is part joy, part head scratcher. But what they have recognized is the causal coder market, recently opened up by vibe coding. I think Jules makes the mark here.

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.