pub enum EventKind {
Show 53 variants
RunStarted,
RunCancellationRequested,
RunCancellationResult,
ProposalReceived,
ProposalCompleted,
ActionValidated,
ActionRejected,
ActionExecuting,
ActionSucceeded,
ActionFailed,
ActionSkipped,
ActionRetrying,
ActionDeduplicated,
PolicyViolation,
StateChanged,
StateSnapshot,
StateCommitted,
StateRollback,
SkillDistilled,
SkillEvolved,
SkillDeprecated,
EvolutionTriggered,
CandidatePromoted,
CandidateRejected,
Consolidated,
ProactiveMemoryMaintained,
ProactiveMemoryIntervention,
ReplanAttempted,
ReplanProposalReceived,
ReplanRejected,
ReplanExhausted,
VoiceFastTurnStarted,
VoiceFastTurnEnded,
VoiceSidecarResolved,
VoiceSidecarFailed,
VoiceSidecarTimedOut,
VoiceTurnCancelled,
VoiceBridgePlayed,
GateAccepted,
GateRejected,
ModelFallback,
SessionScope,
PermissionDecision,
ApprovalRecorded,
BranchDecision,
AlternativeRejected,
InferenceMetered,
TransactionConflict,
AdmissionGateDecision,
ToolReceiptHallucination,
GoalEvaluated,
TurnCompleted,
RunCompleted,
}Expand description
Event kinds matching the Python EventKind enum.
Variants§
RunStarted
The authenticated runs.start bracket reached its durable boundary.
RunCancellationRequested
A body-free authenticated run cancellation request became durable.
RunCancellationResult
A deterministic run cancellation receipt became durable.
ProposalReceived
ProposalCompleted
A proposal reached its deterministic terminal result. Emitted by the CAR server after the runtime has emitted every action transition.
ActionValidated
ActionRejected
ActionExecuting
ActionSucceeded
ActionFailed
ActionSkipped
ActionRetrying
ActionDeduplicated
PolicyViolation
StateChanged
StateSnapshot
StateCommitted
Proposal-level aggregate of observed state mutations that survived the
transaction boundary. Distinct from provisional per-action
state_changed rows and from declared expected effects.
StateRollback
SkillDistilled
SkillEvolved
SkillDeprecated
EvolutionTriggered
CandidatePromoted
A provisional skill candidate passed the validation gate and was promoted
to Active, superseding its incumbent (SkillOpt-inspired — see
docs/solutions/gated-skill-optimization.md).
CandidateRejected
A provisional skill candidate failed the validation gate and was rejected (recorded in the rejected-edit buffer so it isn’t regenerated).
Consolidated
ProactiveMemoryMaintained
ProactiveMemoryIntervention
ReplanAttempted
ReplanProposalReceived
ReplanRejected
ReplanExhausted
VoiceFastTurnStarted
VoiceFastTurnEnded
VoiceSidecarResolved
VoiceSidecarFailed
VoiceSidecarTimedOut
VoiceTurnCancelled
VoiceBridgePlayed
GateAccepted
GateRejected
ModelFallback
SessionScope
PermissionDecision
ApprovalRecorded
BranchDecision
AlternativeRejected
InferenceMetered
TransactionConflict
AdmissionGateDecision
ToolReceiptHallucination
GoalEvaluated
TurnCompleted
RunCompleted
The active runs.start bracket reached one terminal state. This is
distinct from ProposalCompleted: one run can contain many proposals.