Command-line interface for FloopFloop. Create projects, watch deploys, refine in a chat REPL, manage secrets — anything you can do in the web console, from your terminal. Single binary, no Node required.
Pre-built binaries for macOS, Linux, and Windows are published on every release.
macOS — Apple Silicon (M1/M2/M3/M4)
curl -L https://github.com/FloopFloopAI/floop-cli/releases/latest/download/floop-darwin-arm64 \
-o /usr/local/bin/floop
chmod +x /usr/local/bin/floop
xattr -d com.apple.quarantine /usr/local/bin/floop # bypass Gatekeeper (not yet code-signed)macOS — Intel
curl -L https://github.com/FloopFloopAI/floop-cli/releases/latest/download/floop-darwin-x64 \
-o /usr/local/bin/floop
chmod +x /usr/local/bin/floop
xattr -d com.apple.quarantine /usr/local/bin/floopLinux x64
curl -L https://github.com/FloopFloopAI/floop-cli/releases/latest/download/floop-linux-x64 \
-o /usr/local/bin/floop
chmod +x /usr/local/bin/floopWindows x64 — download
floop-windows-x64.exe,
rename to floop.exe, place it on your %PATH%. SmartScreen will warn the
first time — click "More info" → "Run anyway".
Verify checksums (recommended)
curl -L https://github.com/FloopFloopAI/floop-cli/releases/latest/download/SHA256SUMS \
| sha256sum -c --ignore-missingfloop login # opens browser, click Approve
floop new "a crypto RSI dashboard for BTC" # creates project, streams progress
floop list # see your projects
floop chat my-rsi # interactive refinement REPL
floop status my-rsi --watch # live deploy progress
floop open my-rsi # open the live URL
floop upgrade # self-update to the latest releaseFull reference: floopfloop.com/docs/cli
or run floop docs.
floop login --device # shows a code to paste at /device
FLOOP_TOKEN=flp_cli_… floop list --json # bypass interactive login entirelyEvery command supports --json. Documented exit codes: 0 ok · 1 user
error · 2 auth · 3 rate-limited · 4 server · 5 network.
Requires Bun for cross-compilation. To produce binaries locally:
npm install
npm run compile:darwin-arm64 # or :darwin-x64, :linux-x64, :windows-x64
./dist/floop-darwin-arm64 --versionReleases are produced automatically by GitHub Actions on every cli-v* tag —
see .github/workflows/cli-release.yml.
MIT