Skip to main content
Use these commands when you want the CLI to tell you what it can do without leaving the terminal.

floo docs

Print built-in platform docs directly in the terminal.
floo docs
floo docs services
floo docs config
floo docs deploy
The shipped CLI currently exposes these topics:
  • services
  • config
  • deploy

JSON output

{
  "success": true,
  "data": {
    "topic": "deploy",
    "content": "Floo Deploy Flow..."
  }
}

floo commands

Print the full command tree. In --json mode, this is the best machine-readable index of the shipped CLI surface.
floo commands
floo commands --json 2>/dev/null | jq '.data.commands'

JSON output

{
  "success": true,
  "data": {
    "version": "0.1.1",
    "commands": [
      {
        "name": "deploy",
        "description": "Deploy a project to Floo",
        "usage": "floo deploy [PATH] [OPTIONS]",
        "requires_auth": true
      }
    ]
  }
}
floo --help
floo <command> --help
floo version
Use floo version and floo update when you need to confirm the installed binary or upgrade it in place.

When This Is Most Useful

  • onboarding a new teammate or agent
  • checking whether a feature is actually in the shipped CLI
  • avoiding stale docs by confirming the command tree directly from the binary