
The AI automation platform, self-hosted. Describe the job in chat and LiveContext builds it: readabl
The AI automation platform, self-hosted. Describe the job in chat and LiveContext builds it: readabl
The AI automation platform. One message in, a working automation out.
Describe the job in chat and LiveContext builds it in front of you: a workflow you can read, AI agents with scoped access and budgets you control, and a small app your team actually uses. Chat, Workflow, Agent and App in one self-hosted platform. No code to write, nothing to stitch together.
An open-source, self-hosted alternative to n8n, Zapier and Make, with AI agents built in.
The builder, built by chat: one message in, a working automation out. Five real scenarios, one loop. Watch it full size · Try the hosted version
⭐ If LiveContext looks useful, give it a star. It helps other teams find it.
Most teams wire together a chatbot, an automation tool, an app builder and an agent framework. LiveContext is all four on one canvas, every agent scoped, budgeted and audited, and you can see exactly what each one did. The chat (shown above) builds it; here is what it runs as:
Workflow + App
The workflow and the app it drives, in one view. Draw the automation as a readable graph, then wrap it in a real interface: forms, dashboards and live approval screens your team or an agent can act on.Agents
A fleet of scoped agents, one per job: each with its own model, tools, files, credit budget and full audit trail. No black box.Tables
Built-in data tables your workflows and agents read, write and enrich. Filter, search and export, with no external database to wire up.Data & metrics
Every run charted: calls, tokens, success rate and duration, sliced per agent and per tool. Spot a regression and drill straight into it.The workflow decides exactly what each agent sees and what it ships, so the same job runs at a fraction of the cost of a do-everything agent, every step is auditable, and your business never sits inside a black box.
This repository is the Community Edition (CE): the full platform as a single self-hosted service (see LICENSE). It is free to self-host and use in production inside your organization.
The fastest way is one npm command (Docker must be installed and running):
npx livecontextIt pulls the images, boots the whole stack, and serves on http://localhost:3000.
npx livecontext down stops it and npx livecontext update upgrades it. The CLI wraps
Docker Compose, it does not replace Docker.
Or run Docker Compose directly from a clone of this repo:
# From the repo root:
docker compose up -d
# Watch it come up. The "livecontext" service runs database migrations and registers
# its tools on first boot; wait until it reports "healthy" and "frontend" is up:
docker compose psThen open http://localhost:3000 and create the first account (the first user becomes the admin). Two optional add-ons (interface screenshots/PDFs, and a browser agent with web search) are one env file away when you want them, see Optional features below.
Configuration (LLM keys, SMTP, ports) is documented in docker/README-CE.md.
Copy docker/.env.ce.example to set your own values, and never commit it.
Nothing extra to build. Publish both ports (3000 for the web UI, 8080 for the backend)
and open the app at that machine's address: http://192.168.1.50:3000 talks to
http://192.168.1.50:8080 on its own. If you put a reverse proxy in front and serve
everything on a single origin, set GATEWAY_PUBLIC_URL on the frontend service to the
browser-facing backend URL instead.
Deploying through Portainer, Coolify, Dokploy or a similar platform: see templates/README.md.
Built for linux/amd64 and linux/arm64, so the same tag runs on an ordinary server and on Apple Silicon, a Raspberry Pi, Ampere or Graviton. Docker picks the right one for your machine. The Compose file pulls from GHCR:
ghcr.io/livecontext-ai/livecontext-ce
ghcr.io/livecontext-ai/livecontext-ce-frontend
ghcr.io/livecontext-ai/livecontext-ce-bridge
ghcr.io/livecontext-ai/livecontext-ce-screenshot-renderer # opt-in renderer profileEach release is tagged vX.Y.Z (immutable) plus vX.Y, vX and latest if you would
rather track a line than pin an exact version.
Two heavy features are opt-in and start with no container by default, keeping the base stack light. Each is enabled by a bundled env file (it turns on both the Docker profile and the matching app setting in one shot):
renderer profile). Adds a headless Playwright/Chromium
sidecar (~1 GB image) so interface nodes can render a PNG screenshot or a PDF. Enable it with:docker compose --env-file docker/.env.ce.renderer up -dbrowser-agent profile). Adds a Chromium browser-use container
plus a SearXNG metasearch sidecar (~2 GB) so agents can browse pages (agent_browse) and run
web_search. Enable it with:docker compose --env-file docker/.env.ce.browser-agent up -dRun both by passing both env files (repeat --env-file). See docker/README-CE.md
for details and tuning.
Both add-ons need this repository: the env files above are not part of the livecontext npm
package and npx livecontext passes no --env-file, so neither can be enabled through npx.
Clone the repo and use docker compose directly to turn them on.
docker compose up.Prefer not to run your own infrastructure? The managed service, with an always-current integration catalog and hosted account management, lives at livecontext.ai. Those hosted-only features are not part of the Community Edition.
CE runs from prebuilt images (the Quick start above pulls them). The full source is in this repo.
To build the images yourself instead of pulling, use the per-service Dockerfiles:
backend/monolith-service/Dockerfile (Java 21, the ce Maven profile), frontend/Dockerfile
(Node 20), and mcp/bridge/Dockerfile.
Please report vulnerabilities privately. See SECURITY.md.
LiveContext CE is licensed under the GNU Affero General Public License v3.0 (AGPL-3.0), see LICENSE. You are free to use, self-host, modify and redistribute it, including commercially. One condition matters most: if you run a modified version as a network service, the AGPL requires you to make the corresponding source of your changes available to that service's users.
The LiveContext name and logo are trademarks of their owner and are not covered by the AGPL, see TRADEMARKS. Third-party components ship under their own licenses, see NOTICE and THIRD_PARTY_NOTICES.
⭐ If LiveContext is useful to you, star the repo. It is the simplest way to help other teams discover it, and it means a lot to a small team. Questions or ideas? Open a Discussion.
No open issues yet, or sync has not completed.