A cadence for professional orchestration.
Laya is an open-source, local-first AI notification command center that aggregates Slack, Gmail, GitHub, Jira, Notion, Outlook, and Calendar notifications — powered by local LLMs via Ollama and LM Studio, or cloud models like Claude and GPT with your own API keys. It intercepts events from your professional tools, performs autonomous research and action-staging using LLM-powered agents, and presents you with ready-to-approve Action Cards -- so the answer is ready before you open the notification.
Works with:
- Ollama and LM Studio (local LLMs)
- Claude models (Anthropic)
- GPT models (OpenAI)
- Gemini models (Google)
- Llama models and any OpenAI-compatible endpoint — via LiteLLM
Aggregates:
- Gmail
- Slack
- GitHub
- Bitbucket
- Jira
- Linear
- Notion
- Outlook (email and calendar)
- Google Calendar
Your Tools (Jira, Slack, Gmail, Bitbucket, Calendar)
|
v
n8n (local Node.js) -- normalizes events
|
v
Laya Engine (Python) -- classifies, researches, stages
|
v
Laya UI (Tauri + Svelte) -- Action Cards you approve or dismiss
|
v
n8n -- executes approved actions (creates PRs, sends replies, etc.)
- Multi-persona brain: Routes events to specialized AI personas (Engineer, Comms, Ops, Sales, HR, Finance) with domain-specific tools and prompts, with AI prioritization of every notification
- Card Workspaces: Agent workflows for complex tasks (bug fixes, code reviews) — interactive workspaces where you collaborate with a coding agent (Claude Code, Gemini CLI, Codex, or Pi CLI) through multiple approval steps
- Card Research: Launch on-demand deep research sessions on any card — a coding agent investigates with web search, semantic context, and sandboxed file access
- Agent inference backends: Run the classification/synthesis pipeline on an installed CLI agent's own quota instead of an API key — select a model of the form
agent/<id>/<model>(Claude Code, Codex, Gemini, or Pi) for any stage. Claude Code enforces JSON schemas natively; other agents use best-effort schema + retry - Spaces: User-defined contexts grouping event sources with per-space model and API key configurations
- Context Association: Automatically links related cards across platforms using semantic similarity and LLM confirmation. Learns from your corrections to improve grouping accuracy over time
- Cross-platform memory: Entity resolution links "BUG-1234" in Jira to "PR-891" in Bitbucket to "the payment bug" in Slack
- Daily Briefing: Morning summary of overnight activity, pending cards, and today's calendar with context
- Analytics Dashboard: Track events processed, time saved, LLM costs (broken down by feature and pipeline step), throughput over time, and approval rates
- Budget Tracking: Monitor LLM costs by feature (Pulse, Omni, Chat, Coherence) with monthly caps and automatic pause when limits are reached. When running on agent inference backends, a separate window-based usage budget pauses ingestion as an agent's rolling quota nears its limit and auto-resumes when the window resets
- Chat sidebar: Ask Laya questions about your events, projects, and context — and create, edit, or delete filter/classification/processing rules directly from the conversation
- Hybrid search: Chat and Coherence retrieval combine local vector search (ChromaDB) with lexical BM25 ranking over SQLite FTS5 (
cards_fts/events_fts), merged via Reciprocal Rank Fusion, so both semantic and exact-keyword matches surface - Coherence: Cross-platform entity search traces any person, ticket, or PR across all platforms using hybrid local search, with AI-generated narratives
- Egress: Execute outbound actions (emails, Slack messages, PR comments) directly from Laya with preview-before-send
- Omni: Rolling cross-platform summary that answers "where am I right now?" with four temporal layers (Attention, Recent, Period, Milestone) and progressive AI compression
- Bookmarks: Pin important cards for quick access regardless of date or status
- Classification learning: Laya extracts rules from your priority/persona corrections and improves classification automatically over time
- Context learning: Laya extracts natural-language context rules from your link/unlink corrections and improves context association over time. Learned and manual rules are viewable and editable in Settings, and large rule sets are LLM-consolidated automatically
- Processing rules: Automated, optionally AI-evaluated rules that act on incoming cards (tag, route, run an agent, send egress). Every firing is recorded in a searchable firing log with its outcome (success / error / skipped) and reason
- Audit & export: Inspect dead events, ingestion errors, and rule-filtered events in one place; retry or clear failures, and export filtered events or the audit log as JSON over any time window
- On-prem repositories: Self-hosted Bitbucket Server / Data Center and GitHub Enterprise are supported via a per-repo
hostfield (empty or the cloud domain ⇒ cloud) - Dead event recovery: Failed events are tracked with error context and can be manually retried from the audit log
- Privacy-aware: Three-tier data classification with cloud/local processing options
| Layer | Technology |
|---|---|
| Desktop Shell | Tauri v2 (Rust) |
| Frontend | Svelte 5 (runes) + Skeleton UI + Tailwind CSS v4 |
| Backend | Python 3.10+ / FastAPI / asyncio |
| LLM Interface | LiteLLM (supports Anthropic, OpenAI, Google, Ollama) |
| Integration Gateway | n8n (local Node.js on port 45678) |
| Structured Storage | SQLite (async via aiosqlite, WAL mode) |
| Vector Storage | ChromaDB (embedded PersistentClient) |
| Embeddings | ONNX (built-in to ChromaDB) or sentence-transformers (optional) |
| Coding Agents | Claude Code / Gemini CLI / OpenAI Codex CLI / Pi CLI (usable as workspace agents and as inference backends) |
laya/
├── engine/ # Python FastAPI backend
│ ├── laya/
│ │ ├── main.py # Entry point (uvicorn server on :8420)
│ │ ├── config.py # Settings, paths, agent detection
│ │ ├── api/ # REST + WebSocket endpoints (27 routers)
│ │ ├── db/ # SQLite (+ FTS5) + ChromaDB + 70 migrations
│ │ ├── pipeline/ # Event processing (ingest → route → stage → emit → trace → learn → context_learn → omni)
│ │ ├── llm/ # LiteLLM client, agent inference backends, prompts, tools
│ │ ├── agents/ # Coding agent adapters (Claude, Gemini, Codex, Pi)
│ │ ├── workers/ # Multi-persona LLM workers (engineer, comms, ops, sales, hr, finance)
│ │ ├── egress/ # Outbound action execution (9 platforms)
│ │ ├── integrations/ # n8n bootstrap & client
│ │ └── security/ # OS keychain integration
│ ├── requirements.txt # Core Python dependencies
│ └── requirements-ml.txt # Optional: torch + sentence-transformers
│
├── ui/ # SvelteKit + Tauri desktop app
│ ├── src/ # Svelte 5 frontend (runes syntax)
│ │ ├── routes/ # Pages (feed, coherence, dashboard, settings, workspace, omni)
│ │ ├── lib/ # Components, API client, stores
│ │ ├── app.css # Tailwind v4 + theme system
│ │ └── app.html
│ ├── src-tauri/ # Rust/Tauri shell
│ │ ├── src/
│ │ │ ├── lib.rs # Tauri setup, commands, health polling, tray
│ │ │ ├── sidecar.rs # Python venv lifecycle & engine spawning
│ │ │ └── n8n.rs # n8n process management
│ │ ├── tauri.conf.json # Tauri config (resources, icons, window)
│ │ └── resources/ # Bundled engine source (production builds)
│ ├── package.json
│ └── svelte.config.js # Static adapter (SPA mode)
│
├── n8n/
│ └── workflows/ # Integration workflows (JSON, ~21 files: ingestion + executor per platform)
│
├── scripts/
│ ├── setup-dev.sh # One-time dev environment setup
│ ├── dev.sh # Start engine + Tauri dev server
│ ├── build.sh # Production build
│ └── update_icons.sh # Icon generation
│
├── landing/ # Landing page
└── docs/ # Architecture & design documents
The fastest way to try Laya is a prebuilt release — no toolchains required.
-
Open the Releases page and download the installer for your platform:
Platform Download macOS .dmg(universal — Apple Silicon + Intel)Windows .msior.exeLinux .debor.AppImage -
Install and launch. You do not need Python, Node, or Rust installed to run a release build. On first run, Laya checks for a compatible Python (3.10+) and Node.js (20+) already on your machine and uses those if found; otherwise it provisions its own bundled runtimes. Either way, a local n8n instance is set up under
~/.laya/. -
Add an API key (Anthropic, OpenAI, Google, …) or point Laya at a local Ollama / LM Studio endpoint, then connect your tools from Settings.
macOS: release builds are signed, so they open normally — just double-click to launch.
Want to build from source, hack on the engine, or contribute? Follow the Development setup below.
You need three runtimes installed. Here's how to get each one:
- macOS:
brew install python@3.12(or download from python.org) - Ubuntu/Debian:
sudo apt install python3 python3-venv python3-pip - Windows: Download from python.org (check "Add to PATH" during install)
Verify: python3 --version
- All platforms: Download from nodejs.org (LTS recommended), or use a version manager like nvm / fnm
- macOS:
brew install node - Ubuntu/Debian:
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash - && sudo apt install -y nodejs
Verify: node --version && npm --version
Install via rustup:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | shVerify: cargo --version
macOS:
xcode-select --installLinux (Ubuntu/Debian):
Tauri v2 requires system libraries for GTK, WebKit, and app-indicator support:
sudo apt install -y libwebkit2gtk-4.1-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev patchelfLinux: Tailwind CSS classes missing or styles not updating
The default Linux inotify file watcher limit (65,536) can be too low for this project -- Vite needs to watch the source files while the Rust target/ directory consumes most of the quota, causing Tailwind CSS to silently fail to generate utility classes. Increase the limit:
# Immediate (resets on reboot)
echo 524288 | sudo tee /proc/sys/fs/inotify/max_user_watches
# Permanent
echo 'fs.inotify.max_user_watches=524288' | sudo tee -a /etc/sysctl.conf
sudo sysctl -pscripts/setup-dev.shThis script does the following:
- Checks that
python3,node,npm, andcargoare available - Creates a Python virtual environment at
engine/.venv/and installs dependencies fromengine/requirements.txt - Installs npm packages for the UI (
ui/node_modules/) - Installs n8n as a local npm package into
~/.laya/n8n_module/ - Creates data directories at
~/.laya/data/and~/.laya/logs/
scripts/dev.shThis starts two processes:
- Python engine --
python -m laya.main(with hot reload) at http://127.0.0.1:8420 - Tauri dev server --
npx @tauri-apps/cli devwhich starts Vite at http://localhost:5173 and opens the Tauri window
n8n is managed automatically by the Tauri app -- it starts on launch (port 45678) and stops on quit.
Note: If the engine fails with "Address already in use", a stale engine process may be holding port 8420. The engine will attempt to kill it automatically on startup.
On first launch, the engine creates config files in ~/.laya/:
| File | Purpose |
|---|---|
settings.json |
Models, agent paths, privacy settings, pipeline params |
team.json |
Team member context |
rules.json |
Event filtering rules |
repos.json |
Git repository paths and metadata |
API keys (Anthropic, OpenAI, Google, etc.) are stored securely in your OS keychain and can be configured through the Settings UI.
The engine logs at INFO by default. Change verbosity from Settings → Data → Engine Log Level (DEBUG / INFO / WARNING / ERROR) — this maps to the logging.level key in settings.json and applies immediately, no restart. Set it to WARNING to record only warnings and errors and keep logs small. For a single run you can override it with the LAYA_LOG_LEVEL environment variable, which takes precedence over the setting (and also sets uvicorn's request-log level).
Laya's AI pipeline uses system prompts at every stage (routing, staging, summarization, chat, etc.). All prompts ship with sensible defaults, but you can override any of them by placing files in ~/.laya/prompts/:
mkdir -p ~/.laya/prompts
# Override the router prompt (controls event classification)
vim ~/.laya/prompts/router.md
# Override a worker persona
vim ~/.laya/prompts/engineer.md
# Reload without restarting
curl -X POST http://127.0.0.1:8420/prompts/reloadAvailable prompt files: router.md, stager.md, omni.md, group_summary_initial.md, group_summary_rolling.md, briefing.md, summarizer.md, summarizer_status_change.md, engineer.md, comms.md, sales.md, hr.md, ops.md, finance.md, chat.md, chat_title.md, chat_polish.md, learner.md, context_learner.md, trace_narrative.md, trace_summary.md, trace_filter.md.
Custom prompts fully replace the built-in default for that stage. If a file is deleted, the hardcoded default is used automatically. The engine never creates or modifies files in this directory. Use GET /prompts to check which prompts are currently overridden.
| Store | Location | Purpose |
|---|---|---|
| SQLite | ~/.laya/data/laya.db |
Events, cards, workspaces, spaces, traces, egress, chat |
| ChromaDB | ~/.laya/data/chroma/ |
Vector embeddings for semantic search |
| n8n | ~/.laya/n8n/ |
Workflow data, credentials (encrypted) |
| Logs | ~/.laya/logs/ |
engine.log — rotating engine logs (10 MB × 5 files), verbosity set by the log level above. Also engine-stdout.log and n8n.log — captured process output, likewise rotated (10 MB × 3 files). |
Laya bundles the Python engine source into the Tauri app. On first launch, the app creates a Python virtual environment at ~/.laya/venv/ and installs dependencies automatically -- no Python installation is required on the end user's machine beyond what the app manages.
scripts/build.shThis does two things:
- Bundles engine source -- copies
engine/laya/,requirements.txt,requirements-ml.txt, andn8n/workflows/intoui/src-tauri/resources/engine/ - Builds the Tauri app -- compiles the Rust shell, bundles the SvelteKit frontend, and packages everything into a platform-native installer
scripts/build.sh # Build for current platform
scripts/build.sh --target x86_64-apple-darwin # Cross-compile for Intel Mac
scripts/build.sh --universal # Universal binary (arm64 + x86_64)
scripts/build.sh --sign "Developer ID App: ..." # macOS code signing
scripts/build.sh --skip-engine # Skip engine bundling (reuse previous)| Platform | Format | Path |
|---|---|---|
| macOS | .app |
ui/src-tauri/target/release/bundle/macos/Laya.app |
| macOS | .dmg |
ui/src-tauri/target/release/bundle/dmg/Laya_0.1.0_<arch>.dmg |
| Windows | .msi |
ui/src-tauri/target/release/bundle/msi/ |
| Windows | .exe |
ui/src-tauri/target/release/bundle/nsis/ |
| Linux | .deb |
ui/src-tauri/target/release/bundle/deb/ |
| Linux | AppImage | ui/src-tauri/target/release/bundle/appimage/ |
Note: macOS builds are unsigned by default. Unsigned apps trigger Gatekeeper -- users must right-click > Open to bypass. Pass
--signwith an Apple Developer identity to produce a signed build.
Architecture and design documents in docs/:
- System Architecture -- Component diagrams and service descriptions
- Event Schema -- The Laya Event schema specification
- API Contracts -- REST, WebSocket, and inter-service API definitions
- Database Schema -- SQLite tables (incl. FTS5), ChromaDB collection, and migrations
- Project Structure -- Repository layout and config file schemas
- Tuning Parameters -- Overridable pipeline, retrieval, and agent-budget settings
- n8n Data Persistence -- How n8n workflow data and credentials are stored
- Decision Log -- Architectural decisions with rationale
Deeper design docs (egress, AI processing rules, OAuth app distribution, pipeline lifecycle) live in engine/docs/.
