agent/ui/index.html
Snider a389388b9d feat(ui): core-agent-panel Lit custom element
Dashboard showing issues + sprint progress. Works in:
- core/ide (Wails desktop via provider system)
- lthn.sh (Laravel web via Blade component)
- Standalone browser (index.html)

Auto-refreshes every 30s. Accepts api-url and api-key attributes.

Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-16 08:16:30 +00:00

23 lines
510 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Core Agent Dashboard</title>
<style>
body {
margin: 0;
padding: 2rem;
background: #020617;
font-family: 'Inter', system-ui, sans-serif;
}
</style>
</head>
<body>
<core-agent-panel
api-url="https://api.lthn.sh"
api-key="">
</core-agent-panel>
<script type="module" src="./agent-panel.js"></script>
</body>
</html>