fix(connections): recategorize integrations into precise groups#3958
Merged
Conversation
The connections settings page leaned on the backend's two coarse buckets
(Notification/Productivity), so most integrations piled into "Productivity"
and a few landed plain wrong — e.g. Hermes (an autonomous agent) under
Communication. Acronyms were also mangled by the title-caser ("AI" -> "Ai").
- Expand CONNECTION_CATEGORY_BY_ID to cover every tile id (all 65 backend
integrations + the frontend-only tiles), grouped into 17 intuitive
categories: Desktop, AI, Agent, Automation, Meetings, Calendar,
Communication, Notes, Documents, Project Management, CRM, Support,
Finance, Developer, Wearables, Notifications, System.
- Move Hermes/OpenClaw/Skills to Agent; split the Productivity dump into
CRM, Finance, Developer, Support, Automation, Notes, Wearables, etc.
- Update CATEGORY_ORDER to match.
- Preserve all-caps acronyms in normalizeConnectionCategory so "AI"/"CRM"
no longer render as "Ai"/"Crm".
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
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.
what
The connections settings page grouped tools by the backend's two coarse buckets (
Notification/Productivity), with a small frontend override map on top. The result was bad:fix
CONNECTION_CATEGORY_BY_IDto cover every tile id: all 65 backend integrations plus the frontend-only tiles (88 total), grouped into 17 intuitive categories.CATEGORY_ORDERto match.normalizeConnectionCategoryto preserve all-caps acronyms, so "AI" and "CRM" stop rendering as "Ai" / "Crm".Keys match each connection's real id (e.g. the backend
IntegrationDef.idisgithub, notgithub_issues), so the override actually lands instead of falling through to the coarse bucket.categories
Desktop, AI, Agent, Automation, Meetings, Calendar, Communication, Notes, Documents, Project Management, CRM, Support, Finance, Developer, Wearables, Notifications, System.
verification
bun run typecheck(tsc, clean)bun run build(next build, all routes compiled including/settingsand/home)Two files touched:
lib/constants/connections.tsandcomponents/settings/connections-section.tsx.