feat(stream-android): add Sendbird → Stream Chat migration skill#43
Draft
aleksandar-apostolov wants to merge 1 commit into
Draft
feat(stream-android): add Sendbird → Stream Chat migration skill#43aleksandar-apostolov wants to merge 1 commit into
aleksandar-apostolov wants to merge 1 commit into
Conversation
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.
Adds a Sendbird → Stream Chat migration skill for Android (Kotlin / Jetpack Compose / XML Views) — a repeatable, empirically-hardened procedure for migrating any Sendbird integration to Stream. Sibling to the iOS migration skill, but built from the Android SDK's actual surface and validated by end-to-end dogfooding, not translated from iOS.
What's here
skills/stream-android/sendbird-migration.md— the skill: detect the integration shape (Sendbirduikit-compose/ XMLuikit/ custom UI on the low-levelsendbird-chatSDK / spaghetti; MVVM/MVI; single- vs multi-activity; Compose-Nav vs fragments+Jetpack-Nav), pick one of three paths (Stream Compose bundled screens / keep-the-UI-swap-the-SDK surgical / cross-framework XML→Compose viaComposeView), swap packages + init/auth, map channels/messages/state, re-apply theming + custom messages, and verify fidelity per screen.SKILL.md— a migration flag routes "migrate off Sendbird" requests to the skill (orthogonal to the A/B/C/D tracks).Load-bearing pieces
GroupChannelInfoScreen/DirectChannelInfoScreen) or — for screens Stream doesn't ship (channel creation) — tell the user it isn't out-of-the-box, link the public cookbook, and offer to build it. Never silently drop or invent a screen.stream-chat-android-client(io.getstream.chat.android.client.api.state),state/offlinearen't published separately, and the client auto-installs state (nowithPlugins). Verify against the published artifact, not the dev tree.queryChannelsAsState/watchChannelAsState), custom-message carriers (Message.extraDatavs a customAttachmentFactory), and the always-needed solid-bubble + white-text and DM-name fidelity fixes.Built + validated empirically