Files
openagent/dashboard
Thomas Marchand dc95f5b692 Add disabled state to Send/Queue buttons for visual feedback
EnhancedInput now exposes canSubmit state via onCanSubmitChange callback,
allowing parent components to show proper disabled styling when input is
empty or only has a locked agent without content. This fixes the issue
where buttons remained visually enabled even when clicking would have no
effect.
2026-01-16 16:55:55 +00:00
..
2026-01-16 01:41:11 -08:00
2026-01-16 01:41:11 -08:00
2025-12-15 13:42:34 +00:00
2025-12-15 13:42:34 +00:00
2026-01-16 01:41:11 -08:00
2025-12-15 13:42:34 +00:00
2025-12-15 13:42:34 +00:00

OpenAgent Dashboard

Developer-focused UI for monitoring and controlling the OpenAgent backend.

Prerequisites

  • Bun (required): bun@1.x

Getting started (Bun only)

cd dashboard
bun install

# If the backend is on :3000, run the dashboard on :3001 to avoid port conflicts.
PORT=3001 bun dev

Configure the backend URL via:

  • NEXT_PUBLIC_API_URL (defaults to http://127.0.0.1:3000)

Auth

If the backend reports auth_required=true from GET /api/health, the dashboard will prompt for credentials and store a JWT in sessionStorage. In multi-user mode (auth_mode=multi_user), it asks for username + password.