Skip to main content
Today, the Floo CLI is the canonical agent surface. It is self-documenting, every output-producing command supports --json, and config lives in the repo where agents can read and write it safely.

Install the skill

Your agent now has the Floo command reference, config shapes, and common workflows.

What agents should treat as the source of truth

  • floo.app.toml defines app shape in git
  • GitHub is the source of code for deploys
  • the CLI is the primary control plane
  • the dashboard is a window into live state, not a second config system

Allow safe read-only commands

Add Floo to your agent’s allowed commands so it can inspect state without prompting you every time. Claude Code (.claude/settings.json):

Give other tools the same rules

Cursor (.cursorrules):
Other tools:

Parse the output contract

Use JSON mode whenever the agent needs structured data:
Success shape:
Error shape:
  1. Read or update config in the repo.
  2. Use floo commands --json or floo <command> --help for capability discovery.
  3. Trigger or observe deploys from the CLI.
  4. Use logs, analytics, releases, and rollbacks from the same surface.
For the control-plane split, see Dashboard vs CLI.