Skip to main content

5 posts tagged with "LLM"

View All Tags

ACP Runners: From Text Pipes to Agent Protocols

· 6 min read
Stephan Janssen
Creator of DevoxxGenie

In the previous blog post, we introduced CLI Runners — a way to use your existing AI subscriptions (Claude Pro, Copilot, Gemini, etc.) directly inside IntelliJ by piping prompts to external CLI tools. CLI Runners solved the "double-paying" problem, but they communicate through plain text over stdin/stdout. That works, but it's a bit like having a conversation by passing notes under a door.

ACP Runners open that door. Instead of unstructured text, they use the Agent Communication Protocol — a structured, bidirectional communication layer built on JSON-RPC 2.0 — to turn your IDE into a proper agent hub.

CLI Runners: Use Your AI Subscriptions Directly Inside Your JetBrains IDE

· 6 min read
Stephan Janssen
Creator of DevoxxGenie

You're paying for Claude Pro. You've got a GitHub Copilot seat. Maybe you're subscribed to Google Gemini or Kimi too. But when you want to use these tools for serious coding work, you're jumping between terminal windows, browser tabs, and your IDE — context-switching constantly.

What if you could route all of that through a single interface inside IntelliJ, using the subscriptions you already pay for?

That's exactly what CLI Runners in DevoxxGenie do.

Stop Prompting, Start Specifying: Introducing Spec-driven Development in DevoxxGenie

· 5 min read
Stephan Janssen
Creator of DevoxxGenie

We've all been there. You open your AI coding assistant, type a prompt, get a result, realise it missed half the requirements, rephrase, try again. Rephrase and repeat. It works (kind of) but it doesn't scale and we lose history.

What if instead of ad-hoc prompting, you could define exactly what needs to be built as a structured spec, and then let the AI agent implement it autonomously — checking off acceptance criteria as it goes?

That's the idea behind Spec-driven Development (SDD), the latest feature in DevoxxGenie v0.9.7.

The DevoxxGenie Plugin Goes Agentic

· 3 min read
Stephan Janssen
Creator of DevoxxGenie

DevoxxGenie has come a long way from its origins as a simple LLM chat plugin for IntelliJ IDEA. With the latest releases, the plugin has made a fundamental shift — from passive AI assistance to agentic AI capabilities. This reflects a paradigm shift in how developers interact with AI: we're moving beyond generating code snippets toward autonomous agents that can explore, reason about, and modify your codebase.

DevoxxGenie - Your AI Assistant for IntelliJ IDEA

· 3 min read
Devoxx Team
DevoxxGenie Development Team

DevoxxGenie is a powerful AI-powered assistant for IntelliJ IDEA that helps developers be more productive by leveraging the capabilities of Large Language Models (LLMs). Unlike other code assistants, DevoxxGenie is built entirely in Java and offers unique flexibility by supporting both local and cloud-based LLM providers.