Files
JohnRiceML 6a744f1b7b feat: initial manor UI — agent map, call box, cron monitor, memory browser
- 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)
2026-02-27 11:31:23 -06:00

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))
}