Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ export const INTEGRATION_DESCRIPTIONS: Record<string, string> = {
gmail: "Read and send emails",
github: "Manage repos and issues",
slack: "Send and read messages",
tavily: "Search the web for up-to-date information",
};

export const WRITING_STYLE_ITEM_MAP: Record<WritingStyleKey, string> = {
Expand Down
5 changes: 5 additions & 0 deletions src/server/api/routers/trustclaw/getIntegrationAuthLinks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ const ONBOARDING_TOOLKITS = [
name: "Slack",
logo: "https://logos.composio.dev/api/slack",
},
{
slug: "tavily",
name: "Tavily",
logo: "https://logos.composio.dev/api/tavily",
},
] as const;

export const getIntegrationAuthLinks = protectedProcedure.query(
Expand Down