Skip to content

actx phase

Inspect and manage the project’s phase gate lifecycle. Phase gates enforce a strict prompt → implement → validate → audit → remediate → advance workflow.

Terminal window
actx phase <subcommand>
SubcommandDescription
statusShow the current phase gate status table
advance --phase <N>Advance a phase gate (redirects to actx dispatch)
OptionRequiredDescription
--phase <number>YesPhase number to advance
Terminal window
# View phase gate status
$ actx phase status
{
"ok": true,
"current": "Phase 27",
"next": "Phase 28",
"total": 12,
"passed": 9,
"active": 2,
"blocked": 1,
"phases": [...]
}

All output is structured JSON. Each phase includes its lifecycle state:

  • prompt — Has the agent prompt been generated?
  • implement — Has the implementation been completed?
  • validate — Have tests passed?
  • audit — Has the audit been completed?
  • remediate — Have audit findings been fixed?
  • advance — Has the phase been formally advanced?