Documentation Index
Fetch the complete documentation index at: https://mintlify.com/8BitTacoSupreme/flowstate/llms.txt
Use this file to discover all available pages before exploring further.
flowstate status reads flowstate.json and renders a Rich table showing the current state of every tool in the pipeline. Use it after running flowstate init to confirm which steps completed, which are blocked, and what artifacts were produced.
Synopsis
Options
Project root directory.
flowstate status reads flowstate.json from this path.Output
Status table
The main output is a Rich table with five columns:| Column | Description |
|---|---|
| Tool | The pipeline tool name: research, strategy, gsd, or discipline |
| Phase | Human-readable phase label: Research, Strategy, Management, or Discipline |
| Status | Current tool state (see values below) |
| Artifacts | Comma-separated list of artifact paths produced by this tool, or --- |
| Error | Error message if the tool is blocked, or --- |
Status values
| Value | Meaning |
|---|---|
ready | Tool has not yet been run |
running | Tool is currently executing (or was interrupted mid-run) |
completed | Tool ran successfully |
blocked | Tool failed; see the Error column for details |
Example output
Context files and artifacts
Below the table,flowstate status prints two additional sections when available:
- Context files — the five files written during context generation, e.g.
.planning/PROJECT.md,.claude/CLAUDE.md - Artifacts — named output files keyed by type, e.g.
research_report: research/report.mdandstrategy_report: research/strategy.md
Example
Notes
flowstate statusis read-only — it never modifiesflowstate.json.- If
flowstate.jsondoes not exist yet, runflowstate initfirst to initialize the project. - A tool in
runningstate that is not actively executing indicates a previous run was interrupted. Re-runflowstate init --skip-interviewto continue from where it left off.