SPB Git

spb/worthdoing Public

Autonomous investigation agent that discovers, challenges, and ranks things genuinely worth doing — Claude + Firecrawl, Next.js 16, PostgreSQL

TypeScript 91.5% SQL 5.8% CSS 2.2%
166 B · 7 lines typescript
Raw Blame History
1import { clsx, type ClassValue } from "clsx"2import { twMerge } from "tailwind-merge"34export function cn(...inputs: ClassValue[]) {5  return twMerge(clsx(inputs))6}7