Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/kora-projects/kora-skills/kora-testing-junit-javanpx skills add kora-projects/kora-skills --skill kora-testing-junit-javagit clone --depth 1 https://github.com/kora-projects/kora-skillsWrote 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-testing-junit-java)<a href="https://agentmods.dev/skills/kora-projects/kora-skills/kora-testing-junit-java"><img src="https://agentmods.dev/badge/skills/kora-projects/kora-skills/kora-testing-junit-java.svg" alt="Measured on agentmods" 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 | $0.00065 | $0.03331 |
| Opus 5 | $0.00032 | $0.01665 |
| Sonnet 5 | $0.00013 | $0.00666 |
| Haiku 4.5 | $0.00006 | $0.00333 |
Grade A, and why
kora-testing-junit-java scanned grade A with 0 findings 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 3d 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 375 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Kora Testing JUnit (Java)
Kora sub-skill — obey the kora-v1 meta rules on every task: R0 ensure
.kora-agent/docs+examples are cloned · R1 read this sub-skill before writing code · R2 Kora APIs only — no Spring/Micronaut/Quarkus, no invented annotations or config keys · R3 journal any incorrect Kora usage. Add comments/Javadoc only if asked.
In-process JUnit 5 tests for Java Kora services. @KoraAppTest builds a trimmed
version of your compile-time dependency graph, then injects the components you ask for
with @TestComponent. The same code that runs in production is exercised in the test;
selected dependencies can be replaced by mocks or test-only components.
Kora supports three test levels:
- Component test — one component plus the dependencies needed to build it.
- Inter-component test — several real components interacting.
- Integration test — real components plus external systems (PostgreSQL, Kafka) via Testcontainers.
For end-to-end confidence the Kora maintainers also recommend black-box testing of the
packaged image (see the kora-testing-blackbox skill).
Quick Start
Dependencies
dependencies {
koraBom platform("ru.tinkoff.kora:kora-parent:1.2.19")
annotationProcessor "ru.tinkoff.kora:annotation-processors"
testImplementation platform("org.junit:junit-bom:5.13.4")
testImplementation "org.junit.jupiter:junit-jupiter"
testImplementation "ru.tinkoff.kora:test-junit5"
testImplementation "org.mockito:mockito-core:5.18.0"
}
test {
useJUnitPlatform()
testLogging {
showStandardStreams(true)
events("passed", "skipped", "failed")
exceptionFormat("full")
}
}
The kora-parent BOM pins every ru.tinkoff.kora:* artifact — never set their versions
individually. The annotation processor is mandatory: without it the @KoraApp graph is
never generated and @KoraAppTest has nothing to load.
Component test (real graph)
What ships with it
14 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.
- assets/ComponentTest.java.template 1.4 KB
- assets/ComponentTestWithMock.java.template 2.4 KB
- assets/IntegrationTest.java.template 3.6 KB
- assets/IntegrationTestWithKafka.java.template 4.8 KB
- assets/IntegrationTestWithPostgres.java.template 3.3 KB
- assets/MockTemplate.java.template 6.2 KB
- assets/TestApplication.java.template 1.9 KB
- assets/TestApplicationWithCleanup.java.template 1.8 KB
- evals/evals.json 6.2 KB
- references/assertion-patterns-reference.md 4.4 KB
- references/korapptest-extension-reference.md 7.4 KB
- references/mockito-integration-reference.md 6.4 KB
- references/testcontainers-jdbc-reference.md 7.0 KB
- references/testcontainers-kafka-reference.md 6.2 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.
- 3d ago First seen · 375 lines · 65 tokens per session scan A 704b867fb20d
kora-testing-junit-java is a skill published in the GitHub repository kora-projects/kora-skills (1 stars, last pushed 12d ago), licensed Apache-2.0. It adds 65 tokens to every session and 3,331 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
test-quality
Write high-quality JUnit 5 tests with AssertJ assertions. Use when user says "add tests", "write tests", "improve test coverage", or when reviewing/creating test classes for Java code.
tinystruct-patterns
Expert guidance for developing with the tinystruct Java framework. Use when working on the tinystruct codebase or any project built on tinystruct — including creating Application classes, @Action-mapped routes, unit tests, ActionRegistry, HTTP/CLI dual-mode handling, the built-in HTTP server, the event system, JSON…
eclipse-test
Run JUnit tests in Eclipse projects — all tests, by package, by class, or individual test methods. Also build Maven projects.
generate-tests
Use when the user asks to generate, create, or write unit tests for code. Analyzes the target code, produces a structured test case list for review, then generates test code. Supports Java (JUnit 5, Mockito, AssertJ).
java-conventions
Java code conventions covering Java 17+ records and sealed classes, formatting/static analysis, Maven/Gradle, JUnit 5, exception handling, constructor injection, streams, and security. Load when writing or reviewing Java code.
zunit
Generate and run zunit tests for java-cli-app projects. Use when asked to create tests, write tests, add tests, or generate test files for a java-cli-app project. Triggers on "zunit", "write tests", "create tests", "add tests", "test this", "generate tests", or requests to test a java-cli-app application. Also trigger…