kora-v2

kora-v2 is a skill for Claude Code from kora-projects/kora-skills. It costs 330 tokens per session (7,123 once invoked), scanned C, original, Apache-2.0.

A development guide for building Java and Kotlin services with the Kora Framework 2.0, including its framework-specific patterns and tools.

In plain words
What is it for?
It supports starting, changing, and maintaining Kora microservices, including application setup, dependency injection, HTTP, databases, messaging, and service interfaces.
Why use it?
It helps an agent follow Kora's rules and APIs instead of treating the framework like a generic Java or Kotlin project.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python3 skills/kora-journal/scripts/kora_journal.py search "http interceptor auth" --limit 5.

Part of the kora-v2 plugin — 1 skill shipped together

Good fit It supports starting, changing, and maintaining Kora microservices, including application setup, dependency injection, HTTP, databases, messaging, and service interfaces.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/kora-projects/kora-skills
agentmods
npx agentmods add skills/kora-projects/kora-skills/kora-v2

Made for: Claude Code.

Or install kora-v2, the plugin that ships this one along with the rest of its 1 skill.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for kora-v2

README.md
[![agentmods](https://agentmods.dev/badge/skills/kora-projects/kora-skills/kora-v2/github.svg)](https://agentmods.dev/skills/kora-projects/kora-skills/kora-v2)
Your own site
<a href="https://agentmods.dev/skills/kora-projects/kora-skills/kora-v2"><img src="https://agentmods.dev/badge/skills/kora-projects/kora-skills/kora-v2/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for kora-v2

Your own site · 80×15
<a href="https://agentmods.dev/skills/kora-projects/kora-skills/kora-v2"><img src="https://agentmods.dev/badge/skills/kora-projects/kora-skills/kora-v2.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 330 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 7,123 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What 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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00330 $0.07123
Opus 5 $0.00165 $0.03562
Sonnet 5 $0.00066 $0.01425
Haiku 4.5 $0.00033 $0.00712

Measured 5d ago against content hash 691cf6ff36a2, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade C, and why

kora-v2 scanned grade C with 1 finding 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 5d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (install.sh, skills/kora-aop-scheduling-jdk/scripts/setup-jdk.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

rm -rf .kora-agent/kora-source-2.0/.git .kora-agent/kora-examples-2.0/.git
plugins/kora-v2/SKILL.md · 396 lines

How it starts

The opening of the file, as written. The whole thing — 396 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Kora Framework 2.0 — Meta-skill

Single entry point for all Kora 2.0 development. This file is routing and rules only — the implementation knowledge lives in the 39 sub-skills listed below.

Framework Kora 2.0, group io.koraframework, BOM io.koraframework:kora-bom
Version 2.0.0.RC1 — the only 2.0 release on Maven Central. 2.0.0-SNAPSHOT is the master development line and needs a snapshot repository
Java 25 minimum. Kora 2.0 artifacts are compiled to class-file 69; older JVMs cannot load them
Gradle JVM The JDK running Gradle itself must also be ≥ 25 when io.koraframework:openapi-generator is on the buildscript classpath
Kotlin 2.4.10 with KSP 2.3.11 — the versions the framework itself is built with
Build Gradle 9.5.1 (the wrapper the Kora 2.0 examples pin)

This meta-skill is the single entry point for Kora Framework development. It routes to 39 specialized domain skills, each with its own narrow area of expertise.

Read this file first when:

  • Starting a new Kora 2.0 microservice project from scratch (Java or Kotlin)
  • Adding or refactoring a @KoraApp application graph with *Module interfaces
  • Choosing which Kora modules to plug in (HTTP, Database, Kafka, gRPC, SOAP, S3, Telemetry)
  • Debugging DI container issues ("dependency not found", ambiguous bindings, graph build failures)
  • Configuring typed config with @ConfigSource / @ConfigMapper and environment substitution
  • Planning a multi-module Gradle project with @KoraSubmodule boundaries
  • Migrating an existing Kora 1.x service — see §6

1. Operating rules

Four rules. They apply to every Kora task, on every turn, from the first message. Each is stated once — here.

R0 is a gate: satisfy it before doing anything else. R1–R3 govern the work itself.

R0 — Ground the workspace before starting, on 2.0 refs

The upstream material is level 5 of the R1 chain and the final authority for every Kora question. It must be on disk before you begin, not fetched reactively once you are already stuck.

Read the full file on GitHub · 396 lines

Files

What ships with it

60 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.

Changes

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.

  1. 5d ago First seen · 396 lines · 330 tokens per session scan C 691cf6ff36a2

Subscribe to this mod's changes

kora-v2 is a skill published in the GitHub repository kora-projects/kora-skills (1 stars, last pushed 9d ago), licensed Apache-2.0. It adds 330 tokens to every session and 7,123 once invoked, about $0.0016 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-04.

Related

Other skills, from other repositories

authoring-java-sdk-tasks

Writes Airflow task logic in Java, Kotlin, or any JVM language using the Airflow Java SDK. Use when the user wants to implement Airflow tasks in Java/JVM, asks about @Builder.Dag/@Builder.Task/@Builder.XCom, the Task/BundleBuilder interfaces, reading connections/variables/XComs from Java, the JSON-to-Java type…

astronomer/agents · 152 tokens

null-safety

Use when annotating nullability in Spring Boot 3 / Spring Framework 6 code, integrating Kotlin, or adding static nullability checks without assuming Spring Framework 7 JSpecify defaults.

rrezartprebreza/spring-boot-skills · 41 tokens

kotlin-backend-conventions

A set of coding conventions for BK-CI Kotlin back-end projects. Kotlin is a programming language, and back-end code runs the services behind an application.

TencentBlueKing/bk-ci · 71 tokens

backend-microservice-development

Backend microservice development guidance for BK-CI using Kotlin or Java and Spring Boot. It covers resources, API, service, and data-access layers, dependency injection, service ownership, and backend conventions.

TencentBlueKing/bk-ci · 62 tokens

cratis-chronicle-client-kotlin

Talk to a Chronicle server from a Kotlin or Java application with the io.cratis:chronicle client - connection strings, ChronicleClient and the Spring Boot starter, @EventType classes, suspending append, reactors and reducers dispatched by first-parameter type, model-bound read models, classpath artifact discovery, and…

Cratis/AI · 121 tokens

java-kotlin-migration-assistant

Migrate Java code to Kotlin in Spring-based codebases without changing behavior, public contracts, framework compatibility, or binary assumptions unless explicitly intended. Use when converting classes incrementally, replacing Lombok patterns, managing platform types and nullability, preserving JPA and proxy behavior…

JetBrains/skills · 77 tokens