Web UI
Octipus includes a full-featured web UI built with Next.js 14, React 18, and Tailwind CSS.
| Page | Path | Description |
|---|---|---|
| Dashboard | / | System status, health overview, agent summary |
| Login | /login | Authentication with password, passkey, or TOTP |
| Chat | /chat | Interactive chat with agents, persistent sessions, voice input |
| Agents | /agents | List all agents (including orchestrators), auto-refresh every 2s |
| Agent Detail | /agents/:id | Real-time event timeline (thought/action/observation), 1.5s polling |
| Artifacts | /artifacts | View and manage generated artifacts and work products |
| Documents | /documents | Upload and manage documents with OCR and categorization |
/email | Email triage and processing interface | |
| Knowledge | /knowledge | Knowledge base browse and search with hybrid search modes |
| Models | /models | Model configuration with provider dropdowns, topic roles, auto-detect |
| Pipelines | /pipelines | Create and manage pipeline templates |
| Profiles | /profiles | Create and manage people/organization profiles |
| Personas | /persona | Manage personal user profile and preferences |
| Reader | /reader | Read and extract content from web pages and documents |
| Research | /research | Research job management and results visualization |
| Skills | /skills | Skill management and topic assignments |
| Tasks | /tasks | Personal task/todo management |
| Tools | /tools | Installed tools and MCP bridge tool management |
| MCP | /mcp | MCP server connections and configuration |
| Hooks | /hooks | Create and manage automation hooks and schedules |
| Permissions | /permissions | Permission rules and tool access control |
| Secrets | /secrets | Vault credential management (AES-256-GCM encrypted) |
| Evaluation | /eval | Eval results dashboard with comparison matrix and red-team view |
| Setup | /setup | Hardware-aware onboarding and capability configuration |
| Settings | /settings | Provider API keys, 2FA setup, API tokens, notification preferences |
| Admin: Users | /admin/users | Multi-user management — invite, role, “Act as” impersonation |
| Admin: Organizations | /admin/orgs | Organization management and SSO/SCIM configuration |
| Admin: Audit | /admin/audit | Audit log for all security and permission events |
Key Features
Section titled “Key Features”Chat Persistence
Section titled “Chat Persistence”Chat sessions are persisted across page reloads:
- The session ID is stored in
localStorage - Messages are restored from the backend on page load via
GET /sessions/:id/messages - All messages (including casual conversations) are persisted to the database
Agent Monitoring
Section titled “Agent Monitoring”The Agents page provides real-time visibility into all running agents:
- Agent list: All agents (including orchestrators) with status, type, and creation time
- Auto-refresh: List refreshes every 2 seconds
- Agent detail: Click any agent to see its real-time event timeline
- Event types: Thought, action, observation, and error events displayed chronologically
- Controls: Stop running agents or remove completed ones
Model Management
Section titled “Model Management”The Models page provides a comprehensive model configuration interface:
- Provider dropdowns: Select from Ollama, OpenAI, Anthropic, Gemini, LiteLLM, or CLI
- Auto-detection: Ollama models auto-detected, LiteLLM models listed
- Known models: Pre-populated model lists for cloud providers
- Topic roles: Assign primary and backup models per topic
- Default model: Set the system-wide default model
- Health status: View provider health and latency
Evaluation Dashboard
Section titled “Evaluation Dashboard”The Evaluation page (/eval) provides a visual interface for reviewing agent evaluation results:
- Comparison matrix: Side-by-side results across models and eval suites
- Charts: Pass/fail rates, latency distributions, and token usage over time
- Regression detection: Highlights when a model’s performance drops compared to previous runs
- Red-team view: Dedicated panel for red-team test results with attack category breakdowns
- Suite filtering: Filter by eval suite, model, or assertion type
Notification System
Section titled “Notification System”- Notification bell: Unread count badge in the header
- Event sources: Agent completion/failure, pipeline updates, approval requests
- Mark read: Mark individual or all notifications as read
Dashboard
Section titled “Dashboard”The dashboard provides an at-a-glance system overview:
- System health: Backend, database, Valkey status
- Agent overview: Running, completed, and failed agent counts
- Service status: Provider health indicators
Design System
Section titled “Design System”The web UI uses a consistent design system:
- Card design:
ring-1 ring-gray-200/60 dark:ring-gray-700/60withrounded-xl - Dark mode: Full dark mode support with
dark:bg-gray-800/90 - Page headers: Icon accent block pattern for consistent header design
- Color tokens:
bg-primary-600for interactive elements - Responsive: Works on desktop and tablet viewports
Starting the Web UI
Section titled “Starting the Web UI”The web UI starts automatically with octi start. To run it separately:
cd web && bun run dev # Development mode with hot reloadcd web && bun run build # Production buildcd web && bun run start # Start production buildThe web UI runs on port 3007 by default (configurable via WEB_PORT).