Main
优先本地化:本地 LLM + IDE 上下文可减少敏感代码外发的需求。
把安全工具当护栏:在 review 流程里跑 gitleaks/opengrep/trivy,提前暴露常见问题。
固化可重复流程:例如 生成 → 测试 → 扫描 → 重构,而不是在 IDE 内随意聊天式改代码。
把模型与运行环境要求写清楚:让团队机器上的插件行为更一致。
README (excerpt)
DevoxxGenie
Devoxx Genie is a fully Java-based LLM Code Assistant plugin for IntelliJ IDEA, designed to integrate with local LLM providers such as Ollama, LMStudio, GPT4All, Llama.cpp and Exo but also cloud based LLM's such as OpenAI, Anthropic, Mistral, Groq, Gemini, DeepInfra, DeepSeek, Kimi, GLM, OpenRouter, Azure OpenAI and Amazon Bedrock
🆕 Security Scanning — Run Gitleaks (secret detection), OpenGrep (SAST) and Trivy (dependency CVEs) directly from the LLM agent. Findings are automatically created as prioritised tasks in the Spec Browser for tracking and remediation!
🆕 Spec Driven Development (SDD) — Define tasks in Backlog.md, browse them in the Spec Browser with Task List and Kanban Board views, then let the Agent implement them autonomously! Use the Agent Loop to run multiple tasks in a single batch with dependency ordering and automatic advancement.
🆕 AI-powered Inline Code Completion — Get context-aware code suggestions as you type using Fill-in-the-Middle (FIM) models via Ollama or LM Studio!
Source-backed notes
- README 的工具表格列出 Gitleaks/OpenGrep/Trivy,并给出
brew install ...示例命令。 - 仓库为 MIT 许可证且近期更新(已通过 GitHub API 复核)。
- 仓库定位为 IntelliJ IDEA 插件(由 README 与项目结构说明)。
FAQ
- 一定要 Homebrew 吗?:不一定:Homebrew 主要用于安装可选的安全工具;插件本身在 IntelliJ 里安装。
- 是开源的吗?:是:MIT 许可证(已通过 GitHub API 复核)。
- 这些工具用来干嘛?:README 列出 gitleaks/opengrep/trivy,用于 secrets/SAST/依赖安全扫描流程。