Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add instructions/devoxx/devoxxgenieideaplugin/claude-mdgit clone --depth 1 https://github.com/devoxx/DevoxxGenieIDEAPluginWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.01285 | $0.01285 |
| Opus 5 | $0.00642 | $0.00642 |
| Sonnet 5 | $0.00257 | $0.00257 |
| Haiku 4.5 | $0.00128 | $0.00128 |
Grade A, and why
DevoxxGenieIDEAPlugin CLAUDE.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 136 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Project Overview
DevoxxGenie is a Java-based LLM Code Assistant plugin for IntelliJ IDEA that integrates with both local LLM providers ( Ollama, LMStudio, GPT4All, Llama.cpp, Exo) and cloud-based LLMs (OpenAI, Anthropic, Mistral, Groq, Gemini, DeepInfra, DeepSeek, OpenRouter, Azure OpenAI, Amazon Bedrock). The plugin supports advanced features like RAG (Retrieval-Augmented Generation), MCP (Model Context Protocol) servers, web search, and agentic programming capabilities.
Threading Constraints
This is a JetBrains/IntelliJ plugin. UI operations must run on the EDT (Event Dispatch Thread), and long-running
operations must NOT block it. Use ApplicationManager.getApplication().invokeLater() or ReadAction/WriteAction
as appropriate.
Workflow Rules
When asked to investigate or fix an issue, do NOT deeply explore the entire codebase autonomously. Start focused on the specific area mentioned, and ask before expanding scope. Avoid unnecessary web searches unless explicitly requested.
Git Workflow
Always create a feature/fix branch BEFORE making any code changes. Never edit code on the current branch without
confirming the branch strategy first. Feature/fix branches for issues are cut from develop (e.g. fix/issue-1234).
Testing
When asked to investigate a bug, write a reproducing test FIRST — confirm it fails — before applying any fix, unless told otherwise.
Build & Development Commands
Java Version Requirement
IMPORTANT: This project requires JDK 21 for building. JDK 25 causes Gradle build script failures. Always set JAVA_HOME before running Gradle commands:
export JAVA_HOME=~/.sdkman/candidates/java/21-zulu
Testing
IMPORTANT: Always pipe test output to grep for failures so you can immediately focus on what failed:
./gradlew test 2>&1 | grep -E "FAILED|failed"
./gradlew test --tests ClassName 2>&1 | grep -E "FAILED|failed"
./gradlew test --tests ClassName.methodName 2>&1 | grep -E "FAILED|failed"
./gradlew verifyPlugin # Verify plugin (includes tests)
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 136 lines · 1,285 tokens per session scan A c9dfed81a1c1
DevoxxGenieIDEAPlugin CLAUDE.md is an instructions file published in the GitHub repository devoxx/DevoxxGenieIDEAPlugin (677 stars, last pushed 6d ago), licensed MIT. It adds 1,285 tokens to every session, about $0.0064 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
parlant CLAUDE.md
Instructions for emcie-co/parlant: This is the main repo of Parlant (https://parlant.io).
opencode-bar AGENTS.md
Instructions for opgginc/opencode-bar, covering important restriction, coding rules, branding guides, ui styling rules and explicit 'used' or 'left'.
optio CLAUDE.md
Instructions for jonwiggins/optio, covering claude.md, what is optio?, architecture, pod-per-repo with worktrees and worktree lifecycle.
freellmpool AGENTS.md
Instructions for 0xzr/freellmpool, covering agent instructions, how to work in this project, starting work, for complex features (multi-file, spec-driven) and available skills.
imagine-mcp CLAUDE.md
Instructions for n24q02m/imagine-mcp, covering imagine-mcp, architecture, tool signatures, model selection and transport modes.
co-op AGENTS.md
Instructions for Afnanksalal/co-op, covering co-op agent guide, product contract, workspace map, required checks and engineering rules.