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 skills/konveyor/agentic-controller/javaee-to-quarkusnpx skills add konveyor/agentic-controller --skill javaee-to-quarkusgit clone --depth 1 https://github.com/konveyor/agentic-controllerWhat 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.00058 | $0.00621 |
| Opus 5 | $0.00029 | $0.00311 |
| Sonnet 5 | $0.00012 | $0.00124 |
| Haiku 4.5 | $0.00006 | $0.00062 |
Grade A, and why
javaee-to-quarkus 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 — 45 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Java EE 7/8 to Quarkus 3 Migration
Prerequisite: Ensure your application compiles on Java EE before starting. Java 17 is the minimum JDK for Quarkus 3.
This migration goes beyond a javax-to-jakarta namespace rename. It replaces the Java EE programming model with Quarkus: EJB → CDI managed beans, JMS/MDB → SmallRye Reactive Messaging, WAR → JAR packaging, persistence.xml → application.properties, JNDI lookups → direct injection, and app server lifecycle hooks → Quarkus lifecycle events. The result is a standalone Quarkus application with no application server dependency.
Phases
Execute in order. After each phase, run the project build and stop if it fails.
- Build Config — Restructure pom.xml: WAR→JAR, add Quarkus BOM and plugin, replace Java EE dependencies with Quarkus extensions. See
modules/build-config.md. - App Config — Replace persistence.xml with application.properties, remove web.xml and beans.xml. See
modules/app-config.md. - EJB to CDI — Replace EJB annotations with CDI, remove Remote/Local interfaces, replace JNDI lookups with injection. See
modules/ejb-to-cdi.md. - Messaging — Convert MDB classes to SmallRye Reactive Messaging, replace JMS producers with Emitter. See
modules/messaging.md. - Lifecycle — Replace server-specific lifecycle listeners with Quarkus startup/shutdown events. See
modules/lifecycle.md. - Cleanup — Delete legacy files, remove weblogic/jboss stubs, verify no javax.* EE imports remain. See
modules/cleanup.md.
How to use
Load each phase's module when starting that phase. Each module contains before/after code examples and references mapping tables in references/. Apply every applicable transformation to the codebase.
Build gate
After completing each phase:
- Detect the project's build tool (check metadata
build_toolfield above, or detect from project files:pom.xml→mvn compile) - Run the build
- If it fails, fix the issue before proceeding
- If you cannot fix it, stop and report to the user
What ships with it
12 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- modules/app-config.md 2.0 KB
- modules/build-config.md 2.5 KB
- modules/cleanup.md 1.6 KB
- modules/ejb-to-cdi.md 2.2 KB
- modules/lifecycle.md 2.0 KB
- modules/messaging.md 2.8 KB
- references/annotation-map.md 2.6 KB
- references/config-map.md 3.5 KB
- references/dependency-map.md 3.2 KB
- references/pattern-map.md 3.5 KB
- references/sources.md 1.3 KB
- references/verify-errors.md 4.0 KB
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 · 45 lines · 58 tokens per session scan A 66bfc12722cd
javaee-to-quarkus is a skill published in the GitHub repository konveyor/agentic-controller (2 stars, last pushed 5d ago), licensed Apache-2.0. It adds 58 tokens to every session and 621 once invoked, about $0.0003 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-31.
Other skills, from other repositories
azure-compute-batch-java
Azure Batch SDK for Java. Run large-scale parallel and HPC batch jobs with pools, jobs, tasks, and compute nodes. Triggers: "BatchClient java", "azure batch java", "batch pool java", "batch job java", "HPC java", "parallel computing java".
maven-druid-build
Building Apache Druid with Maven, managing memory constraints, and skipping verification checks.
quarkus-kubernetes-native
Deploy container-first Quarkus applications on Kubernetes with fast startup, low memory, native images, and health probes. Use when Quarkus is chosen specifically for cloud/Kubernetes efficiency over Spring Boot.
java-deploy
Build and deploy Java applications — Maven, Gradle, Spring Boot, version detection, and Dockerfile patterns. Use when deploying a Java project, or when pom.xml or build.gradle is detected.
java-build-optimization
Expert guidance on optimizing a Java Android Gradle build — configuration cache, R8 optimization, resource shrinking, parallel execution, and remote build cache. Use this when build times regress or APK/AAB size bloats.
airflow-java-sdk
Guide for contributing to the Airflow Java SDK (AIP-108). Use this skill whenever a contributor is working in the java-sdk/ directory or on the Java coordinator in task-sdk/src/airflow/sdk/coordinators/java/ — whether they want to add a feature, write tests, fix a bug, understand the architecture, or prepare a PR.…