diff --git a/apps/rowboat/app/projects/components/build-assistant-section.tsx b/apps/rowboat/app/projects/components/build-assistant-section.tsx index 8f37a831..8e846b14 100644 --- a/apps/rowboat/app/projects/components/build-assistant-section.tsx +++ b/apps/rowboat/app/projects/components/build-assistant-section.tsx @@ -107,7 +107,12 @@ export function BuildAssistantSection() { // Handle template selection const handleTemplateSelect = async (templateId: string) => { - await createProjectFromTemplate(templateId, router); + // When selecting a pre-built template, kick off Copilot with an explain prompt + await createProjectWithOptions({ + template: templateId, + prompt: 'Explain this workflow', + router, + }); }; // Handle prompt card selection