2026-02-06 22:50:18 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
|
|
|
|
|
|
Route::get('/', function () {
|
|
|
|
|
return view('welcome');
|
|
|
|
|
});
|
feat(agentic): add real-time dashboard with Livewire components (#96)
Add a live agent activity dashboard to the Core App Laravel frontend.
Provides real-time visibility into agent fleet status, job queue,
activity feed, metrics, and human-in-the-loop actions — replacing
SSH + tail -f as the operator interface.
Dashboard panels:
- Agent Fleet: grid of agent cards with heartbeat, status, model info
- Job Queue: filterable table with cancel/retry actions
- Live Activity Feed: real-time stream with agent/type filters
- Metrics: stat cards, budget gauge, cost breakdown, throughput chart
- Human Actions: inline question answering, review gate approval
Tech: Laravel Blade + Livewire 4 + Tailwind CSS + Alpine.js + ApexCharts
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-10 19:56:17 +00:00
|
|
|
|
|
|
|
|
// Agentic Dashboard
|
|
|
|
|
Route::get('/dashboard', fn () => view('dashboard.index'))->name('dashboard');
|
|
|
|
|
Route::get('/dashboard/agents', fn () => view('dashboard.agents'))->name('dashboard.agents');
|
|
|
|
|
Route::get('/dashboard/jobs', fn () => view('dashboard.jobs'))->name('dashboard.jobs');
|
|
|
|
|
Route::get('/dashboard/activity', fn () => view('dashboard.activity'))->name('dashboard.activity');
|