AI coding agent skills for Kora Framework development.
Russian version: README.ru.md
This repository ships skill packages for Kora Framework. The current package is kora-v1, built for the Kora 1.x line.
The kora-v1 name is intentional: it leaves room for a future kora-v2 package when Kora 2.x needs separate guidance, while kora-1x and kora-1.x remain searchable aliases in metadata.
git clone <repository-url> kora-skills
cd kora-skills
./plugins/kora-v1/install.shThis is the recommended universal path for agents: clone the repo, run the installer, restart the target coding agent.
This repository is a Claude-compatible plugin marketplace. The marketplace manifest is:
.claude-plugin/marketplace.json
If your Claude Code or OpenClaude build supports plugins:
- Open Claude Code.
- Run
/plugin. - Add this repository as a plugin marketplace.
- Install the
kora-v1plugin. - Restart or reload plugins.
If the plugin UI is unavailable, use the shell installer:
./plugins/kora-v1/install.shCodex uses a separate repo-local marketplace manifest:
.agents/plugins/marketplace.json
From the repository root, add this repository marketplace and install kora-v1:
codex plugin marketplace add .
codex plugin add kora-v1@kora-skillsIf Codex CLI plugin commands are unavailable in your build, use the shell installer:
./plugins/kora-v1/install.shThe installer targets these local skill locations:
| Agent | Target |
|---|---|
| Claude Code | ~/.claude/skills/kora-v1 |
| OpenAI Codex | ~/.agents/skills/kora-v1 |
| Pi Coding Agent | ~/.pi/skills/kora-v1 |
| OMP | ~/.omp/skills/kora-v1 |
| Cursor | ~/.cursor/skills/kora-v1 |
| OpenClaude / OpenClaw | ~/.openclaude/skills/kora-v1 |
Manual fallback for any SKILL.md-compatible agent:
mkdir -p ~/.local/share/skills/kora-v1
cp -r plugins/kora-v1/SKILL.md plugins/kora-v1/skills ~/.local/share/skills/kora-v1/When the package is published to a skills registry:
npx skills add kora-projects/kora-v1After installation, restart your AI coding agent and ask:
Help me create a Kora 1.x microservice with HTTP endpoints.
Add a JDBC repository to this Kora service.
Create a Kora SOAP/WSDL client.
Debug this Kora DI graph error.
kora-skills/
README.md
README.ru.md
.claude-plugin/
marketplace.json
.agents/
plugins/
marketplace.json
plugins/
kora-v1/
SKILL.md
skill.json
install.sh
README.md
README.ru.md
.claude-plugin/
plugin.json
.codex-plugin/
plugin.json
skills/
kora-core-master-meta-skill/
kora-di-compile/
...
If you are an AI coding agent reading this README and the user asks to install Kora skills:
- Prefer
./plugins/kora-v1/install.shfrom the repository root. - If shell execution is blocked, copy
plugins/kora-v1/SKILL.mdandplugins/kora-v1/skills/into the agent-specific target directory from the table above. - For Claude Code or OpenClaude plugin installs, use
/pluginwhen available and add this repository as the marketplace from.claude-plugin/marketplace.json. - For Codex plugin installs, use
.agents/plugins/marketplace.json, then runcodex plugin marketplace add .andcodex plugin add kora-v1@kora-skills. - After installation, tell the user to restart or reload the target agent.
- Do not rename the installed skill. Keep
kora-v1as the directory and skill name.
kora-v1 contains 39 domain skills plus one Codex meta-skill:
- Core:
kora-di-compile,kora-di-runtime,kora-config-hocon,kora-config-yaml,kora-json - Project setup:
kora-project-setup-java,kora-project-setup-kotlin,kora-project-dependencies - HTTP and OpenAPI:
kora-http-server,kora-http-server-auth,kora-http-client,kora-http-client-auth,kora-openapi-generator-server,kora-openapi-generator-client,kora-openapi-management - Data:
kora-database-jdbc,kora-database-cassandra,kora-database-migration - Messaging:
kora-kafka-producer,kora-kafka-consumer - gRPC and SOAP:
kora-grpc-server,kora-grpc-client,kora-soap-client - Telemetry:
kora-telemetry-tracing,kora-telemetry-metrics,kora-telemetry-logging - AOP:
kora-aop-caching,kora-aop-resilient,kora-aop-logging,kora-aop-scheduling-jdk,kora-aop-scheduling-quartz,kora-aop-validation - Testing:
kora-testing-junit-java,kora-testing-junit-kotlin,kora-testing-blackbox - Tools and learning:
kora-s3,kora-mapstruct,kora-journal,kora-teacher - Agent compatibility:
kora-core-master-meta-skill
The package is prepared for agents and runtimes that understand SKILL.md-style skills or local skill folders:
- Claude Code
- OpenAI Codex
- Pi Coding Agent
- OMP
- Cursor
- Gemini CLI
- OpenClaude / OpenClaw
- Other SKILL.md-compatible agents
| Resource | Link |
|---|---|
| Kora Framework docs | https://kora-projects.github.io/kora-docs |
| Official examples | https://github.com/kora-projects/kora-examples |
| Java template | https://github.com/kora-projects/kora-java-template |
| Kotlin template | https://github.com/kora-projects/kora-kotlin-template |
| SKILL.md specification | https://agentskills.io/specification |