JetBrains Junie Leaves Beta: GA Release Features (June 2026)
JetBrains Junie Leaves Beta: What’s in the June 17, 2026 GA Release
JetBrains moved Junie out of beta on June 17, 2026 — the same day Vercel launched eve. Junie is JetBrains’ AI coding agent for IntelliJ IDEA, WebStorm, PyCharm, and the rest of the JetBrains IDE family, plus a new standalone CLI. Here’s what’s new at GA and how it stacks up against Cursor and Claude Code.
Last verified: June 22, 2026.
TL;DR
- GA date: June 17, 2026 (out of beta).
- What’s new: Agentic debugging, standalone CLI, bring-your-own-model keys.
- IDEs covered: IntelliJ IDEA, PyCharm, WebStorm, GoLand, RubyMine, Rider, CLion, PhpStorm.
- CLI: Works in terminal, CI/CD, GitHub Actions, GitLab CI.
- Pricing: Unchanged — AI Pro $100/year (10 credits/mo), AI Ultimate $300/year (35 credits/mo).
- Backend models: Default Claude via JetBrains; or bring your own Anthropic / OpenAI / Google keys.
- Biggest differentiator: Deep semantic codebase index from JetBrains’ existing IDE infrastructure.
What changed at GA
Junie has technically been “available” since early 2025, but JetBrains kept it on a beta tag while shipping new capabilities. The June 17, 2026 milestone is when JetBrains declared it production-ready. Three additions matter:
1. Agentic debugging
In the beta, Junie could plan multi-step tasks, edit across files, and run tests. At GA it can also debug. Concretely:
- Set breakpoints autonomously based on what it’s trying to investigate.
- Step through execution, inspect variables, evaluate expressions.
- Reason about runtime state: “the request fails because
user_idis null after the auth middleware — let me check the middleware order.” - Use the IDE’s own debugger, not a sandboxed approximation.
This is a meaningful capability gap closure vs Cursor, which has caught up on file editing but is still weaker at runtime inspection.
2. Standalone Junie CLI
Until GA, Junie only existed inside JetBrains IDEs. The CLI runs anywhere:
junie run "fix the failing test in src/auth.test.ts"
junie review "this PR" --commit-on-pass
This unlocks:
- CI/CD use — run Junie in a GitHub Actions or GitLab CI job to fix failing tests, regenerate docs, or apply linter suggestions.
- Terminal workflows — quick tasks without opening the IDE.
- Remote development — SSH into a server and run Junie there.
It’s a direct response to Claude Code’s terminal-first model and to OpenAI’s Codex CLI.
3. Bring-your-own-model keys
Default Junie runs on Claude via a JetBrains-hosted backend. At GA, you can plug in your own API keys:
- Anthropic — Claude Opus 4.8 / Fable 5 / Sonnet (Fable 5 currently requires data retention for Copilot integrations; check current policy)
- OpenAI — GPT-5.5 / GPT-5.4
- Google — Gemini 3.5 Pro
This matters for cost control (use your existing API contracts), data residency (route through your own infrastructure), and benchmarking (compare model output on your real codebase).
What stayed the same
JetBrains’ biggest moat is what Junie has had since day one: deep semantic codebase analysis from the IDE platform.
| Capability | Why it matters |
|---|---|
| Semantic index | Imports, types, references, call graphs as first-class data |
| Build configurations | Knows how the project compiles, what targets exist |
| Test runners | Runs JUnit, pytest, Jest with native IDE integration |
| Debugger access | Real breakpoints, variable inspection, expression evaluation |
| Database connections | Query real data, write and validate SQL against live schemas |
| Refactoring engine | Rename, move, extract method — IDE-grade transformations |
Cursor has a code index, but it’s a text-and-embedding approach. Junie has a compiler-grade index because JetBrains has been building IDEs for 25 years.
Pricing reality check
Pricing didn’t change at GA, but the cost picture is worth understanding:
| Plan | Price | Credits/month | What you get |
|---|---|---|---|
| AI Pro | $100/year ($8.33/mo) | 10 credits | Light usage, mostly chat + small tasks |
| AI Ultimate | $300/year ($25/mo) | 35 credits | Daily agentic work, debugging |
| All-Apps + AI | $10/mo add-on | ~3 credits | Joke tier — commit descriptions only |
A heavy debugging session can consume 1-3 credits per task. Users on r/Jetbrains report that $80 of Ultimate credits can be exhausted in a single day on a large project. Compare to:
- Cursor Pro: $20/mo flat with generous unlimited tier (post-Auto Router)
- Claude Code Max 5x: $100/mo, weekly token cap that resets
- GitHub Copilot Max: New tier as of June 1, 2026, usage-based credits
If you’re an all-day power user, factor in credit top-ups. AI Ultimate is the floor, not the ceiling.
Junie vs Cursor 4 vs Claude Code
Quick decision matrix updated for June 22, 2026:
| You want… | Pick |
|---|---|
| JetBrains IDE-native, deep codebase analysis | Junie |
| VS Code-based, biggest community, best UX | Cursor 4 |
| Terminal-first, Anthropic model loyalty | Claude Code |
| CI/CD automation in pull requests | Junie CLI or Claude Code |
| Best debugger integration | Junie (the only one with native breakpoints + IDE debugger) |
| Multi-model flexibility on day one | Cursor 4 (Auto Router) or Junie GA (BYO keys) |
| Cheapest unlimited tier | Cursor 4 Pro at $20/mo |
Who should switch to Junie at GA
Switch to Junie if:
- You already use a JetBrains IDE all day. The platform integration is unmatched.
- You spend significant time in the debugger. The agentic debugging feature is genuinely new.
- You want a CLI that respects your IDE’s project model.
- You have a Claude API contract and want to use those credits inside an IDE.
Don’t switch if:
- You’re a VS Code or Cursor power user. The friction isn’t worth it.
- You want a flat-rate plan. Junie is credit-metered.
- You’re on the bottom-tier All-Apps + AI plan — the credit allowance is too small for agentic work.
Bottom line
The Junie GA release closes most of the capability gap to Cursor and Claude Code, and it widens JetBrains’ lead on debugger integration and IDE-grade refactoring. If you live in IntelliJ or PyCharm, GA is the moment to take Junie seriously as your daily driver instead of an experimental sidekick.
The Junie CLI is the more strategic move — it lets JetBrains compete in the CI/CD and terminal markets where Claude Code and Codex CLI have been dominant. Watch this space.
Sources: JetBrains blog (June 17, 2026), Web Developer, Reddit r/Jetbrains, AltAI Tools review. Last verified: June 22, 2026.