mirror of
https://github.com/JohnRiceML/clawport-ui.git
synced 2026-08-14 00:47:50 +00:00
- React Flow org chart with full agent hierarchy and cron status - Direct streaming chat with any agent via their SOUL.md as system prompt - Agent detail pages: SOUL.md viewer, tools, hierarchy, crons - Cron monitor with filter, sort errors to top, auto-refresh - Memory browser: markdown + JSON rendering - Dark command-centre design: #0a0a0f bg, gold accent, shadcn components - Auto-discovers new agents from lib/agents.ts registry - Built by Jarvis (OpenClaw AI)
7 lines
166 B
TypeScript
7 lines
166 B
TypeScript
import { clsx, type ClassValue } from "clsx"
|
|
import { twMerge } from "tailwind-merge"
|
|
|
|
export function cn(...inputs: ClassValue[]) {
|
|
return twMerge(clsx(inputs))
|
|
}
|