AI-powered desktop pet built with Tauri v2, React, and Rust. A small, transparent, always-on-top companion that lives on your desktop with chat, task management, and a pomodoro timer.
- AI Chat — Conversational AI with streaming responses, configurable LLM providers, and persona/skill loading
- Task Management — Create and track tasks from the desktop pet
- Pomodoro Timer — Focus sessions with start/pause/resume/finish controls
- Animated Sprite — Desktop pet character with mood-based animations and reactions
| Layer | Technology |
|---|---|
| Desktop Shell | Tauri v2 |
| Frontend | React 18 + TypeScript 5 + Vite 5 |
| Styling | Tailwind CSS v4 |
| Backend | Rust (edition 2024, MSRV 1.85) |
| Agent Runtime | pi_agent_rust (v0.1.7) |
| Persistence | SQLite (embedded migrations) |
| Secrets | OS keychain (keyring) with filesystem fallback |
- Rust 1.85+
- Bun
- just (command runner)
- Tauri v2 system dependencies (see Tauri docs)
# Install all dependencies (frontend + Rust CLI tools like cargo-tauri)
just setup
# Run in development mode
just devjust setup # Install all dependencies (frontend + Rust tools)
just install # Install frontend dependencies only
just install-tools # Install required Rust CLI tools (cargo-tauri)
just dev # Run desktop app in dev mode
just build # Production build
just check # Check Rust code
just test # Run all tests
just fmt # Format Rust code
just lint # Lint with Clippy
just clean # Clean all build artifacts
just icon SOURCE # Generate app icons from source imagepeekoo-ai/
├── apps/
│ ├── desktop-ui/ # React + Vite frontend
│ └── desktop-tauri/ # Tauri desktop runtime
├── crates/
│ ├── peekoo-agent/ # Agent runtime (wraps pi_agent_rust)
│ ├── peekoo-agent-app/ # Application orchestration and settings
│ ├── peekoo-agent-auth/ # OAuth and provider auth
│ ├── peekoo-productivity-domain/ # Task and pomodoro domain models
│ ├── persistence-sqlite/ # SQLite migrations
│ ├── security/ # Secret storage (keyring, file, fallback)
│ └── peekoo-paths/ # Shared filesystem path helpers
└── docs/ # Tech spec and architecture docs
desktop-ui -> desktop-tauri -> peekoo-agent-app -> peekoo-agent
(transport) (orchestration) peekoo-agent-auth
peekoo-productivity-domain
persistence-sqlite
security
peekoo-paths
desktop-tauri is a transport layer only. All business logic, persistence, and auth orchestration live in the Rust crates behind peekoo-agent-app.
MIT