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 check verifies that the claude CLI is reachable and prints the resolved binary path along with the timeout and max-turns configuration that FlowState will use for bridge calls. Run this before flowstate init to confirm your Claude Code installation is correctly detected.
Synopsis
Options
Project root directory. Used when constructing the bridge configuration (e.g. to resolve
FLOWSTATE_CLAUDE_BIN relative paths).Output
When the claude CLI is found
- Path — the absolute path to the detected
claudebinary - Timeout — the subprocess timeout in seconds (default: 300s)
- Max turns — the
--max-turnsvalue passed to theclaudeCLI (default: 10)
When the claude CLI is not found
Detection order
FlowState searches for theclaude binary in this order:
- The
FLOWSTATE_CLAUDE_BINenvironment variable (if set and the file exists) claudeon yourPATH(viawhich)- Common install locations:
~/.local/bin/claude/usr/local/bin/claude/opt/homebrew/bin/claude
Overriding the binary path
SetFLOWSTATE_CLAUDE_BIN to point to a non-standard install location:
Example
Notes
flowstate checkis read-only and makes no changes to your project or state file.- If
claudeis not found,flowstate initwill fall back to dry-run mode automatically rather than failing. - For Claude Code installation instructions, see the Installation guide.