Skip to main content

Flow CLI & SDK for flowpad

Project description

Flow CLI

A local desktop CLI and UI for FlowPad — manage hooks, traces, and agentic workflows from your terminal.

Quick Start

pip install flowpad
flow          # prints version
flow start    # launches the UI server and opens browser

Requirements

  • Python >= 3.10
  • Node.js (for frontend development)
  • uv (for backend dependency management)

Installation

Install from PyPI:

pip install flowpad

Install a specific version:

pip install flowpad==0.1.12

Install from GitHub (latest):

pip install git+https://github.com/langware-labs/flow-cli.git

Verify the installation:

flow
# => flow 0.1.12

Uninstallation

pip uninstall flowpad

CLI Commands

Command Description
flow Print version
flow start Start the UI server and open browser
flow trace Start server and trace hook events in real-time
flow setup <agent> Setup FlowPad for a coding agent (e.g. claude-code)
flow hooks set Install Flow hooks into Claude Code settings
flow hooks list List configured hooks
flow hooks clear Remove Flow hooks from Claude Code settings
flow config list List configuration values
flow config set key=value Set a configuration value
flow auth login Login to FlowPad (opens browser or accepts API key)
flow auth logout Logout and remove stored credentials
flow ping <string> Send a test ping to the local server

Project Structure

flow-cli/
├── sdk/
│   ├── python/
│   │   └── flow_sdk/        # Python SDK package (import flow_sdk)
│   │       ├── cli/          # CLI commands (Typer app)
│   │       ├── core/         # Core infrastructure
│   │       ├── api/          # API types
│   │       ├── db/           # Database drivers (SQLite)
│   │       ├── builtin/      # Built-in entities
│   │       ├── actions/      # Action system
│   │       ├── hooks/        # Hook system
│   │       ├── rules/        # Rules engine
│   │       ├── discovery/    # Service discovery
│   │       ├── fs_records/   # File system record CRUD
│   │       ├── fs_store/     # File system storage
│   │       ├── mcp_server/   # MCP server
│   │       └── client.py     # FlowpadClient
│   └── typescript/
│       └── src/              # TypeScript SDK
├── server/                   # FastAPI server (import server)
│   ├── run.py                # Server entry point
│   ├── server.py             # FastAPI app
│   ├── routes/               # API endpoints
│   ├── middleware/            # Request middleware
│   ├── reporters/            # Event reporters
│   └── static/               # Built UI assets (generated)
├── ui/                       # Frontend source (React/Vite)
│   ├── src/
│   ├── vite.config.ts
│   └── package.json
├── tests/                    # All tests (unit, api, cli)
├── pyproject.toml
└── build_ui.py               # Builds UI into server/static/

Development

Prerequisites (Windows)

This repo uses git symlinks. On Windows, enable symlink support so they are checked out correctly:

# Enable symlinks globally (requires Developer Mode or elevated shell)
git config --global core.symlinks true

Backend

uv sync                        # install Python dependencies
python -m server.run           # start backend server on port 9007

The backend serves the API at http://localhost:9007. Bootstrap endpoint: http://localhost:9007/api/v1/graph/bootstrap

Frontend

cd ui
npm install                    # install Node dependencies
npm run dev                    # start Vite dev server on port 4097

The frontend runs at http://localhost:4097 and proxies API calls to the backend.

Running Tests

# All backend tests (from repo root)
python -m pytest tests/ -v

# Unit tests only
python -m pytest tests/unit/ -v

# API tests only
python -m pytest tests/api/ -v

# Frontend tests (requires running backend for api/react tests)
cd ui && npx vitest run

# Frontend build + lint
cd ui && npm run build && npm run lint

Building for pip install

# Build UI assets into server/static/ (required before packaging)
python build_ui.py

# Build the wheel
uv build

build_ui.py must run before uv build — it compiles the frontend into server/static/assets/ which gets included in the wheel. Without this step, the pip-installed server will serve the HTML shell but 404 on JS/CSS assets.

Deployment

Use the deploy script to bump version, tag, push, and publish:

./scripts/deploy_to_github.sh              # runs tests first
./scripts/deploy_to_github.sh --skip-tests # skip tests
./scripts/deploy_to_github.sh --no-pypi    # skip PyPI upload

This will:

  1. Increment the patch version in sdk/python/flow_sdk/_version.py
  2. Run tests (unless --skip-tests)
  3. Commit and tag the release
  4. Push to GitHub
  5. Build UI assets and wheel
  6. Publish to PyPI (unless --no-pypi)
  7. Validate the installed package

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

flowpad-0.1.28.tar.gz (15.4 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

flowpad-0.1.28-py3-none-any.whl (16.4 MB view details)

Uploaded Python 3

File details

Details for the file flowpad-0.1.28.tar.gz.

File metadata

  • Download URL: flowpad-0.1.28.tar.gz
  • Upload date:
  • Size: 15.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.3

File hashes

Hashes for flowpad-0.1.28.tar.gz
Algorithm Hash digest
SHA256 5fd4f9f87eb340c1272eb51ce7a7d624afbcda8e31190856e0829d1b6141847b
MD5 f4773aad8f15692dc987da8adc73bb44
BLAKE2b-256 11b4ff729a659be63aa74719b777f304518fc5776f3d26edcab3e684762956f5

See more details on using hashes here.

File details

Details for the file flowpad-0.1.28-py3-none-any.whl.

File metadata

  • Download URL: flowpad-0.1.28-py3-none-any.whl
  • Upload date:
  • Size: 16.4 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.3

File hashes

Hashes for flowpad-0.1.28-py3-none-any.whl
Algorithm Hash digest
SHA256 d38666dc250a57466194f4525c5f2b9d231869c0be7002479832b136a4082dff
MD5 e0710c47d711d78d43bcb2acfd7d8c0f
BLAKE2b-256 46df862ce57fbd3f48e2f5c62bcf935b6ab325c90114293ed5adfc79fe8fcb65

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page