Initial implementation of TriggerShell

A Python CLI (typer) that bootstraps Node/pnpm and launches a Next.js 16 web
app for running configured shell scripts: YAML config validated by a shared
Zod schema, dynamic per-script forms mapped to shadcn controls, argv-safe
execa execution with live WebSocket streaming, SQLite/Drizzle run history,
and optional argon2 session + API token auth.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-15 18:37:30 +02:00
co-authored by Claude Sonnet 5
commit ced99a8e75
117 changed files with 17367 additions and 0 deletions
+69
View File
@@ -0,0 +1,69 @@
"use client";
import Link from "next/link";
import { usePathname, useRouter } from "next/navigation";
import { Terminal, History, LogOut } from "lucide-react";
import { Button } from "@/components/ui/button";
import { cn } from "@/lib/utils";
const links = [
{ href: "/", label: "Scripts", icon: Terminal },
{ href: "/runs", label: "History", icon: History },
];
export function Nav({
authEnabled,
username,
}: {
authEnabled: boolean;
username: string | null;
}) {
const pathname = usePathname();
const router = useRouter();
async function handleLogout() {
await fetch("/api/auth/logout", { method: "POST" });
router.push("/login");
router.refresh();
}
return (
<header className="border-b bg-background/95 sticky top-0 z-10 backdrop-blur">
<div className="mx-auto flex h-14 max-w-5xl items-center justify-between px-4">
<div className="flex items-center gap-6">
<Link
href="/"
className="flex items-center gap-2 font-semibold tracking-tight"
>
<Terminal className="size-5" />
TriggerShell
</Link>
<nav className="flex items-center gap-1">
{links.map(({ href, label, icon: Icon }) => (
<Link
key={href}
href={href}
className={cn(
"text-muted-foreground hover:text-foreground flex items-center gap-1.5 rounded-md px-3 py-1.5 text-sm font-medium transition-colors",
pathname === href && "bg-muted text-foreground",
)}
>
<Icon className="size-4" />
{label}
</Link>
))}
</nav>
</div>
{authEnabled && (
<div className="flex items-center gap-3">
<span className="text-muted-foreground text-sm">{username}</span>
<Button variant="ghost" size="sm" onClick={handleLogout}>
<LogOut className="size-4" />
Log out
</Button>
</div>
)}
</div>
</header>
);
}