https://github.com/ryanj/quarkus-skills-runner
https://github.com/ryanj/quarkus-skills-runner
Last synced: 28 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ryanj/quarkus-skills-runner
- Owner: ryanj
- License: mit
- Created: 2026-04-24T18:29:21.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-05-13T16:40:02.000Z (3 months ago)
- Last Synced: 2026-05-13T18:13:37.645Z (3 months ago)
- Language: Java
- Size: 415 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Agents: AGENTS.md
Awesome Lists containing this project
README
# Quarkus Skills Runner
Agentic [Skills](https://agentskills.io/) with [Quarkus](https://quarkus.io/) and [LangChain4j](https://docs.quarkiverse.io/quarkus-langchain4j/dev/skills.html)
## Configuration:
Export your `OPENAI_API_KEY`:
```shell
export OPENAI_API_KEY="YOUR_OPENAI_API_KEY"
```
Optionally configure a custom `quarkus.langchain4j.openai.base-url` in `src/main/resources/application.properties`
Optionally enable ollama support in `pom.xml`
## Build and Run:
```shell script
./mvnw package && java -jar target/quarkus-app/quarkus-run.jar
```
## Basic SKILL interactions:
Check to see which skills are available:
```shell
what skills do you have?
```
To test the `poem-writing` skill, enter the following command at the prompt:
```
/poem-writing
```
Additional examples are available in [DEMO.md](https://github.com/ryanj/quarkus-skills-runner/blob/main/DEMO.md)