Delegant is a powerful desktop application that gives an AI agent full access to your computer to automate tasks on your behalf. The agent can click, type, access files, and navigate the web autonomously based on your instructions.
Built as a lightweight desktop assistant, Delegant features a sleek, unobtrusive "Taskbar" interface alongside a robust Setup Wizard, making it easy to delegate complex workflows to an AI.
⚠️ Disclaimer: Delegant provides an AI model with full access to your device. Use with caution. If the agent misbehaves or gets stuck, press CTRL+ALT+DEL or close the application immediately to suppress the agent.
- Framework: React 19 + TypeScript
- Build Tool: Vite
- Desktop Runtime: Tauri (v2)
- State Management: Zustand
- Styling: Tailwind CSS 4
- Icons: Lucide React
Ensure you have the required dependencies for Tauri development on your operating system:
- Tauri Prerequisites (Node.js, Rust, and OS-specific build tools)
-
Clone the repository:
git clone <repository-url> cd delegant
-
Install dependencies:
pnpm install
-
Run the development server (starts both Vite and the Tauri window):
pnpm run tauri dev
To build a production executable:
cargo tauri buildThe resulting binaries will be located in src-tauri/target/release/.
src/: The React frontend, including components such as the Taskbar, Settings Wizard, Start Screen, and global Zustand stores.src-tauri/: The Rust backend responsible for integrating system-level events, executing actions, and acting as the bridge for the AI agent.
MIT