zunit

zunit is a skill for Claude Code, Codex from AdamBien/airails. It costs 111 tokens per session (1,177 once invoked), scanned A, original, MIT.

A zero-dependency test runner for Java command-line projects. It finds files ending in Test.java and runs each as a self-contained Java source program, without JUnit or a separate compilation step.

In plain words
What is it for?
Use it to create and run tests in a java-cli-app project, placing self-contained *Test.java files in test/ and checking results with Java's assert statement.
Why use it?
It lets a project test Java code with only the Java runtime and built-in assertions, using a simple file and main-method convention.

Skill for Claude CodeCodex

Install

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.

agentmods
npx agentmods add skills/adambien/airails/zunit
Any agent
npx skills add AdamBien/airails --skill zunit
Clone the repo
git clone --depth 1 https://github.com/AdamBien/airails

Made for: Claude Code, Codex.

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 zunit

README.md
[![agentmods](https://agentmods.dev/badge/skills/adambien/airails/zunit.svg)](https://agentmods.dev/skills/adambien/airails/zunit)
Your own site
<a href="https://agentmods.dev/skills/adambien/airails/zunit"><img src="https://agentmods.dev/badge/skills/adambien/airails/zunit.svg" alt="Measured on agentmods" height="20"></a>
Per session 111 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,177 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00111 $0.01177
Opus 5 $0.00056 $0.00589
Sonnet 5 $0.00022 $0.00235
Haiku 4.5 $0.00011 $0.00118

Measured 5d ago against content hash 7814070297b8, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

zunit 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 5d 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.

java/zunit/SKILL.md · 141 lines

How it starts

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

Generate and run zunit tests for a java-cli-app project using $ARGUMENTS. Apply all rules below strictly.

What is zunit

zunit is a zero-dependency test runner. It discovers *Test.java source files and runs each directly via java --source 25. No compilation step, no JUnit, no framework.

Test Convention

  • Test files: name ends with Test.java, placed in test/ directory
  • Each test file is a self-contained Java source script with void main()
  • Tests run via java --source 25 --class-path <classpath>
  • Failure: any thrown exception or non-zero exit = failed
  • Success: clean exit with code 0
  • All test files run concurrently in separate JVMs

Test File Structure

Every test file follows this pattern:

void main() {
    // arrange
    var input = ...;

    // act
    var result = SomeClass.someMethod(input);

    // assert
    assert expected.equals(result) : "expected %s but got %s".formatted(expected, result);
}

Assertion Style

  • No assertion libraries — use the built-in assert statement; zunit runs every test with -ea
  • Always attach a descriptive message including expected and actual values: assert condition : message
  • One test file can contain multiple assertions — the first failure stops the file
  • For testing exceptions, use try/catch and throw AssertionError explicitly:
void main() {
    try {
        SomeClass.methodThatShouldFail(badInput);
        throw new AssertionError("expected exception was not thrown");
    } catch (IllegalArgumentException expected) {
        // success
    }
}

Caveat: assert only executes with assertions enabled. Running a test file directly requires the flag: java -ea FooTest.java.

Test Discovery for java-cli-app Projects

Directory Layout

project-root/
├── src/main/java/          # main source (compiled by zb)
├── test/                   # zunit test sources
│   ├── SomethingTest.java
│   └── AnotherTest.java
├── zbo/app.jar             # zb output (auto-detected as classpath)
└── .zb                     # zb config

Read the full file on GitHub · 141 lines

Files

What ships with it

1 file 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 · 141 lines · 111 tokens per session scan A 7814070297b8

Subscribe to this mod's changes

zunit is a skill published in the GitHub repository AdamBien/airails (48 stars, last pushed 15d ago), licensed MIT. It adds 111 tokens to every session and 1,177 once invoked, about $0.0006 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-30.