@audrail/core
v0.2.2
Published
Shared contracts and schemas for Audrail.
Maintainers
Readme
Audrail Core
Shared contracts and helpers for Audrail packages.
This package is used by the Audrail CLI, web app, and future SDKs to keep project configuration, run records, event types, runtime sessions, checkpoints, and handoff briefs consistent across runtimes.
Install
npm install @audrail/coreUsage
import {
RUN_EVENT_TYPES,
RUN_STATUSES,
createCheckpoint,
createHandoffBrief,
} from "@audrail/core";
console.log(RUN_EVENT_TYPES);
console.log(RUN_STATUSES);
console.log(createCheckpoint({ summary: "Latest verified state" }));
console.log(createHandoffBrief({ title: "Resume this branch" }));Most users should install the CLI instead:
npx audrail init my-project