Your AI-powered office assistant for documents, email, calendar, and productivity.
Built on top of AionUi — a huge thanks to the AionUi team for their open-source work.
- Built-in AI agent — file read/write, web search, image generation, MCP tools. No CLI to install.
- Google integration — sign in with Google to access Calendar and Gmail directly from the assistant
- Multi-agent — auto-detects Claude Code, Codex, Gemini CLI and other installed CLI agents
- Remote access — WebUI mode lets you use the assistant from any browser or phone
- Scheduled tasks — cron-based automation, runs 24/7 unattended
- Office documents — generate and edit PPT, Word, and Excel files via built-in skills
- 20+ AI platforms — Anthropic, Gemini, OpenAI, DeepSeek, Ollama, and more
- Bun
- Node.js 18+
- A Google Cloud project with OAuth 2.0 credentials (for Google integration)
Copy .env.example to .env and fill in your Google OAuth credentials:
cp .env.example .envGOOGLE_CLIENT_ID=your-google-client-id.apps.googleusercontent.com
GOOGLE_CLIENT_SECRET=your-google-client-secretTo get these credentials: Google Cloud Console → APIs & Services → Credentials → Create OAuth 2.0 Client ID.
bun install
bun run start # dev mode
bun run test # unit tests
bun run dist:mac # build for macOS
bun run dist:win # build for Windows
bun run dist:linux # build for LinuxElectron · Vite · React · Bun · TypeScript
Read CONTRIBUTING.md before opening a PR.
- Fork the repo
- Create a feature branch:
git checkout -b feature/my-feature - Commit:
git commit -m 'feat: add my feature' - Push:
git push origin feature/my-feature - Open a Pull Request
Report a bug · Request a feature