JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 448
  • Score
    100M100P100Q97370F
  • License Apache-2.0

A workflow orchestration platform for multi-agent collaboration.

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

    npm version PyPI version License CI Release Docker

    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 bubblewrap

    Install the CLI globally:

    npm install -g flowent

    Or install it with pip:

    pip install flowent

    Start the server:

    flowent

    Check system requirements:

    flowent doctor

    Docker Compose

    Run the server with Docker Compose:

    docker compose up

    Tech 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 dev

    You can also run the development container:

    docker compose -f docker-compose.dev.yml up