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.
git clone --depth 1 https://github.com/kora-projects/kora-skillsnpx agentmods add skills/kora-projects/kora-skills/kora-v1Wrote 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.
[](https://agentmods.dev/skills/kora-projects/kora-skills/kora-v1)<a href="https://agentmods.dev/skills/kora-projects/kora-skills/kora-v1"><img src="https://agentmods.dev/badge/skills/kora-projects/kora-skills/kora-v1/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.
<a href="https://agentmods.dev/skills/kora-projects/kora-skills/kora-v1"><img src="https://agentmods.dev/badge/skills/kora-projects/kora-skills/kora-v1.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00268 | $0.04533 |
| Opus 5 | $0.00134 | $0.02266 |
| Sonnet 5 | $0.00054 | $0.00907 |
| Haiku 4.5 | $0.00027 | $0.00453 |
Grade C, and why
kora-v1 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 9d 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.
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-docs/.git .kora-agent/kora-examples/.git Copies of this mod
1 near-identical copy found in the catalogue:
- kora-v1 — 89% identical, 92 lines differ
How it starts
The opening of the file, as written. The whole thing — 291 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Kora Framework — Meta-skill
Single entry point for all Kora development. This file is routing and rules only — the implementation knowledge lives in the 39 sub-skills listed below.
| Framework | Kora 1.x (ru.tinkoff.kora) — check the changelog for the current release |
| Java | 17+ supported, 25+ recommended (annotation processors) |
| Kotlin | 1.9+ on JDK 21 (KSP) |
| Build | Gradle 7+ supported, 9+ recommended (wrapper pins 9.5.1) |
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 microservice project from scratch (Java or Kotlin)
- Adding or refactoring
@KoraAppapplication graph with*Moduleinterfaces - 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
@ConfigSourceand environment variable substitution - Planning a multi-module Gradle project with
@KoraSubmoduleboundaries
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.
- .claude-plugin/plugin.json 897 B
- .codex-plugin/plugin.json 1.8 KB
- install.sh 3.4 KB runs code
- README.md 6.7 KB
- README.ru.md 8.1 KB
- skill.json 1.5 KB
- skills/kora-aop-caching/assets/CacheConfig.java.template 5.8 KB
- skills/kora-aop-caching/assets/CacheConfig.kt.template 5.7 KB
- skills/kora-aop-caching/assets/OrderCache.java.template 10 KB
- skills/kora-aop-caching/assets/OrderCache.kt.template 9.8 KB
- skills/kora-aop-caching/evals/evals.json 7.3 KB
- skills/kora-aop-caching/references/cache-caffeine-reference.md 6.4 KB
- skills/kora-aop-caching/references/cache-key-mapper-reference.md 5.4 KB
- skills/kora-aop-caching/references/cache-redis-reference.md 8.0 KB
- skills/kora-aop-caching/references/cacheable-reference.md 6.6 KB
- skills/kora-aop-caching/references/imperative-cache-reference.md 7.5 KB
- skills/kora-aop-caching/references/multi-level-cache-reference.md 7.4 KB
- skills/kora-aop-caching/SKILL.md 9.4 KB
- skills/kora-aop-logging/assets/LoggedService.java.template 1.6 KB
- skills/kora-aop-logging/assets/LoggedService.kt.template 741 B
- skills/kora-aop-logging/evals/evals.json 5.8 KB
- skills/kora-aop-logging/references/logging-aspect.md 4.9 KB
- skills/kora-aop-logging/references/logging-mdc.md 5.9 KB
- skills/kora-aop-logging/references/logging-performance.md 4.0 KB
- skills/kora-aop-logging/SKILL.md 8.7 KB
- skills/kora-aop-resilient/assets/CircuitBreakerService.java.template 2.0 KB
- skills/kora-aop-resilient/assets/CircuitBreakerService.kt.template 1.6 KB
- skills/kora-aop-resilient/assets/FallbackService.java.template 2.5 KB
- skills/kora-aop-resilient/assets/FallbackService.kt.template 2.1 KB
- skills/kora-aop-resilient/assets/ResilientService.java.template 2.2 KB
- skills/kora-aop-resilient/assets/ResilientService.kt.template 2.6 KB
- skills/kora-aop-resilient/assets/RetryService.java.template 1.8 KB
- skills/kora-aop-resilient/assets/RetryService.kt.template 1.5 KB
- skills/kora-aop-resilient/assets/TimeoutService.java.template 1.7 KB
- skills/kora-aop-resilient/assets/TimeoutService.kt.template 1.5 KB
- skills/kora-aop-resilient/evals/evals.json 6.5 KB
- skills/kora-aop-resilient/references/circuit-breaker-reference.md 5.1 KB
- skills/kora-aop-resilient/references/fallback-reference.md 6.5 KB
- skills/kora-aop-resilient/references/resilience-config-reference.md 8.5 KB
- skills/kora-aop-resilient/references/retry-reference.md 3.6 KB
- skills/kora-aop-resilient/references/timeout-reference.md 4.5 KB
- skills/kora-aop-resilient/SKILL.md 8.1 KB
- skills/kora-aop-scheduling-jdk/assets/ScheduledJobs.java.template 2.7 KB
- skills/kora-aop-scheduling-jdk/assets/ScheduledJobs.kt.template 2.4 KB
- skills/kora-aop-scheduling-jdk/evals/evals.json 5.3 KB
- skills/kora-aop-scheduling-jdk/references/graceful-shutdown-reference.md 5.9 KB
- skills/kora-aop-scheduling-jdk/references/jdk-scheduling-reference.md 5.4 KB
- skills/kora-aop-scheduling-jdk/references/scheduling-config-reference.md 4.3 KB
- skills/kora-aop-scheduling-jdk/scripts/setup-jdk.sh 2.4 KB runs code
- skills/kora-aop-scheduling-jdk/SKILL.md 7.4 KB
- skills/kora-aop-scheduling-quartz/assets/ScheduledJobs.java.template 2.6 KB
- skills/kora-aop-scheduling-quartz/assets/ScheduledJobs.kt.template 2.2 KB
- skills/kora-aop-scheduling-quartz/evals/evals.json 5.0 KB
- skills/kora-aop-scheduling-quartz/references/graceful-shutdown-reference.md 3.8 KB
- skills/kora-aop-scheduling-quartz/references/quartz-scheduling-reference.md 7.2 KB
- skills/kora-aop-scheduling-quartz/references/scheduling-config-reference.md 4.5 KB
- skills/kora-aop-scheduling-quartz/scripts/create-cron-job.sh 2.0 KB runs code
- skills/kora-aop-scheduling-quartz/scripts/setup-quartz.sh 3.1 KB runs code
- skills/kora-aop-scheduling-quartz/scripts/validate-cron.sh 2.6 KB runs code
- skills/kora-aop-scheduling-quartz/SKILL.md 10 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.
- 9d ago First seen · 291 lines · 268 tokens per session scan C 9e95d54d0a8a
kora-v1 is a skill published in the GitHub repository kora-projects/kora-skills (1 stars, last pushed 9d ago), licensed Apache-2.0. It adds 268 tokens to every session and 4,533 once invoked, about $0.0013 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-08-31.
Other skills, from other repositories
migrate-intellij-util
Optimize memory usage, consistency, and performance by migrating standard Java/Kotlin classes to IntelliJ's specialized com.intellij.util implementations.
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…
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.
jackson-3-migration
Migrer Jackson 2.x til Jackson 3.x (tools.jackson) i Kotlin/Java-prosjekter — automatisert OpenRewrite-pass pluss manuell Kotlin-spesifikk opprydding og verifisering.
java-to-kotlin
Trinnvis Java-til-Kotlin-migrering med rammeverk-bevisste transformasjoner for Spring, Ktor og Nav-mønstre.
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.