# 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.