RunAttemptPhase enum

Phases a single agent attempt transitions through.

Mirrors Symphony §7.2 lifecycle phases.

Inheritance
Available extensions

Values

preparingWorkspace → const RunAttemptPhase

Workspace is being created or reused.

buildingPrompt → const RunAttemptPhase

Prompt is being rendered from the workflow template.

launchingAgentProcess → const RunAttemptPhase

Agent runner subprocess/HTTP call is launching.

initializingSession → const RunAttemptPhase

Runner session has started and is initializing turn state.

streamingTurn → const RunAttemptPhase

Runner is streaming a turn.

finishing → const RunAttemptPhase

Runner has emitted final events; waiting on cleanup.

succeeded → const RunAttemptPhase

Attempt completed successfully.

failed → const RunAttemptPhase

Attempt failed with a runner-side error.

timedOut → const RunAttemptPhase

Attempt failed because of a turn timeout.

stalled → const RunAttemptPhase

Attempt killed by the scheduler because no events arrived in time.

canceledByReconciliation → const RunAttemptPhase

Attempt cancelled because reconciliation determined it was no longer eligible (terminal or non-active tracker state).

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<RunAttemptPhase>
A constant List of the values in this enum, in order of their declaration.