Cross-platform AI agent client built with Flutter. Supports Android, iOS, macOS, Windows, Linux, and Web.
- Flutter SDK 3.41+ / Dart 3.11+
- Orchestra MCP binary (desktop platforms)
- Xcode 16+ (iOS/macOS)
- Android Studio / JDK 17 (Android)
- Visual Studio 2022 with C++ workload (Windows)
- GTK 3 dev libraries (Linux)
# Install dependencies
flutter pub get
# Run locally (connects to localhost MCP)
flutter run --dart-define-from-file=env/local.json
# Run with staging backend
flutter run --dart-define-from-file=env/staging.json
# Run web
flutter run -d chrome --dart-define-from-file=env/local.json# Android
flutter build apk --release --dart-define-from-file=env/production.json
flutter build appbundle --release --dart-define-from-file=env/production.json
# iOS
flutter build ipa --release --dart-define-from-file=env/production.json
# macOS
flutter build macos --release --dart-define-from-file=env/production.json
# Linux
flutter build linux --release --dart-define-from-file=env/production.json
# Windows
flutter build windows --release --dart-define-from-file=env/production.json
# Web
flutter build web --release --web-renderer canvaskit --dart-define-from-file=env/production.jsonlib/
core/ # Shared infrastructure
api/ # Dio HTTP client, interceptors
database/ # Drift ORM, SQLite schema
mcp/ # MCP TCP client, protocol
router/ # GoRouter configuration
startup/ # Startup gate (binary/workspace checks)
theme/ # Material 3 theme, glass components
utils/ # Platform detection, helpers
screens/ # Feature screens
auth/ # Login, register, magic link
installer/ # Orchestra binary installer
marketing/ # Landing pages (web)
onboarding/ # First-run onboarding
settings/ # App settings
summary/ # Dashboard / summary
welcome/ # Workspace picker (desktop)
setup_desktop/ # Desktop required gate (mobile)
env/ # Environment configs (local/staging/production)
deploy/ # Deployment scripts, Caddyfile, Dockerfile
docs/ # Architecture documentation
scripts/ # Build and test scripts
Environment variables are injected at compile time via --dart-define-from-file:
| File | Use |
|---|---|
env/local.json |
Local development (localhost) |
env/staging.json |
Staging server |
env/production.json |
Production release |
# Run tests with coverage
./scripts/flutter-test.sh --test --coverage
# Run analyzer
./scripts/flutter-test.sh --analyze
# Check formatting
./scripts/flutter-test.sh --format
# Build all platforms (auto-detects OS)
./scripts/flutter-build.sh
# Build specific platform
./scripts/flutter-build.sh android
./scripts/flutter-build.sh web --docker./deploy/deploy.sh
# or with custom host:
SERVER_HOST=prod.orchestra-mcp.dev ./deploy/deploy.shdocker build -f deploy/Dockerfile.web -t orchestra-web .
docker run -p 8080:80 orchestra-webcd ios && bundle exec fastlane deploy_testflightcd android && bundle exec fastlane deploy_internalGitHub Actions workflows in .github/workflows/:
| Workflow | Trigger | Description |
|---|---|---|
flutter-ci.yml |
Push/PR to master | Analyze, format check, tests |
flutter-build.yml |
Manual dispatch | Build all 6 platforms |
flutter-release.yml |
Tag app-v* |
Full release pipeline |
| Document | Description |
|---|---|
| flutter-scaffold.md | App scaffold and project setup |
| auth.md | Authentication architecture |
| auth-screens.md | Auth screen implementations |
| auth-register-screens.md | Registration flow |
| login.md | Login flow |
| login-screen.md | Login screen implementation |
| magic-login.md | Magic link authentication |
| router.md | GoRouter configuration |
| bootstrap.md | App bootstrap sequence |
| api-client.md | Dio API client setup |
| database-schema.md | Drift database schema |
| sync-engine.md | Sync engine architecture |
| websocket.md | WebSocket integration |
| theme-system.md | Material 3 theme system |
| glass-components.md | Glass UI components |
| i18n.md | Internationalization |
| settings.md | Settings architecture |
| settings-screen.md | Settings screen |
| summary-screen.md | Summary/dashboard screen |
| notifications-screen.md | Notifications screen |
| onboarding.md | Onboarding flow |
| installer.md | Binary installer |
| health.md | Health tracking |
| health-service.md | Health service layer |
| health-managers.md | Health data managers |
| health-kit-service.md | HealthKit integration |
| nutrition-shutdown.md | Nutrition shutdown feature |
| ai-insight-engine.md | AI insight engine |
| firebase-integration.md | Firebase setup |
| tray.md | System tray architecture |
| tray-integration.md | Tray integration details |
| marketing-pages.md | Marketing/landing pages |
| web-app-shell.md | Web app shell |
| web-platform-stubs.md | Web platform stubs |
| web-routes.md | Web-specific routes |
| web-shell.md | Web shell wrapper |
| platform-web.md | Web platform specifics |
Proprietary. All rights reserved.