apps/android/
├── app/
│ ├── _layout.tsx # Root layout with auth guard
│ ├── index.tsx # Entry redirect
│ ├── (auth)/login.tsx # Login screen
│ ├── (tabs)/ # Main tab navigation
│ │ ├── index.tsx # Sessions tab
│ │ ├── skills.tsx # Skills tab
│ │ ├── automation.tsx # Automation tab
│ │ └── me.tsx # Profile tab
│ └── chat/[sessionId].tsx # Chat detail screen
├── src/
│ ├── app/api/ # API clients
│ │ ├── agent.ts # Agent SSE streaming
│ │ ├── auth.ts # Authentication
│ │ ├── client.ts # HTTP client with token refresh
│ │ ├── sessions.ts # Session management
│ │ ├── skills.ts # Skills API
│ │ └── scheduled-tasks.ts # Scheduled tasks API
│ ├── components/ # UI components
│ ├── store/ # Zustand stores
│ ├── lib/ # Utilities
│ └── types/ # TypeScript types