.agent/skills/dashboard-design/SKILL.md
Command center UIs, real-time data display, status panels for agent systems. Use when designing or improving Julia's Next.js dashboard.
npx skillsauth add abzhaw/juliaz_agents dashboard-designInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
// Sidebar + Main + Details panel
<div className="flex h-screen bg-zinc-950">
{/* Sidebar — navigation + agent status */}
<aside className="w-64 border-r border-zinc-800 flex flex-col">
<AgentStatusList />
<NavMenu />
</aside>
{/* Main panel — primary content */}
<main className="flex-1 overflow-auto p-6">
<MessageFeed />
</main>
{/* Detail panel — context/logs */}
<aside className="w-80 border-l border-zinc-800">
<SystemLogs />
</aside>
</div>
type Status = 'online' | 'offline' | 'error' | 'pending';
const statusConfig: Record<Status, { color: string; label: string }> = {
online: { color: 'bg-emerald-500', label: 'Online' },
offline: { color: 'bg-zinc-500', label: 'Offline' },
error: { color: 'bg-red-500', label: 'Error' },
pending: { color: 'bg-amber-500', label: 'Starting...' },
};
function StatusDot({ status }: { status: Status }) {
const { color, label } = statusConfig[status];
return (
<span className="flex items-center gap-2">
<span className={`w-2 h-2 rounded-full ${color} ${status === 'online' ? 'animate-pulse' : ''}`} />
<span className="text-sm text-zinc-400">{label}</span>
</span>
);
}
function usePollData<T>(url: string, intervalMs = 3000) {
const [data, setData] = useState<T | null>(null);
useEffect(() => {
const fetch_data = () => fetch(url).then(r => r.json()).then(setData).catch(console.error);
fetch_data();
const id = setInterval(fetch_data, intervalMs);
return () => clearInterval(id);
}, [url, intervalMs]);
return data;
}
| Service | Health URL | Poll interval |
|---------|-----------|---------------|
| Bridge | /health on :3001 | 5s |
| Backend | /health on :3000 | 5s |
| cowork-mcp | /health on :3003 | 10s |
development
Fortschrittsverfolgung der Masterarbeit. Wortanzahl pro Kapitel, Fertigstellungsgrad, fehlende Elemente, Deadlines. Haelt den Ueberblick.
development
Kapitelarchitektur und Gliederung der Masterarbeit. Verwaltet die Struktur, schlaegt vor wo Inhalte hingehoeren, validiert den logischen Fluss zwischen Kapiteln.
tools
Konvertiert Protokolleinträge und Session-Logs in thesis-fähiges deutsches Narrativ. Transformiert Entwicklungsdokumentation in akademische Prosa.
research
Sucht und analysiert akademische Literatur. Findet relevante Papers, erstellt strukturierte Zusammenfassungen. Zitiert NIEMALS — schlaegt nur vor.