mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-05-28 19:05:31 +02:00
* feat: add Eisenhower Email Organiser prebuilt card - Added new eisenhower-email-organiser.json prebuilt workflow template - Updated index.ts to include the new template in exports - Template helps users organize emails using the Eisenhower Matrix (urgent/important quadrants) * fix: update to American spelling - organizer instead of organiser - Updated import statement to use 'eisenhower-email-organizer.json' - Updated export key to 'Eisenhower Email Organizer' - Maintains consistency with American English throughout the codebase * change name of Tweet Assistant * fix: remove duplicate file and fix American spelling in description - Removed duplicate eisenhower-email-organiser.json (British spelling) - Fixed description in eisenhower-email-organizer.json: 'Organises' → 'Organizes' - Now only one file exists with consistent American spelling throughout * fix: update Support category header in prebuilt cards UI - Changed 'Customer Support' to 'Support' in build-assistant-section.tsx - Now matches the category field in customer-support.json - Ensures Support section displays properly in the prebuilt cards UI
28 lines
1.3 KiB
TypeScript
28 lines
1.3 KiB
TypeScript
// Static index of prebuilt workflow templates so they are bundled in Vercel
|
|
// If you add/remove a JSON here, update this file accordingly.
|
|
|
|
import githubDataToSpreadsheet from './github-data-to-spreadsheet.json';
|
|
import interviewScheduler from './interview-scheduler.json';
|
|
import meetingPrepAssistant from './meeting-prep-assistant.json';
|
|
import redditOnSlack from './reddit-on-slack.json';
|
|
import twitterSentiment from './twitter-sentiment.json';
|
|
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 eisenhowerEmailOrganizer from './eisenhower-email-organizer.json';
|
|
|
|
// Keep keys consistent with prior file basenames to avoid breaking links.
|
|
export const prebuiltTemplates = {
|
|
'github-data-to-spreadsheet': githubDataToSpreadsheet,
|
|
'interview-scheduler': interviewScheduler,
|
|
'Meeting Prep Assistant': meetingPrepAssistant,
|
|
'Reddit on Slack': redditOnSlack,
|
|
'Twitter Sentiment': twitterSentiment,
|
|
'Tweet with generated image': tweetWithGeneratedImage,
|
|
'Customer Support': customerSupport,
|
|
'GitHub Issue to Slack': githubIssueToSlack,
|
|
'GitHub PR to Slack': githubPrToSlack,
|
|
'Eisenhower Email Organizer': eisenhowerEmailOrganizer,
|
|
};
|
|
|