@vitronai/themis
v0.1.15
Published
Intent-first unit test framework and test generator for AI agents in Node.js and TypeScript
Downloads
1,835
Maintainers
Readme
Themis
Themis is an intent-first unit test framework for AI agents in Node.js and TypeScript.
It is built for agent workflows: deterministic reruns, machine-readable outputs, strict phase semantics, and a branded verdict loop for humans.
AI Quickstart
If you are a human or AI agent adopting Themis in another repo, use:
npm install -D @vitronai/themis@latest
npx themis init --agents
npx themis generate <source-root>
npx themis testUse src for conventional source trees and app for Next App Router repos.
npx themis init --agentswritesthemis.config.json, updates.gitignore, and scaffolds a downstreamAGENTS.mdwhen one does not already exist.- machine-readable agent manifest:
themis.ai.json - downstream adoption guide:
docs/agents-adoption.md - copyable downstream rules file:
templates/AGENTS.themis.md
Contents
- AI Quickstart
- Adopt In Another Repo
- Code Scan
- Positioning
- Performance Proof
- Modern JS/TS Support
- Commands
- Agent Guide
- VS Code
- Mocks And UI Primitives
- Intent Syntax
- Config
- TypeScript
- Benchmark
- Publish Readiness
- Agent Adoption Guide
- Why Themis
- API Reference
- Showcase Comparisons
- Release Policy
- Publish Guide
Positioning
- Best-in-class unit testing for AI agents in Node.js and TypeScript
- Deterministic execution with fast rerun loops
- Agent-native JSON and HTML reporting
- Structured contract workflows instead of opaque snapshot files
- Incremental migration path from Jest/Vitest without rewriting everything on day one
- AI verdict engine for human triage and machine automation
Performance Proof
On the current same-host React showcase benchmark sample, Themis measured 68.59% faster than Vitest and 130.26% faster than Jest on median wall-clock time for the same two-spec suite.
The exact comparison artifact is emitted by CI as .themis/benchmarks/showcase-comparison/perf-summary.json and .themis/benchmarks/showcase-comparison/perf-summary.md. Treat those percentages as the current documented sample, not a universal constant for every environment.
Modern JS/TS Support
Themis is built for modern Node.js and TypeScript projects:
.js,.jsx,.ts, and.tsxsupport- ESM
.jsloading intype: "module"projects tsconfigpath alias resolutionnodeandjsdomenvironmentssetupFilesfor harness bootstrappingtestIgnorepatterns for deterministic discovery boundaries- first-party mocks, spies, and deterministic UI primitives
- compatibility imports for
@jest/globals,vitest, and@testing-library/react --watch,--rerun-failed,--isolation in-process, and--cachefor tight local and agent rerun loops
Visuals
- Real Themis brand mark:
src/assets/themisLogo.png - Verdict engine art:
src/assets/themisVerdictEngine.png - HTML verdict report art:
src/assets/themisReport.png - Background art used by the report:
src/assets/themisBg.png
Adopt In Another Repo
Use the AI Quickstart above as the canonical install/generate/test flow. Replace <source-root> with the repo's actual source tree such as src or app. Generated files land under __themis__/tests by default. TypeScript-generated tests are emitted as strict-typecheckable artifacts and self-reference Themis globals so downstream TS projects do not need a special types override just to compile generated output.
TypeScript-generated suites use import syntax so downstream ESLint and ESM-style rules do not flag Themis output as legacy require(...) code.
If another repo wants its agents to reliably choose Themis, put the framework choice directly in that repo's agent instructions instead of assuming agents will infer it from package metadata alone.
For a copy-paste downstream setup guide, see docs/agents-adoption.md.
For a ready-to-copy downstream agent rules file, see templates/AGENTS.themis.md.
Generate the next-gen HTML report:
npx themis test --reporter htmlUse the AI-agent payload:
npx themis test --agentStay in a local rerun loop while editing:
npx themis test --watch --isolation in-process --cache --reporter nextIncrementally migrate existing Jest/Vitest suites:
npx themis migrate jest
npx themis migrate vitest
npx themis migrate jest --rewrite-imports
npx themis migrate vitest --rewrite-imports
npx themis migrate jest --rewrite-imports --convert
npx themis migrate vitest --rewrite-imports --convert
npx themis testCode Scan
Themis can scan your JS/TS source tree and generate deterministic unit-layer tests for exported modules, React components, React hooks, Next app components, Next route handlers, generic route handlers, and Node services:
npx themis generate src
npx themis testGenerated files land under __themis__/tests by default. Each generated test:
- checks the scanned export names when Themis can resolve them exactly
- asserts the normalized runtime export contract directly in generated source
- adds scenario adapters for React components/hooks, Next app/router files, route handlers, and service functions when Themis can infer or read useful inputs
- captures React interaction and hook state-transition contracts when event handlers or stateful methods are available
- asserts DOM-state and behavioral flow contracts directly for generated React and Next component adapters
- emits async behavioral flow contracts for generated React and Next component adapters when flow plans are inferred or hinted, including richer inferred input/submit/loading/success paths for common async forms
- supports provider-driven DOM flow contracts for empty, disabled, retry, error, and recovery states with attribute- and role-aware assertions
- fails with a regeneration hint when the source drifts after the scan
Themis also supports per-file generation hints with sidecars like src/components/Button.themis.json so humans and agents can provide props, component flows, args, route requests, and route context. When those sidecars do not exist yet, --write-hints can scaffold them automatically from the current source analysis.
This is the core alternative to snapshot-driven testing: generated and hand-written tests assert normalized contracts in readable source, so diffs stay reviewable and updates stay intentional.
For repo-wide generation defaults, add themis.generate.js or themis.generate.cjs at the project root. Providers in that file can match source paths, supply shared props/args/flow plans, register runtime mocks for generated UI scenarios, and wrap generated component renders so generated DOM contracts run inside the same provider shells humans use in app tests. Providers can also declare preset wrapper metadata for router, Next navigation, auth/session shells, React Query, Zustand, and Redux-style app state patterns, including route history/state, query status, auth permissions, and store selector/action metadata.
For CI and agent loops, Themis can also enforce generation quality instead of only writing files. Strict runs emit a structured backlog, fail on unresolved scan debt, and hand back exact remediation commands.
Use these flags to control the generation loop:
--json: machine-readable payload for agents, including prompt-ready next steps--plan: alias for--review --jsonwith persisted handoff artifacts--review: dry-run create/update/remove decisions without writing files--update: refresh existing generated files only--clean: remove generated files for the selected scope--changed: target changed files in a git worktree--write-hints: scaffold missing.themis.jsonsidecars so the next generate pass has explicit component props, hook args, service args, and route requests--scenario: limit generation to one adapter family such asreact-hook,next-app-component, ornext-route-handler--min-confidence: keep only entries at or above a confidence threshold--strict: fail the generate run on skips, conflicts, or entries belowhighconfidence--fail-on-skips,--fail-on-conflicts: turn unresolved scan debt into a non-zero exit code--require-confidence: fail if selected generated tests fall below a confidence threshold--files,--match-source,--match-export,--include,--exclude: narrow the scan scope--force: replace a conflicting non-Themis file--output <dir>: change the generated test directory
Every generation run also writes:
.themis/generate/generate-map.json: source-to-generated-test mapping plus scenario/confidence metadata.themis/generate/generate-last.json: the full machine-readable generate payload.themis/generate/generate-handoff.json: a compact agent handoff artifact with prompt-ready next actions.themis/generate/generate-backlog.json: unresolved skips, conflicts, and confidence debt with suggested fixes
Local test loops can also opt into a zero IPC execution path:
npx themis test --isolation in-process: executes suites in-process instead of worker modenpx themis test --watch --isolation in-process --cache: keeps a fast local rerun loop with file-level result cachingnpx themis test --isolation worker: keeps process isolation for CI or global-heavy suites
When generated tests fail, Themis also writes:
.themis/runs/fix-handoff.json: a deduped failure-to-fix artifact that maps generated failures back to source files, categories, repair strategies, candidate files, and remediation commands
Repair generated suites with:
npx themis test --fix--fix reads .themis/runs/fix-handoff.json, regenerates the affected source targets with --update, scaffolds hints when the repair strategy needs them, and reruns the suite.
Migration scaffolds also write:
.themis/migration/migration-report.json: a machine-readable inventory of detected Jest/Vitest compatibility imports and recommended next actionsthemis.compat.js: an optional local compatibility bridge used bythemis migrate --rewrite-imports
Why Themis
See docs/why-themis.md for positioning, differentiators, and community messaging.
Short version:
- Themis aims to deliver the benefits people reach for in snapshots, without snapshot rot.
- Prefer explicit, normalized contracts over broad output dumps.
- Keep changes reviewable through source assertions, machine-readable artifacts, and diff-oriented rerun workflows.
- See
docs/showcases.mdfor direct Jest/Vitest comparison examples.
Reference Docs
- API reference:
docs/api.md - Agent adoption guide:
docs/agents-adoption.md - Migration guide:
docs/migration.md - Release policy:
docs/release-policy.md - Publish guide:
docs/publish.md - VS Code extension notes:
docs/vscode-extension.md - Agent result schema:
docs/schemas/agent-result.v1.json - Generate result schema:
docs/schemas/generate-result.v1.json - Generate map schema:
docs/schemas/generate-map.v1.json - Generate handoff schema:
docs/schemas/generate-handoff.v1.json - Generate backlog schema:
docs/schemas/generate-backlog.v1.json - Fix handoff schema:
docs/schemas/fix-handoff.v1.json - Failures artifact schema:
docs/schemas/failures.v1.json - Contract diff schema:
docs/schemas/contract-diff.v1.json - Changelog:
CHANGELOG.md
Commands
npx themis init: createsthemis.config.json, adds.themis/to.gitignore, and adds__themis__/reports/plus__themis__/shims/to.gitignore.npx themis init --agents: does the same and also writes a downstreamAGENTS.mdfrom the Themis template if the repo does not already have one.npx themis generate src: scans source files and generates contract tests under__themis__/tests, using.generated.test.tsfor TS/TSX sources and.generated.test.jsfor JS/JSX sources.npx themis generate src --json: emits a machine-readable generation payload for agents and automation.npx themis generate src --plan: emits a planning payload and handoff artifact without writing generated tests.npx themis generate src --review --json: previews create/update/remove decisions without writing files.npx themis generate src --review --strict --json: fails fast on unresolved generation debt while still emitting a machine-readable plan.npx themis generate src --write-hints: scaffolds missing hint sidecars and uses them in the same generate pass.npx themis generate src --update: refreshes existing generated tests only.npx themis generate src --clean: removes generated tests for the selected scope.npx themis generate src --changed: regenerates against changed files in the current git worktree.npx themis generate src --scenario react-hook --min-confidence high: targets one adapter family at a confidence threshold.npx themis generate app --scenario next-route-handler: focuses generation on Next app router request handlers.npx themis migrate jest: scaffolds a Themis config/setup bridge for existing Jest suites and gitignores.themis/plus__themis__/reports/and__themis__/shims/.npx themis migrate jest --rewrite-imports: rewrites matched Jest/Vitest/Testing Library imports to a localthemis.compat.jsbridge file.npx themis migrate jest --convert: applies codemods for common Jest/Vitest matcher/import patterns so suites move closer to native Themis style.npx themis migrate vitest: scaffolds the same bridge for Vitest suites and gitignores.themis/plus__themis__/reports/and__themis__/shims/.npx themis generate src --require-confidence high: enforces a quality bar for all selected generated tests.npx themis generate src --files src/routes/ping.ts: targets one or more explicit source files.npx themis generate src --match-source "routes/" --match-export "GET|POST": narrows generation by source path and exported symbol.npx themis generate src --output tests/contracts: writes generated tests to a custom directory.npx themis generate src --force: replaces conflicting files in the target output directory.npx themis test: discovers and runs tests.npx themis test --next: next-gen console output mode.npx themis test --json: emits JSON result payload.npx themis test --agent: emits AI-agent-oriented JSON schema.npx themis test --reporter html: generates a next-gen HTML report file.npx themis test --reporter html --html-output reports/themis.html: writes HTML report to a custom path.npx themis test --watch: reruns the suite when watched project files change.npx themis test --watch --isolation in-process --cache: runs a zero IPC cached local loop for fast edit/rerun cycles.npx themis test --workers 8: overrides worker count (positive integer).npx themis test --isolation in-process: runs test files in-process instead of worker processes.npx themis test --cache: enables file-level result caching for in-process local loops.npx themis test --environment jsdom: runs tests in a browser-like DOM environment.npx themis test --stability 3: runs the suite three times and classifies each test asstable_pass,stable_fail, orunstable.npx themis test --match "intent DSL": runs only tests whose full name matches regex.npx themis test --rerun-failed: reruns failing tests from.themis/runs/failed-tests.json.npx themis test --fix: applies generated-test autofixes from.themis/runs/fix-handoff.jsonand reruns the suite.npx themis test --update-contracts --match "suite > case": accepts reviewedcaptureContract(...)changes for a narrow slice of the suite.npx themis test --no-memes: disables meme phase aliases (cook,yeet,vibecheck,wipe).npx themis test --lexicon classic|themis: rebrands human-readable status labels innext/specreporters.npm run lint: runs ESLint across the CLI, runtime, scripts, tests, and the VS Code extension scaffold.npm run validate: runs lint, test, typecheck, and benchmark gate in one command.npm run typecheck: validates TypeScript types for Themis globals and DSL contracts.npm run benchmark:gate: fails when benchmark performance exceeds the configured threshold.npm run pack:check: previews the npm publish payload.npm run proof:migration: migrates checked-in Jest/Vitest fixture suites and proves they run cleanly under Themis.
CI & Release Proof
- Lint job runs
npm run linton Node 20. - Compatibility job runs
npm teston Node 18 and 20. - Release surface job runs
npm run typecheck,npm run pack:check, the HTML + agent reports, verifies.themis/diffs/contract-diff.json, produces.themis/benchmarks/benchmark-last.json/.themis/benchmarks/migration-proof.json, and uploads all of the artifacts for later inspection. - Perf gate job runs
npm run benchmark:gatewithBENCH_MAX_AVG_MS=2500to guard against regressions before publishing. - Migration proof job runs
npm run proof:migrationagainst checked-in Jest/Vitest fixtures for basic suites, table tests, RTL/jsdom flows, timers, module mocking, and a context/provider-heavy RTL example, then uploads the resulting migration reports plus Themis run artifacts as evidence. - Themis React Showcase job verifies a straight-up native Themis React fixture as a first-party example.
- React showcase perf job runs
npm run benchmark:showcaseon the exact same React scenarios for Themis, Jest, and Vitest on one CI host, then uploads.themis/benchmarks/showcase-comparison/perf-summary.{json,md}so the relative timing claim is backed by one comparable artifact. - Release
0.1.15packages this expanded proof lane so every CI run now proves the provider-heavy example alongside the earlier fixtures.
Agent Guide
AGENTS.md is the AI-agent contributor contract for this repository. It tells agents working on Themis itself how to write tests, preserve determinism, and update artifact contracts safely.
It is not a package-discovery mechanism for every external repo. If another project wants its agents to use Themis, that project should say so in its own AGENTS.md, rules, or agent prompt.
For downstream install, generation, and migration guidance, see docs/agents-adoption.md.
For a copyable downstream rules file, see templates/AGENTS.themis.md.
You do not need an MCP server just to make agents use Themis. Package metadata, docs, CLI commands, and explicit downstream repo instructions are the primary adoption path. An MCP integration could be useful later for richer editor or automation workflows, but it is optional.
Themis writes artifacts under .themis/:
.themis/runs/last-run.json: full machine-readable run payload..themis/runs/failed-tests.json: compact failure list for retry loops..themis/diffs/run-diff.json: diff against the previous run, including new and resolved failures..themis/runs/run-history.json: rolling recent-run history for agent comparison loops..themis/runs/fix-handoff.json: source-oriented repair handoff for generated test failures..themis/migration/migration-report.json: compatibility inventory and next actions for migrated Jest/Vitest suites..themis/diffs/contract-diff.json: contract capture drift, updates, and update commands forcaptureContract(...)workflows..themis/generate/generate-last.json: latest machine-readable generate payload..themis/generate/generate-map.json: source-to-generated-test mapping..themis/generate/generate-handoff.json: prompt-ready generate handoff payload..themis/generate/generate-backlog.json: unresolved generate debt and suggested remediation.themis.compat.js: optional local compat bridge for rewritten migration imports..themis/benchmarks/benchmark-last.json: latest benchmark comparison payload, including migration proof output..themis/benchmarks/migration-proof.json: synthetic migration-conversion proof artifact emitted bynpm run benchmark.__themis__/reports/report.html: interactive HTML verdict report.__themis__/shims/: reserved namespace for framework-owned compatibility shims when a fallback file is truly needed. Themis should prefer built-in support first and should not drop ad hoc shim files intotests/.
--agent output includes deterministic failure fingerprints, grouped analysis.failureClusters, stability classifications, previous-run comparison data, and a direct generated-test repair hint via npx themis test --fix. Fix handoff entries also carry repair strategies, candidate files, and autofix commands for tighter failure-to-fix loops.
Machine-facing reporters intentionally emit compact JSON. Agents and tooling should parse the payloads rather than depend on whitespace formatting.
The HTML reporter is designed for agent-adjacent review workflows too: it combines verdict status, slow-test surfacing, artifact navigation, and interactive file filtering in one report.
VS Code
The repo now includes a thin VS Code extension scaffold at packages/themis-vscode.
The extension is intentionally artifact-driven:
- reads
.themis/runs/last-run.json,.themis/runs/failed-tests.json,.themis/diffs/run-diff.json,.themis/generate/generate-last.json,.themis/generate/generate-map.json,.themis/generate/generate-backlog.json, and__themis__/reports/report.html - shows the latest verdict and failures in a sidebar
- adds generated-review navigation for source/test/hint mappings plus unresolved generation backlog
- reruns Themis from VS Code commands
- opens the HTML report inside a webview
It does not replace the CLI. The CLI and .themis/** artifacts remain the source of truth.
Mocks And UI Primitives
Themis now ships first-party test utilities for agent-generated tests:
mock('../src/api', () => ({
fetchUser: fn(() => ({ id: 'u_1', name: 'Ada' }))
}));
const { fetchUser } = require('../src/api');
test('captures a stable UI contract', () => {
const user = fetchUser();
expect(fetchUser).toHaveBeenCalledTimes(1);
expect(user).toMatchObject({ id: 'u_1', name: 'Ada' });
});Contract capture for reviewable baselines:
test('captures a stable response contract', () => {
const payload = {
status: 'ok',
flags: ['fast', 'deterministic']
};
captureContract('status payload', payload);
expect(payload.status).toBe('ok');
});Themis intentionally avoids first-party snapshot-file workflows. Prefer direct assertions, generated contract tests, and explicit flow expectations over large opaque snapshots. The goal is comparable baseline coverage with better reviewability: normalized contracts, focused assertions, machine-readable artifacts, and intentional updates instead of broad snapshot re-acceptance.
Available globals:
fn(...)spyOn(object, methodName)mock(moduleId, factoryOrExports)unmock(moduleId)clearAllMocks()resetAllMocks()restoreAllMocks()
For UI-oriented jsdom tests, Themis also ships a lightweight DOM layer:
render(ui)screen.getByText(...)screen.getByRole(...)screen.getByLabelText(...)fireEvent.click/change/input/submit/keyDown(...)waitFor(asyncAssertion)cleanup()useFakeTimers(),advanceTimersByTime(ms),runAllTimers(),useRealTimers()flushMicrotasks()mockFetch(...),resetFetchMocks(),restoreFetch()
Example:
test('submits the form', async () => {
render(<button onClick={() => document.body.setAttribute('data-state', 'sent')}>Send</button>);
fireEvent.click(screen.getByRole('button', { name: 'Send' }));
await waitFor(() => {
expect(document.body).toHaveAttribute('data-state', 'sent');
});
});Network and async example:
test('loads api state deterministically', async () => {
useFakeTimers();
const fetchMock = mockFetch({ json: { ok: true } });
let done = false;
setTimeout(async () => {
const response = await fetch('/api/status');
const payload = await response.json();
done = payload.ok;
}, 50);
advanceTimersByTime(50);
await flushMicrotasks();
expect(done).toBe(true);
expect(fetchMock).toHaveBeenCalled();
useRealTimers();
restoreFetch();
});Intent Syntax
Themis supports a strict code-native intent DSL:
intent('user can sign in', ({ context, run, verify, cleanup }) => {
context('a valid user', (ctx) => {
ctx.user = { email: '[email protected]', password: 'pw' };
});
run('the user submits credentials', (ctx) => {
ctx.result = { ok: true };
});
verify('authentication succeeds', (ctx) => {
expect(ctx.result.ok).toBe(true);
});
cleanup('remove test state', (ctx) => {
delete ctx.user;
});
});Preferred phase names are context, run, verify, cleanup.
Legacy aliases are still supported (arrange/act/assert, given/when/then, setup/infer/teardown).
Easter egg aliases are also available: cook, yeet, vibecheck, wipe.
Config
themis.config.json
{
"testDir": "tests",
"generatedTestsDir": "__themis__/tests",
"testRegex": "\\.(test|spec)\\.(js|jsx|ts|tsx)$",
"maxWorkers": 7,
"reporter": "next",
"environment": "node",
"setupFiles": ["tests/setup.ts"],
"tsconfigPath": "tsconfig.json",
"htmlReportPath": "__themis__/reports/report.html",
"testIgnore": ["^tests/fixtures(?:/|$)"]
}Modern JS/TS projects can opt into environment: "jsdom" for DOM-driven tests and setupFiles for hooks, polyfills, or harness bootstrapping.
Themis discovers both testDir and generatedTestsDir by default. Use testIgnore only for fixture folders, scratch suites, or other paths you intentionally want to skip.
Themis also stubs common frontend style and asset imports under Node or jsdom runs, including .css, .scss, .png, .jpg, .svg, and common font/media files, so repos should not need ad hoc tests/*.cjs setup files just to make those imports load.
TypeScript
The package ships first-party typings for:
- programmatic APIs (
collectAndRun,runTests, config helpers) - global test APIs (
describe,test,intent, hooks,expect) - typed intent context (
intent<MyCtx>(...)) - project-aware module loading for
ts,tsx, ESMjs,jsx,tsconfigpath aliases, and setup files
Themis is designed to feel native in modern TypeScript projects without requiring a separate Babel or ts-node setup just to run tests.
Use the global types in your project with:
{
"compilerOptions": {
"types": ["@vitronai/themis/globals"]
}
}Benchmark
npm run benchmark
npm run benchmark:showcase
npm run benchmark:gateOptional env vars:
BENCH_FILES(default40)BENCH_TESTS_PER_FILE(default25)BENCH_REPEATS(default3)BENCH_WORKERS(default4)BENCH_INCLUDE_EXTERNAL=1to include Jest/Vitest/Bun comparisonsBENCH_MAX_AVG_MSto override the gate thresholdBENCH_GATE_CONFIGto pointbenchmark:gateat a custom config fileSHOWCASE_BENCH_WARMUPS(default1) for the same-spec React showcase comparisonSHOWCASE_BENCH_REPEATS(default5) for the same-spec React showcase comparison
The benchmark always runs Themis and will include Jest/Vitest/Bun only when they are available locally.
The default gate profile and threshold live in benchmark-gate.json.
The showcase benchmark writes .themis/benchmarks/showcase-comparison/perf-summary.json and .themis/benchmarks/showcase-comparison/perf-summary.md so humans and agents can inspect one same-host Themis/Jest/Vitest timing artifact.
Publish Readiness
Before publishing a release:
npm run validate
npm run pack:checkThe npm package should ship a clean CLI, first-party typings, schemas, docs, report assets, and a passing lint/test/typecheck baseline.
