39 lines
618 B
Markdown
39 lines
618 B
Markdown
<!--
|
|
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.
|