Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (flowent) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Flowent
A workflow orchestration platform for multi-agent collaboration.
Install
Flowent requires Bubblewrap for local tool isolation. Install the system package first:
sudo apt-get install bubblewrapInstall the CLI globally:
npm install -g flowentOr install it with pip:
pip install flowentStart the server:
flowentCheck system requirements:
flowent doctorDocker Compose
Run the server with Docker Compose:
docker compose upTech Stack
- Vite: frontend development server and build tool.
- React: UI rendering model.
- FastAPI: local application server and settings API.
- uv: Python dependency and environment management.
- Tailwind CSS: utility-first styling.
- Shadcn UI: standard component patterns.
- Lucide Icons: shared icon set.
- Framer Motion: advanced interaction and transition animation.
Development
Install dependencies and start the local development server:
sudo apt-get install bubblewrap ripgrep
pnpm install
uv sync --project backend
pnpm devYou can also run the development container:
docker compose -f docker-compose.dev.yml up