Hybrid traditional + AI-first webapp scaffold. Sibling to crema-app-template, adds the AI assistant surface, command bus, scripts dialog, and virtual cursor. What's pre-wired: - 6 routes: Overview, Resources, Activity, Assistant, Library, Settings - Collapsible rail + appbar + avatar dropdown shell (template code, not a lib) - Mobile sheet at <md - /assistant: streaming chat via @crema/llm-ui, mock fallback, model selector, token meter, retry probe, stop-while-streaming, persistent UI Control toggle - /settings: editable LM Studio endpoint + context window + response cap, with test-connection button - Markdown rendering for assistant replies; ```action``` blocks rendered as a small "Ran N actions" pill - ⌘⇧P script runner dialog + Play icon in the appbar - Two demo scripts in public/scripts/ - mightypix theme as default, scoped via <AppShell theme="mightypix"> Libs wired in tsconfig + app.css: - @crema/action-bus (the bus, parser, runner, cursor, provider, ws, llm-bridge) - @crema/llm-ui, @crema/chat-ui, @crema/aifirst-ui, @crema/notification-ui - lib-theme-mightypix Docs: - README.md — pitch + quick start + structure - docs/AI_FIRST.md — full system tour (data-action contract, bus, DSL, scripts, cursor, LLM integration) - app/components/layout/THEME_CONTRACT.md — every CSS variable a theme must declare - CLAUDE.md — orientation for an LLM working in the repo Genericized from comfy-cloud (the original prototype): - Brand defaults to "App" / Sparkles icon (override via app/lib/identity.ts) - User defaults to a stub (swap useUser() for real auth) - localStorage namespace is "crema.*" (was "comfy.*") Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
97 lines
2.7 KiB
TypeScript
97 lines
2.7 KiB
TypeScript
import { ArrowRight, Sparkles, Boxes, Activity, BookOpen } from "lucide-react"
|
|
import { Link } from "react-router"
|
|
|
|
import { AppShell } from "~/components/layout/app-shell"
|
|
import {
|
|
Card,
|
|
CardContent,
|
|
CardDescription,
|
|
CardHeader,
|
|
CardTitle,
|
|
} from "~/components/ui/card"
|
|
import { pageTitle } from "~/lib/page-meta"
|
|
|
|
export const meta = () => pageTitle("Overview")
|
|
|
|
const tiles = [
|
|
{
|
|
to: "/assistant",
|
|
icon: Sparkles,
|
|
title: "Assistant",
|
|
body: "AI-first surface — chat, suggestions, and full UI control.",
|
|
accent: true,
|
|
},
|
|
{
|
|
to: "/resources",
|
|
icon: Boxes,
|
|
title: "Resources",
|
|
body: "Traditional list + detail surface for managed entities.",
|
|
},
|
|
{
|
|
to: "/activity",
|
|
icon: Activity,
|
|
title: "Activity",
|
|
body: "Event stream and audit log.",
|
|
},
|
|
{
|
|
to: "/library",
|
|
icon: BookOpen,
|
|
title: "Library",
|
|
body: "Saved items, templates, reusable artifacts.",
|
|
},
|
|
]
|
|
|
|
export default function HomeRoute() {
|
|
return (
|
|
<AppShell title="Overview">
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle>Welcome</CardTitle>
|
|
<CardDescription>
|
|
A hybrid traditional + AI-first scaffold. Use the rail to navigate;
|
|
the Assistant can drive the UI on your behalf — try{" "}
|
|
<kbd className="rounded border bg-muted px-1.5 py-0.5 font-mono text-xs">
|
|
⌘⇧P
|
|
</kbd>{" "}
|
|
for the script runner.
|
|
</CardDescription>
|
|
</CardHeader>
|
|
</Card>
|
|
|
|
<div className="grid gap-4 md:grid-cols-2">
|
|
{tiles.map((t) => {
|
|
const Icon = t.icon
|
|
return (
|
|
<Link
|
|
key={t.to}
|
|
to={t.to}
|
|
data-action={`home-tile-${t.title.toLowerCase()}`}
|
|
className="group block"
|
|
>
|
|
<Card
|
|
className={[
|
|
"h-full transition-colors",
|
|
t.accent
|
|
? "border-primary/30 bg-primary/5 hover:border-primary/50"
|
|
: "hover:border-foreground/20",
|
|
].join(" ")}
|
|
>
|
|
<CardHeader>
|
|
<div className="mb-2 flex size-9 items-center justify-center rounded-lg bg-primary/10 text-primary">
|
|
<Icon className="size-5" />
|
|
</div>
|
|
<CardTitle className="flex items-center gap-2">
|
|
{t.title}
|
|
<ArrowRight className="size-4 opacity-0 transition-opacity group-hover:opacity-100" />
|
|
</CardTitle>
|
|
<CardDescription>{t.body}</CardDescription>
|
|
</CardHeader>
|
|
</Card>
|
|
</Link>
|
|
)
|
|
})}
|
|
</div>
|
|
</AppShell>
|
|
)
|
|
}
|