Public alpha · v0.1.0-alpha
FloopFloop in your terminal
Build, deploy, and monitor FloopFloop projects without leaving your shell. One single-file binary. Full parity with the web console. Scriptable for CI.
~ floop login
$ floop login Opening https://www.floopfloop.com/cli/authorize?state=… in your browser… ✓ Logged in as you@example.com Token saved to ~/.floop/config.json $ floop new "a crypto RSI dashboard for BTC/ETH" --subdomain my-rsi ✓ Project created name: A Crypto Rsi Dashboard subdomain: my-rsi type: bot █████░ Step 5/6 generating: Building project… ✓ Live at https://my-rsi.floop.tech
Install in 30 seconds
Single binary. No Node required. Highlighted card matches your OS.
macOS · Apple Silicon
Downloadcurl -L https://github.com/FloopFloopAI/floop-cli/releases/latest/download/floop-darwin-arm64 -o /usr/local/bin/floop && chmod +x /usr/local/bin/floop
macOS · Intel
Downloadcurl -L https://github.com/FloopFloopAI/floop-cli/releases/latest/download/floop-darwin-x64 -o /usr/local/bin/floop && chmod +x /usr/local/bin/floop
Linux · x64
Downloadcurl -L https://github.com/FloopFloopAI/floop-cli/releases/latest/download/floop-linux-x64 -o /usr/local/bin/floop && chmod +x /usr/local/bin/floop
Windows · x64
Download# In PowerShell, as Administrator: Invoke-WebRequest https://github.com/FloopFloopAI/floop-cli/releases/latest/download/floop-windows-x64.exe -OutFile $env:USERPROFILE\floop.exe
First-launch warning
The binaries aren't yet code-signed. macOS shows a Gatekeeper prompt — right-click → Open, or run xattr -d com.apple.quarantine /usr/local/bin/floop. Windows shows SmartScreen — click "More info" → "Run anyway". Apple notarisation and Authenticode signing are on the roadmap.
What you can do
Create a project from a prompt
floop new "a crypto RSI dashboard for BTC and ETH"Watch a deploy live
floop status my-bot --watchList your projects
floop listOpen the live URL
floop open my-botFAQ
What can I do with the floop CLI?
Anything the web console can: create projects from a prompt, list and open them, watch deploys live, cancel and reactivate, manage your devices. It's a thin client over the same /api/v1 endpoints — no separate quotas, no separate billing.
Do I need a paid plan?
No. CLI device tokens are scoped to your normal account plan, exactly like signing in on the web. Programmatic API keys (for CI/CD scripts) still require the Business plan, but the CLI itself does not.
How does login work?
`floop login` opens your default browser to floopfloop.com, you click Approve, and the CLI receives a long-lived token bound to that machine. On SSH or CI runners, use `floop login --device` instead — it shows a code you paste into a webpage.
Is my token safe on disk?
The token lives at ~/.floop/config.json with 0600 perms (owner read/write only). OS keychain support (macOS Keychain, Windows Credential Manager) is on the roadmap. You can revoke any device's token from your account settings.
Why does macOS warn me about an unidentified developer?
We're not yet code-signed. Right-click the binary and choose Open the first time, or run `xattr -d com.apple.quarantine /usr/local/bin/floop` to bypass Gatekeeper. Apple notarisation is on the roadmap — when it lands, the warning goes away.
Why does Windows show a SmartScreen warning?
Same reason: the binary isn't yet signed with a code-signing certificate. Click 'More info' → 'Run anyway' the first time. Authenticode signing is on the roadmap.
Can I script with the CLI?
Yes. Every command supports `--json` for machine-readable output, and exit codes are documented (0=ok, 2=auth, 3=rate-limited, 4=server, 5=network). Set FLOOP_TOKEN in your CI environment to skip the interactive login.
Ready to ship from the terminal?
Pick your OS above, paste the install command, and run floop login.
Or verify checksums: SHA256SUMS