File size: 238 Bytes
837e3ac
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
export function buildPackageQuestionPrompt(args: {
  packageRef: string;
  label: string;
  excerpt: string;
}) {
  const { packageRef, label, excerpt } = args;
  return `@${packageRef} ask Explain this ${label}:\n"${excerpt.trim()}"`;
}