fleet-rlm is a Web UI-first recursive language model runtime for long-context code and document work. It ships a Modal-backed default runtime, an integrated FastAPI + WebSocket surface, packaged frontend assets, and an experimental Daytona workbench path that plugs into the same workspace instead of living as a separate product.
Docs | Contributing | Changelog
- Use a single workspace for long-context reasoning, chat turns, run inspection, and runtime diagnostics.
- Keep the default product path Modal-backed and chat-oriented.
- Expose an experimental Daytona pilot without forking the frontend or transport contract.
- Ship both a user-facing Web UI and integration surfaces for CLI, HTTP, WebSocket, and MCP workflows.
The supported app surfaces are RLM Workspace, Volumes, and Settings. Legacy taxonomy, skills, memory, and analytics routes now redirect to supported pages instead of remaining first-class product surfaces.
Add fleet-rlm to a uv-managed project and launch the Web UI:
# Create a project if you do not already have one
uv init
# Add fleet-rlm to the environment
uv add fleet-rlm
# Start the Web UI + API server
uv run fleet webOpen http://127.0.0.1:8000.
If you already have a uv project, skip uv init and just run uv add fleet-rlm.
Published installs already include built frontend assets, so end users do not need pnpm, vp, or a separate frontend build step.
uv run fleet webThis starts the main product surface with:
RLM Workspacefor chat and runtime executionVolumesfor runtime-backed file browsingSettingsfor runtime configuration and diagnostics
uv run fleet-rlm chat --trace-mode compactuv run fleet-rlm serve-api --host 127.0.0.1 --port 8000If you want the optional MCP server surface, install the extra first:
uv add "fleet-rlm[mcp]"
uv run fleet-rlm serve-mcp --transport stdiofleet-rlm currently has two top-level runtime modes:
modal_chat: the default product pathdaytona_pilot: the experimental workbench path
In the shared runtime contract:
- Modal requests can include
execution_mode. - Daytona requests can include
repo_url,repo_ref,context_paths, andbatch_concurrency. - Daytona still uses the same websocket workspace and run-workbench flow, but it intentionally remains experimental.
fleet-rlm daytona-rlm --max-depthremains available only as a deprecated compatibility flag for the CLI pilot path.
This package exposes two command entrypoints:
fleet: lightweight launcher for terminal chat andfleet webfleet-rlm: fuller Typer CLI for API, MCP, scaffold, and Daytona flows
Common commands:
# Web UI
uv run fleet web
# Terminal chat
uv run fleet
uv run fleet-rlm chat --trace-mode verbose
# FastAPI server
uv run fleet-rlm serve-api --port 8000
# Optional MCP server
uv run fleet-rlm serve-mcp --transport stdio
# Scaffold bundled Claude Code assets
uv run fleet-rlm init --list
# Experimental Daytona validation
uv run fleet-rlm daytona-smoke --repo https://github.com/qredence/fleet-rlm.git --ref main
# Experimental Daytona pilot
uv run fleet-rlm daytona-rlm \
--repo https://github.com/qredence/fleet-rlm.git \
--task "Summarize the tracing architecture" \
--batch-concurrency 4The current frontend/backend contract centers on:
/health/readyGET /api/v1/auth/meGET /api/v1/sessions/state/api/v1/runtime/*POST /api/v1/traces/feedback/api/v1/ws/chat/api/v1/ws/execution
When AUTH_MODE=entra, HTTP and WebSocket access use real Entra bearer-token validation plus Neon-backed tenant admission. Runtime settings writes are intentionally limited to APP_ENV=local.
The canonical schema lives in openapi.yaml.
From the repo root:
uv sync --all-extras --dev
uv run fleet webFrontend contributors should use pnpm inside src/frontend:
cd src/frontend
pnpm install --frozen-lockfile
pnpm run dev
pnpm run checkThis repo explicitly uses pnpm for frontend work even though the packaged frontend is built with Vite+ under the hood.
Repo-level validation:
make test-fast
make quality-gate
make release-checkFocused docs validation:
uv run python scripts/check_docs_quality.py
uv run python scripts/validate_release.py hygiene
uv run python scripts/validate_release.py metadataUse this order for Daytona work:
- Set
DAYTONA_API_KEY,DAYTONA_API_URL, and optionalDAYTONA_TARGET. - Run
uv run fleet-rlm daytona-smoke --repo <url> [--ref <branch-or-sha>]. - Only then run
uv run fleet-rlm daytona-rlm [--repo <url>] [--context-path <path> ...] --task <text> ....
This repo treats DAYTONA_API_BASE_URL as a misconfiguration. Use DAYTONA_API_URL instead.