diff --git a/apps/rowboat/app/lib/prebuilt-cards/customer-support.json b/apps/rowboat/app/lib/prebuilt-cards/customer-support.json index f4234f01..dd17f608 100644 --- a/apps/rowboat/app/lib/prebuilt-cards/customer-support.json +++ b/apps/rowboat/app/lib/prebuilt-cards/customer-support.json @@ -107,6 +107,6 @@ "lastUpdatedAt": "2025-09-11T18:51:15.548Z", "name": "Customer Support", "description": "Answers product information (RAG) and delivery status (MCP) questions.", - "category": "Customer Support", + "category": "Support", "copilotPrompt": "Give me a brief explanation of this assistant." } diff --git a/apps/rowboat/app/lib/prebuilt-cards/eisenhower-email-organiser.json b/apps/rowboat/app/lib/prebuilt-cards/eisenhower-email-organizer.json similarity index 98% rename from apps/rowboat/app/lib/prebuilt-cards/eisenhower-email-organiser.json rename to apps/rowboat/app/lib/prebuilt-cards/eisenhower-email-organizer.json index 715d683f..b005f498 100644 --- a/apps/rowboat/app/lib/prebuilt-cards/eisenhower-email-organiser.json +++ b/apps/rowboat/app/lib/prebuilt-cards/eisenhower-email-organizer.json @@ -118,8 +118,8 @@ ], "startAgent": "Eisenhower Email Pipeline", "lastUpdatedAt": "2025-09-13T20:34:42.747Z", - "name": "Eisenhower Email Organiser", - "description": "Organises emails into the four Eisenhower Matrix categories.", + "name": "Eisenhower Email Organizer", + "description": "Organizes emails into the four Eisenhower Matrix categories.", "category": "Work Productivity", "copilotPrompt": "Give me a brief explanation of this assistant. Also briefly tell me about how to setup a trigger for this assistant." } \ No newline at end of file diff --git a/apps/rowboat/app/lib/prebuilt-cards/index.ts b/apps/rowboat/app/lib/prebuilt-cards/index.ts index 16f2305f..1d2e9dd3 100644 --- a/apps/rowboat/app/lib/prebuilt-cards/index.ts +++ b/apps/rowboat/app/lib/prebuilt-cards/index.ts @@ -10,7 +10,7 @@ import tweetWithGeneratedImage from './tweet-with-generated-image.json'; import customerSupport from './customer-support.json'; import githubIssueToSlack from './github-issue-to-slack.json'; import githubPrToSlack from './github-pr-to-slack.json'; -import eisenhowerEmailOrganiser from './eisenhower-email-organiser.json'; +import eisenhowerEmailOrganizer from './eisenhower-email-organizer.json'; // Keep keys consistent with prior file basenames to avoid breaking links. export const prebuiltTemplates = { @@ -23,6 +23,6 @@ export const prebuiltTemplates = { 'Customer Support': customerSupport, 'GitHub Issue to Slack': githubIssueToSlack, 'GitHub PR to Slack': githubPrToSlack, - 'Eisenhower Email Organiser': eisenhowerEmailOrganiser, + 'Eisenhower Email Organizer': eisenhowerEmailOrganizer, }; diff --git a/apps/rowboat/app/lib/prebuilt-cards/tweet-with-generated-image.json b/apps/rowboat/app/lib/prebuilt-cards/tweet-with-generated-image.json index 7cd371c5..b68d2e34 100644 --- a/apps/rowboat/app/lib/prebuilt-cards/tweet-with-generated-image.json +++ b/apps/rowboat/app/lib/prebuilt-cards/tweet-with-generated-image.json @@ -293,7 +293,7 @@ "pipelines": [], "startAgent": "Tweet Assistant", "lastUpdatedAt": "2025-09-11T18:02:35.880Z", - "name": "Viral Tweet Assistant", + "name": "Tweet Assistant", "description": "Research topics and create a tweet including generated images.", "category": "News & Social", "copilotPrompt": "Give me a brief explanation of this assistant." diff --git a/apps/rowboat/app/projects/components/build-assistant-section.tsx b/apps/rowboat/app/projects/components/build-assistant-section.tsx index b6c51b69..9247343d 100644 --- a/apps/rowboat/app/projects/components/build-assistant-section.tsx +++ b/apps/rowboat/app/projects/components/build-assistant-section.tsx @@ -489,7 +489,7 @@ export function BuildAssistantSection() { const workTemplates = templates.filter((t) => (t.category || '').toLowerCase() === 'work productivity'); const devTemplates = templates.filter((t) => (t.category || '').toLowerCase() === 'developer productivity'); const newsTemplates = templates.filter((t) => (t.category || '').toLowerCase() === 'news & social'); - const customerSupportTemplates = templates.filter((t) => (t.category || '').toLowerCase() === 'customer support'); + const customerSupportTemplates = templates.filter((t) => (t.category || '').toLowerCase() === 'support'); const renderGrid = (items: any[]) => (
@@ -593,7 +593,7 @@ export function BuildAssistantSection() {
- Customer Support + Support
{renderGrid(customerSupportTemplates)}