LiveAgent

by Stack-CairnVerified

A fully functional AI Agent desktop client that supports Webui access and can be creatively customized and expanded!

1,827
Stars
207
Forks
TypeScript
Language
8/23/2026
Added
View on GitHubDownload ZIP

⚠️ Third-Party Software Notice

This skill is third-party open-source software developed and hosted independently on GitHub. SkillTip is an informational directory and does not control or maintain the underlying repository. Any security checks displayed are automated and limited in scope. Review the source code before installing.

Read the Terms of Service

Installation

Add to your Claude Code skills directory:

# Add to your Claude Code skills
git clone https://github.com/Stack-Cairn/LiveAgent

Getting Started

Guides for using skills like LiveAgent.

Security Report

Verified

Last scanned: —

{
  "status": "PASSED",
  "issues": []
}

README.md

LiveAgent

LiveAgent

Your Local-First AI Agent Desktop
Multi-model access · Local tool execution · MCP & Skills ecosystem · Remote Gateway

English | 简体中文

Platform Tauri React Rust Go License

Core FeaturesDownload & DeploymentFAQDocs


🌟 Special Thanks

LINUX DO

For all things AI, head to LINUX DO! Wishing the community ever greater success~


❤️ Sponsor

PackyCodePackyCode is a reliable, efficient, and professional API relay service provider, offering relay services for Claude Code, Codex, Gemini, Chinese domestic models, and more — a long-established, top-tier relay. The vast majority of the model resources used to develop this software were provided by PackyCode — thank you, Laonong! Register here to get started!
RightCodeRight Code provides stable relay services for Claude Code, Codex, Gemini, Chinese domestic models, and more. Invoices are available upon top-up, and enterprise and team users receive dedicated one-on-one support. The remaining model resources used to develop this software were provided by RightCode — thanks to the RC site owner and the support team! Register here to get started!
CubenceCubence is a reliable and efficient API relay service provider, offering relay services for Claude Code, Codex, Gemini, and more, with pay-as-you-go billing. Thanks to Cubence for supporting this project! Register here to get started!

🤝 Come Build With Us!

LiveAgent QQ Group

Scan the QR code to join our QQ group and help drive LiveAgent development!
(Why a QQ group? It just packs a few more features than a WeChat group~)


Why LiveAgent?

LiveAgent is a local-first AI agent desktop client. It deeply integrates large language model reasoning with local system tools, so the AI can genuinely operate your file system, run commands, and manage scheduled tasks — while the Gateway enables remote access and collaboration.

  • An agent that actually gets things done — beyond chat: read and write files, make precise edits, run Bash, and supervise long-running processes
  • A fully open ecosystem — bridge any external tool via the MCP protocol, and load Skills packages on demand
  • Both local and remote — the desktop app works fully standalone; deploy the Gateway and control it from any browser

Core Features

🧠 Multi-Model & Chat

  • Multi-model routing — Claude (Anthropic), Codex (OpenAI), and Gemini protocols, with custom Base URL support for third-party compatible services
  • Rich rendering — streaming Markdown with built-in KaTeX math, Mermaid diagrams, and Monaco code preview
  • History compaction — dual-layer Segment + Summary Checkpoint persistence keeps long conversations from losing context
  • Internationalization — built-in i18n multi-language framework

🔧 Local Tool Execution

  • Full file-system capabilities — precise Read / Write / Edit / Delete, plus Glob / Grep pattern and regex search
  • Bash & long-running processes — non-interactive command execution (cwd / timeout), with ManagedProcess supervising dev servers and other resident tasks
  • Sub-agent delegation — independent sub-agents execute in parallel with worktree isolation and automatic merging
  • Tunnel exposureTunnelManager exposes local services to the public internet in one click

🧩 MCP & Skills Ecosystem

  • MCP protocol bridging — the Tauri side natively bridges any stdio / http MCP server for unlimited tool extension
  • Skills packages — progressive disclosure and on-demand loading, with install / create / package support and the ClawHub ecosystem

💾 Memory & Automation

  • Persistent memory — Markdown + SQLite FTS full-text search for cross-session knowledge management
  • Scheduled tasks — bash / http / prompt cron job types, executed automatically in the background

🌐 Remote Gateway

  • Access from any browser — Go gateway (WebSocket + Protobuf) with a WebUI for remotely controlling the local agent
  • Disconnect recovery — a bounded seq window replays short outages, with desktop-side persistence as the safety net

Download & Deployment

Installers are automatically built, signed, and published by GitHub Actions — grab the latest version from GitHub Releases.

System Requirements

PlatformRequirements
macOSBoth Intel (x64) and Apple Silicon (aarch64) architectures
Windowsx64; requires the WebView2 runtime (bundled with Windows 11)
Linuxx86_64; requires WebKitGTK 4.1 (Ubuntu 22.04+ / Debian 12+, etc.)

macOS

Download the DMG matching your chip from Releases, open it, and drag LiveAgent into Applications:

  • Apple Silicon (M-series): LiveAgent-<version>-macOS-aarch64.dmg
  • Intel: LiveAgent-<version>-macOS-x64.dmg

The installer is signed and notarized by Apple — no manual security override is needed on first launch.

Windows

Pick an installation method from Releases:

MethodFileBest for
Setup wizardLiveAgent-<version>-Windows-x64-Setup.exeMost users
MSI packageLiveAgent-<version>-Windows-x64.msiEnterprise distribution / silent install
PortableLiveAgent-<version>-Windows-x64-portable.zipNo install — unzip and run

Linux

Choose by distribution from Releases:

FormatDistributionsInstall
AppImageAny distributionchmod +x, then run directly
DEBDebian / Ubuntu familysudo dpkg -i LiveAgent-<version>-Linux-x86_64.deb
RPMFedora / openSUSE familysudo rpm -i LiveAgent-<version>-Linux-x86_64.rpm

Need Remote Access? Deploy the Gateway

The desktop app works out of the box and depends on no server. Deploy the Gateway only if you want to control your local agent from a browser.

Note: when deployed behind an Nginx reverse proxy, set the Gateway address on the Settings → Remote page to the HTTPS URL and use port 443.

# Pull the image (built by GitHub Actions, multi-arch: amd64 / arm64)
docker pull ghcr.io/stack-cairn/liveagent-gateway:latest

# Run in the background (HTTP/WebSocket → host 3000)
docker run -d \
  --name liveagent-gateway \
  --restart unless-stopped \
  -p 3000:8080 \
  -v liveagent-gateway-data:/var/lib/liveagent \
  -e LIVEAGENT_GATEWAY_TOKEN=your-token \
  ghcr.io/stack-cairn/liveagent-gateway:latest

The named volume persists the Gateway database and independently issued Agent tokens across container upgrades.

One-command upgrade to the latest version — pull the new image → remove the old container → recreate it with the same arguments (if you changed the port mappings or token, adjust the arguments below accordingly):

docker pull ghcr.io/stack-cairn/liveagent-gateway:latest \
  && docker rm -f liveagent-gateway \
  && docker run -d \
    --name liveagent-gateway \
    --restart unless-stopped \
    -p 3000:8080 \
    -v liveagent-gateway-data:/var/lib/liveagent \
    -e LIVEAGENT_GATEWAY_TOKEN=your-token \
    ghcr.io/stack-cairn/liveagent-gateway:latest \
  && docker image prune -f
Nginx reverse proxy configuration — reference for custom domains / TLS

Since protocol v2, all traffic — the WebUI, the HTTP API, and the WebSocket links of both the browser and the desktop app — goes through the single HTTP port (default 3000).

WebSocket upgrades happen on several paths (/ws/v2, /ws/v2/agent, /ws/v2/terminal, and tunnels under /t/), so the simplest correct setup enables the upgrade on the whole vhost:

# WebUI SPA/static/API + every WebSocket link (browser and desktop)
location / {
    proxy_pass http://127.0.0.1:3000;
    proxy_http_version 1.1;

    # WebSocket upgrade
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection "upgrade";

    # Required: the Gateway's same-origin check compares the browser's
    # Origin header against X-Forwarded-Proto + Host
    proxy_set_header Host $host;
    proxy_set_header Authorization $http_authorization;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header X-Forwarded-Proto $scheme;

    # The Gateway pings every WebSocket connection every 15s,
    # so a generous-but-finite timeout is enough
    proxy_read_timeout 300s;
    proxy_send_timeout 300s;
    proxy_buffering off;
}

The upstream port maps to the host port from the docker run above: HTTP/WebSocket 3000 (inside the container, HTTP actually listens on PORT=8080). The server block needs listen 443 ssl; and a client_max_body_size large enough for attachment uploads (e.g. 100m).

Build from Source

Expand the Development Guide below for the full set of Make commands.

Architecture Overview — diagram & tech stack
┌──────────────────────────────────────────────────────────────┐
│                        Browser WebUI                          │
│              React + Vite + WebSocket + Gateway API           │
└────────────────────────────┬─────────────────────────────────┘
                             │ WebSocket / HTTP
┌────────────────────────────▼─────────────────────────────────┐
│                       Agent Gateway                           │
│    Go · WebSocket · HTTP · Session Manager · Event Store     │
│               (Railway / Docker / self-hosted)                │
└────────────────────────────┬─────────────────────────────────┘
                             │ WebSocket v2 (bidirectional stream)
┌────────────────────────────▼─────────────────────────────────┐
│                        Agent GUI                              │
│                   Tauri 2 · React 19 · Rust                  │
├──────────┬────────────┬───────────┬────────────┬─────────────┤
│ Models   │ Runtime    │ Tools     │ Skills     │ Memory/Cron │
│ pi-ai    │ multi-turn │ FS/Bash/  │ progressive│ SQLite+MD   │
│ + Codex  │ + SubAgent │ MCP bridge│ + Hub      │ FTS index   │
└──────────┴────────────┴───────────┴────────────┴─────────────┘

Tech Stack

ComponentTechnology
Agent GUI · FrameworkTauri 2 + React 19 + TypeScript 6
Agent GUI · BuildVite 8 + pnpm
Agent GUI · StylingTailwind CSS 4 + Radix UI
Agent GUI · Renderingstreamdown + KaTeX + Mermaid + Monaco Editor
Agent GUI · BackendRust + Tokio + SQLite (rusqlite) + WebSocket (tokio-tungstenite)
Agent GUI · LLM@earendil-works/pi-ai · @earendil-works/pi-agent-core
Gateway · LanguageGo 1.25
Gateway · ProtocolsWebSocket + Protobuf + HTTP
Gateway · Web UIReact + Vite + Tailwind CSS (embedded)
Gateway · DeploymentDocker multi-stage · Railway CI/CD
Development Guide — common Make commands (run make help for the full list)
CommandDescription
make devStart Tauri development with Session Workbench enabled (DEV_SESSION_WORKBENCH=0 restores the legacy single-conversation layout)
make buildBuild the desktop app
make dev-gatewayStart the Gateway dev server
make dev-webuiStart the WebUI dev server
make gateway-buildBuild the Gateway binary
make gateway-docker-buildBuild the Docker image
make gateway-docker-smokeBuild + health check
make desktop-build-macos-releasemacOS signed release build
make build-linuxLinux amd64 gateway
make build-linux-armLinux arm64 gateway
make protoRegenerate Protobuf code
make cleanClean build artifacts
Project Structure — directory tree
LiveAgent/
├── package.json                  # pnpm workspace commands
├── pnpm-lock.yaml                # Unified frontend dependency lock
├── crates/
│   ├── agent-ui/                 # Shared GUI/WebUI React source
│   │   └── src/                  #   Components, domain models, settings shell
│   │
│   ├── agent-gui/                # Desktop client
│   │   ├── src/                  # React frontend
│   │   │   ├── components/       #   UI components
│   │   │   ├── lib/              #   Core logic (chat, tools, skills, memory)
│   │   │   ├── pages/            #   Pages (Chat, Settings)
│   │   │   ├── i18n/             #   Internationalization
│   │   │   └── prompt/           #   System prompt templates
│   │   └── src-tauri/            # Rust backend (Tauri)
│   │
│   └── agent-gateway/            # Go gateway service
│       ├── cmd/gateway/          #   Entry point
│       ├── internal/             #   Core implementation
│       ├── proto/v2/             #   Protobuf definitions
│       └── web/                  #   Embedded WebUI
│
├── docs/                         # Project docs
│   ├── architecture/             #   Architecture design
│   ├── features/                 #   Feature guides
│   └── operations/               #   Operations & deployment
│
├── scripts/release/              # Release automation
├── .github/workflows/            # CI/CD (CI + Desktop Release + Gateway Docker)
├── Dockerfile                    # Gateway container image
├── Makefile                      # Build commands
└── Cargo.toml                    # Rust workspace

FAQ

Does my API key ever leave my machine?

No. Keys are stored locally on the desktop side only. The Gateway is a pure protocol relay — it never accesses the file system and never stores any credentials.

Do I have to deploy the Gateway?

No. The desktop client works standalone with all local capabilities; deploy the Gateway only when you need browser-based remote access to your local agent.

Which models are supported?

Claude (Anthropic), Codex (OpenAI), and Gemini protocols are built in, plus custom Base URL support for any compatible third-party service.

Will long conversations / disconnects lose context?

No. The desktop app persists the full history with Segment + Summary Checkpoints; the Gateway replays short disconnects through a bounded seq window and converges automatically after reconnecting.


Contributing

Issues and pull requests are welcome! See the Development Guide for setting up a dev environment.

Before submitting a PR, make sure all of the following checks pass (they match the CI gates):

Install frontend dependencies once from the repository root with pnpm install --frozen-lockfile.

Desktop client

  1. Type check & build pass: pnpm build:gui
  2. Lint passes: pnpm lint:ui && pnpm lint:gui
  3. Frontend unit tests pass: pnpm test:gui (also run pnpm --filter liveagent test:release when touching release scripts)
  4. Rust backend check passes: cargo check --manifest-path crates/agent-gui/src-tauri/Cargo.toml --tests (run from the repo root)

Gateway · crates/agent-gateway (if changed)

  1. Go unit tests pass: go test ./...
  2. WebUI build / lint / tests pass: pnpm build:webui && pnpm lint:webui && pnpm test:webui
  3. Regenerate and commit artifacts after proto changes: make proto

Shared UI boundaries

  • Shared source must not depend directly on either host: pnpm check:ui-boundaries
  • Keep the diff clean (no trailing whitespace): git diff --check

👥 Contributors

Thanks to everyone who has contributed to LiveAgent!

Contributors

Star History

Star History Chart

License

MIT © StackCairn

Frequently Asked Questions

What is LiveAgent?

LiveAgent is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by Stack-Cairn. A fully functional AI Agent desktop client that supports Webui access and can be creatively customized and expanded!. It has 1,827 GitHub stars.

Is LiveAgent safe to use?

Yes. LiveAgent passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install LiveAgent?

Clone the repository with "git clone https://github.com/Stack-Cairn/LiveAgent" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is LiveAgent written in?

LiveAgent is primarily written in TypeScript. It is open-source under Stack-Cairn on GitHub, so you can review or fork the full source.

Are there alternatives to LiveAgent?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh LiveAgent against similar tools.

Comments (0)

No comments yet. Be the first to share your thoughts!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI Agents
View details

Developers Also Liked

Based on votes and bookmarks from developers who liked this skill

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP Serversapisai-tools
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details