export function normalizePathArg(path?: string): string | undefined { if (!path) return path; return path.startsWith("@") ? path.slice(1) : path; }