@leryk1981/mova-core-engine
v0.1.1
Published
MOVA core engine primitives (validation, policy, evidence/episodes) with dual ESM/CJS builds
Maintainers
Readme
@leryk1981/mova-core-engine
MOVA core engine primitives extracted for reuse across station and agent runtimes. Provides validation (Ajv loader + registry), deny-by-default policy checks, and deterministic evidence/episode writers. Dual build supports both ESM (import) and CJS (require).
Quickstart
ESM:
import { AjvSchemaLoader, PolicyEngine, EvidenceWriter } from "@leryk1981/mova-core-engine";
const loader = new AjvSchemaLoader();
const policy = new PolicyEngine();
const writer = new EvidenceWriter();CJS:
const { AjvSchemaLoader, PolicyEngine, EvidenceWriter } = require("@leryk1981/mova-core-engine");Boundaries
- No CLI/binaries (mova-validate and mova are separate packages).
- No bundled schemas or examples (load schemas from @leryk1981/mova-spec or your own).
- No station_cycle/packs/quality orchestration and no executor implementations.
