You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add Intent + Claude Code update section to AI blog post
Expand the blog post about using AI agents for Javalin 7 with a new
section about switching to Augment Intent + Claude Code. Updates the
disclosure note to mention Anthropic's OSS maintainer program and adds
sections on the orchestrator workflow and why the switch felt natural.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
**Disclosure**: As the maintainer of a major open-source project on GitHub, I receive some benefits from GitHub, including free GitHub Copilot credits. I'm also receiving free credits for Augment as part of their open-source program, and I was granted additional credits for working on Javalin 7. That said, the experiences shared in this post are based on my actual usage of these tools while working on the Javalin 7 release, but I want to be transparent about my relationship with the companies involved.
15
-
</small>
12
+
<smallmarkdown="1">**Disclosure**: As the maintainer of a major open-source project on GitHub, I receive some benefits from GitHub, including free GitHub Copilot credits. I'm also receiving free credits for Augment as part of their open-source program, and I was granted additional credits for working on Javalin 7. Since writing this post, I've switched to using [Augment Intent](https://augment.dev/intent) with [Claude Code](https://claude.ai/code) as my primary development tool. I have full access to Claude Code through Anthropic's open-source maintainer program. The experiences shared in this post are based on my actual usage of these tools, but I want to be transparent about my relationships with the companies involved.</small>
16
13
17
-
<smallmarkdown="1">
18
-
**Note**: This post was written in December 2025. AI coding tools are evolving rapidly, and the landscape may look very different by the time you read this. The specific comparisons and recommendations here reflect the state of these tools at the time of writing and will likely become outdated.
19
-
</small>
14
+
<smallmarkdown="1">**Note**: This post was originally written in December 2025, with an update added in March 2026. AI coding tools are evolving rapidly, and the landscape may look very different by the time you read this. The specific comparisons and recommendations here reflect the state of these tools at the time of writing and will likely become outdated.</small>
20
15
21
16
## Introduction
22
17
@@ -113,22 +108,35 @@ I tried both Google Antigravity and Copilot for [splitting JavalinConfig into Ja
113
108
To be clear, Augment isn't always the right choice. If you're doing autocomplete-style coding (writing new features from scratch, implementing well-defined algorithms, or making small isolated changes), Copilot works well and costs much less.
114
109
115
110
For me, Augment's value is strongest for:
111
+
116
112
- Tedious bulk updates across many files (dependency upgrades with API migrations)
117
113
- Exploratory refactoring where you want to try something without committing hours
- Long-backlogged features that are easy but time-consuming
121
117
118
+
## Update: Switching to Intent + Claude Code
119
+
120
+
Since writing this post, I've moved to [Augment Intent](https://augment.dev/intent) with [Claude Code](https://docs.anthropic.com/en/docs/claude-code) as my main development tool. The reasons I preferred Augment, deep context understanding, automatic conventions, stepwise verification, are all still there, but the workflow around them is fundamentally better.
121
+
122
+
Intent is a macOS app that orchestrates AI coding agents. It's not really an IDE and it's not a chatbot plugin for one either. It's a coordination layer: you get code, browser, terminal, and git in one window, and AI agents work alongside you in that workspace. You mainly interact with 1 agent (an "Orchestrator"), and this agent is responsible for delegating work to other more specialized agents.
123
+
124
+
### How I get access
125
+
126
+
I get full Claude Code access through Anthropic's open-source maintainer program, they provide free plans to OSS maintainers, similar to how GitHub provides free Copilot. Intent works with your existing Claude Code setup (bring your own agent), so there's no additional agent licensing on top. For open-source work, this makes the whole setup effectively free.
127
+
128
+
### Why the switch felt natural
129
+
130
+
Looking back at what I wrote about my workflow, small tasks, immediate review, spawning a second agent for code review, stepwise verification, I was already doing manually what Intent automates. The Coordinator + Specialist + Verifier pattern is pretty much a formalized version of my existing process.
131
+
122
132
## Conclusion
123
133
124
134
Agentic pair programming has changed how I maintain Javalin. Without it, the project would make slower progress.
125
135
126
-
For the work I do on Javalin — complex refactoring, architectural changes, large codebases — Augment has been the most effective of the three tools I tested. It costs more than the alternatives, so whether it's worth it depends on the kind of work you're doing. The [MCP integration with JetBrains IDEs](https://www.jetbrains.com/help/idea/mcp-server.html)is particularly useful.
136
+
For the work I did on the Javalin 7 release, Augment was the most effective of the three tools I tested. Since then, I've switched to Intent + Claude Code, which takes the same strengths, deep context, automatic conventions, stepwise verification, and adds proper multi-agent orchestration and spec-driven development on top. For solo maintainers juggling a project alongside other responsibilities, having agents that can work in parallel and coordinate automatically is very nice.
127
137
128
-
If you're doing autocomplete-style coding, Copilot works well and costs less. If you're doing complex refactoring or maintaining a large codebase solo, Augment may be worth evaluating.
138
+
If you're doing autocomplete-style coding, Copilot still works well and costs less. If you're doing complex refactoring or maintaining a large codebase solo, the agentic approach, whether through Augment, Intent, or whatever comes next, is worth evaluating.
129
139
130
140
Your mileage may vary, but this is what worked for me.
0 commit comments