| name | quarkus |
| description | Guides Quarkus development across REST APIs, CDI dependency injection, Hibernate ORM, Panache, configuration, OpenAPI, templates, messaging, security, observability, packaging, and tooling. Use when building Quarkus applications, adding endpoints or clients, configuring datasources or OIDC, debugging build or runtime issues, or choosing extensions. |
| license | MIT |
| metadata | {"author":"b6k-dev","version":"0.1.0"} |
Quarkus
Use this as the entrypoint skill for Quarkus work in any kind of project.
Use decision tree below to find the right domain, then load detailed references.
Decision Tree
What do you need?
โโ Dependency injection (CDI / ArC)
โ โโ dependency-injection
โโ Application configuration (.properties, profiles, config mapping)
โ โโ configuration
โโ REST and HTTP APIs
โ โโ web-rest
โโ Templates and server-side rendering (Qute)
โ โโ templates
โโ OpenAPI and API contract documentation
โ โโ openapi
โโ Databases, ORM, migrations, data access
โ โโ Standard JPA / Hibernate ORM usage
โ โ โโ data-orm
โ โโ Panache entities and repositories for simpler CRUD/data access
โ โ โโ data-panache
โ โโ Schema migrations and database evolution with Flyway
โ โ โโ data-migrations
โ โโ Advanced Hibernate ORM features: multiple persistence units, multitenancy, caching, extension points
โ โโ data-orm-advanced
โโ Event streaming and asynchronous messaging channels
โ โโ Is the event crossing a service/process boundary?
โ โ โโ YES -> messaging
โ โโ NO (in-process only)
โ โโ Need clustering or non-blocking event loop behavior
โ โ โโ YES -> vertx-event-bus
โ โโ Want portability and type safety
โ โโ YES -> cdi-events
โโ Communicating with external APIs, communication between services
โ โโ Need asynchronous delivery, replay, or broker-managed fan-out
โ โ โโ messaging
โ โโ Need synchronous request/response calls
โ โ โโ service-communication
โ โ โโ Shared protobuf contract and HTTP/2 streaming fit well
โ โ โ โโ service-communication-grpc
โ โ โโ Standard HTTP/JSON or simpler interoperability matters more
โ โ โโ service-communication-rest
โโ Authentication, authorization, identity providers
โ โโ Need core Quarkus security concepts, RBAC, built-in auth mechanisms, or custom policies
โ โ โโ security-core
โ โโ Protect endpoints with OpenID Connect
โ โ โโ Inbound bearer tokens, browser login redirects, or hybrid OIDC apps
โ โ โ โโ security-oidc
โ โ โโ Outbound token acquisition, refresh, exchange, or propagation to downstream services
โ โ โโ security-oidc-client
โ โโ Need JWT verification or token building without full OIDC integration
โ โ โโ security-jwt
โ โโ Need username/password identity stores backed by JPA, JDBC, or LDAP
โ โ โโ security-identity-providers
โ โโ Need passkeys or WebAuthn flows
โ โ โโ security-webauthn
โ โโ Need to test secured applications
โ โโ security-testing
โโ Logging, health, metrics, traces
โ โโ Need help choosing signals, management exposure, or local observability stack
โ โ โโ observability
โ โโ Logging configuration, JSON logs, MDC, and log shipping
โ โ โโ observability-logging
โ โโ Liveness/readiness/startup probes and Health UI
โ โ โโ observability-health
โ โโ Metrics, Micrometer registries, and Prometheus/OTLP export
โ โ โโ observability-metrics
โ โโ Distributed tracing, propagation, and OpenTelemetry
โ โโ observability-tracing
โโ Native image, jars, and container packaging
โ โโ native-and-packaging
โ โโ Need a native build, closed-world metadata, native SSL, or native-only runtime behavior
โ โ โโ native-image
โ โโ Need JVM artifact shape decisions: `fast-jar`, `uber-jar`, `mutable-jar`, layout, or re-augmentation
โ โ โโ packaging-jars
โ โโ Need container image packaging: Jib, Docker, Podman, OpenShift, Buildpacks, tags, push, or base images
โ โโ packaging-containers
โโ Testing
โ โโ Start with the feature module you are testing (for example `security-testing` or `native-image`)
โโ Dev mode, CLI, build plugins
โโ tooling
General guidelines
- Quarkus resolves much of its framework wiring at build time, so expect many integration mistakes to fail during build or startup rather than deep at runtime.
- Align all extension versions through the Quarkus platform BOM.
- Start with the smallest extension set, then add only what the feature needs.
- Never skip writing high-level integration tests and prefer them opposed to unit testing individual components. Only write unit tests when they are actually beneficial, e.g. implementing methods with complex logic