Skip to main content

State vs Status

This is the most commonly confused distinction in fluxaOS. Every issue has two independent fields: a state and a status. They mean different things and change at different times.

State — Where is the issue in the workflow?

State represents the issue's position in the development lifecycle. It maps to pipeline stages: when the research stage completes successfully, the issue moves from research state to implement state.

StateMeaning
NewJust created, not yet started
ResearchResearch stage running or queued
ImplementImplementation in progress
ReviewAwaiting code review
ReworkReviewer requested changes
DeployApproved, awaiting merge/deploy
CompleteDone — terminal state, issue is closed

State transitions are controlled by the pipeline. The orchestrator moves the issue forward when a stage completes with a pass verdict. You can also move state manually in the UI. See Issue States for the full transition table.

Status — What is the system doing right now?

Status represents the operational condition of the issue — what fluxaOS is actively doing with it, regardless of where it is in the workflow.

StatusMeaning
OpenActive, not currently running
QueuedA stage run is queued, waiting for the daemon
RunningA stage is actively executing right now
BlockedNeeds human intervention (skill emitted blocked verdict or needs_human signal)
CompletedThe most recent pipeline run finished

Status changes automatically as the daemon picks up and executes runs. You do not set it manually.

Why this matters

An issue can be in Implement state with Running status (a stage is executing), or Implement state with Blocked status (the stage ran but got stuck). The state tells you where in the pipeline the issue is; the status tells you what's happening to it right now.

When something goes wrong, check both fields: state tells you which stage to look at, status tells you whether the daemon is actively working on it.