feat: surface Tavily in onboarding integrations step#21
Open
Colin Lowenburg (opencolin) wants to merge 1 commit into
Open
feat: surface Tavily in onboarding integrations step#21Colin Lowenburg (opencolin) wants to merge 1 commit into
Colin Lowenburg (opencolin) wants to merge 1 commit into
Conversation
Add Tavily to the curated onboarding toolkits so new users connect web search alongside Gmail/GitHub/Slack instead of leaving the agent without a search tool until they discover it in Composio's full catalog. Tavily already works via Composio's tool ecosystem — this is purely a discoverability tweak: it joins the onboarding step's four-tile grid and the agent picks up the connected toolkit through Composio's normal dynamic-tool resolution. No new dependencies, env vars, or tool code. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
e3c9fe3 to
1891c04
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add Tavily to the curated onboarding toolkits so new users connect web search alongside Gmail/GitHub/Slack during signup instead of leaving the agent search-less until they hunt through Composio's full catalog.
What changes
src/server/api/routers/trustclaw/getIntegrationAuthLinks.ts— add a Tavily entry toONBOARDING_TOOLKITS. The slug + logo match the existing convention (slug: "tavily", logo from Composio's logo CDN athttps://logos.composio.dev/api/tavily).src/app/(authenticated)/dashboard/_components/onboarding/onboarding.consts.ts— add a one-line description ("Search the web for up-to-date information") toINTEGRATION_DESCRIPTIONS.That's it — 6 lines across 2 files.
Why this is so small
Tavily already works through Composio's tool ecosystem; the agent picks it up automatically once a user has a Tavily connection on their account. The only thing missing was discoverability during onboarding. Putting it in the same four-tile grid as Gmail/GitHub/Slack means new users actually see the option.
No new env vars, no new dependencies, no new tool code, no changes to the agent runtime. The integrations step already renders its tiles dynamically from the tRPC query — adding a fourth entry just shows up.
Test plan
pnpm tsc --noEmit— cleanagent.tools()after connectionVisual + flow tests aren't possible from this checkout without a real Composio account + Tavily connection, so they're listed as TODO for review.
🤖 Generated with Claude Code