File size: 165 Bytes
b152fd5
 
 
 
1
2
3
4
5
export function buildCliCommandLabel(): string {
  const args = process.argv.slice(2);
  return args.length > 0 ? `paperclipai ${args.join(" ")}` : "paperclipai";
}