Metadata-Version: 2.4
Name: flowbase-cli
Version: 0.1.2
Summary: Command line client for the FlowBase OpenAPI
Author: DeepFlowAI
License: Apache-2.0
Requires-Python: >=3.11
Description-Content-Type: text/markdown

# FlowBase CLI

Install from this checkout:

```bash
python -m pip install ./packages/flowbase-cli
```

Configure an environment Base URL and an API key:

```bash
export FLOWBASE_HOST=https://flowbase-test-a.deepflowagent.com
export FLOWBASE_API_KEY=fbk_xxx

flowbase objects list
flowbase records create obj_xxx --json '{"values":{"name":"Example"}}'
flowbase changes commit --message "Add customer field" --yes
flowbase changes release --message "Release customer field" --yes
flowbase docs list
```

`--host` selects the environment through its Host. Version commands are limited to the current enabled test environment; release can succeed only when its current version meets FlowBase's fast-forward checks. The CLI never accepts a separate environment override and never stores API keys on disk. See `flowbase --help` and `flowbase docs list` for the complete command set.
