Files
pua/landing/src/lib/utils.ts
T
xsser bcf1633a91 Initial release: PUA Debugging Motivator for Claude Code
- 4-level escalating pressure system (L1-L4) using Chinese tech corp PUA rhetoric
- Systematic debugging methodology (三板斧 + 7-item checklist)
- Benchmarked across 6 real bug scenarios: +27% fixes, +65% verifications
- Landing page at https://pua-skill.pages.dev
- Slash command /pua for manual trigger
2026-03-09 00:56:33 +08: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))
}