Rulvar API reference / @rulvar/store-conformance / KillPointEvent
Type Alias: KillPointEvent
ts
type KillPointEvent =
| {
prompt: string;
t: "call";
}
| {
t: "tool";
target: string;
}
| {
kind?: string;
phase: KillPointPhase;
point: KillPointName;
seq?: number;
site: "append" | "putMeta";
status?: string;
t: "kill";
}
| {
status: string;
t: "ran-to-completion";
}
| {
message: string;
t: "fatal";
};Defined in: packages/store-conformance/src/kill-points.ts:302
One JSONL line of a worker's report file.