This commit is contained in:
Gilles Soulier
2026-01-05 13:13:08 +01:00
parent 8e14adafc6
commit 1d177e96a6
149 changed files with 29541 additions and 1 deletions
+38
View File
@@ -0,0 +1,38 @@
<!--
Created by: Codex
Date: 2026-01-05
Purpose: Desktop UI for Mesh Agent (Tauri)
Refs: CLAUDE.md
-->
# Mesh Agent UI (Tauri)
This is a lightweight desktop UI for the Mesh agent.
## Features (MVP)
- Show agent status (running/stopped)
- Edit and save agent configuration
- Start/stop the agent from the UI
## Dev setup
```bash
cd agent/agent-ui
npm install
```
```bash
cd agent/agent-ui
npm run dev
```
In another terminal, run the Tauri backend:
```bash
cd agent/agent-ui
cargo tauri dev
```
## Notes
- The UI uses the same config file as the CLI agent.
- The agent core runs inside the UI process for now.