cometchat-react-native-sdk
SkillWeb & browsingThe headless CometChat Chat SDK for React Native, a method → contract map for the fallback path, plus init/login ordering and listener lifecycle. Use when the UI Kit has no component for what you need, or when building a fully custom chat UI. Triggers: CometChat SDK React Native, headless chat RN, custom chat UI React Native, sendMessage React Native, CometChat listener leak, banned members RN, change my avatar, update my profile, update user details React Native, log the user out.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the cometchat-react-native-sdk skill
What this skill tells your AI
The instructions your AI receives, as published by cometchat/cometchat-skills in skills/cometchat-react-native-sdk/SKILL.md and read by ahel’s review.
Ground truth:
@cometchat/chat-sdk-react-native@4+ catalogrn-sdk-v4.json(317 symbols). Signatures inreferences/method-map.mdare verbatim from the installed.d.ts, not from prose. Docs:/sdk/react-native/llms-react-native-v4.md(scoped index).
Companion skills (read first)
cometchat-react-native-core— install, provider chain, init→login→render. Assumed, not repeated here.
Use this skill when
- the UI Kit has no component for what you need — the common case, see below
- "build my own chat UI" · "just give me the data layer" · "sendMessage in React Native"
- "duplicate messages" · "listener leak" · "how do I page through history"
Prerequisites & install
The SDK ships under the UI Kit — if core is installed, so is this. A headless-only app
installs it alone:
npm install @cometchat/chat-sdk-react-native@4 @react-native-async-storage/async-storage@^2.1.2
⚠️ Not @cometchat/chat-sdk-javascript — that is the web package.
The rule: UI Kit first, SDK as fallback
For any feature, check whether the UI Kit has a component (components skill + the catalog).
If it does, use it. Reach for the SDK only when it does not.
On React Native that fallback path is not rare. Kit v5 removed the detail and management screens, so these have no component at all and are pure SDK work:
| Need | Why there is no component | Map section |
|---|---|---|
| user / group details | CometChatDetails removed in v5 | Users & groups |
| add members | CometChatAddMembers removed | Users & groups |
| view / unban banned members | no UI surface exists at all | Users & groups |
| transfer ownership | CometChatTransferOwnership removed | Users & groups |
| call log detail | only the list ships | Calls |
The maps — page-wise first
references/page-map.md — the primary index, page-wise like the JavaScript SDK repo:
intent → the docs page → the methods that page demonstrates → the contract facts the RN page
does not carry. 37 pages, derived from the live docs so it cannot drift. Start here.
references/method-map.md — the per-method companion for when you already know the method
and need its exact signature, return type and constraints. 80 methods, 127/127 accounted for.
Both open with the same fallback ladder, and it matters: these cover most of the SDK, not all of it, so "not listed" never means "does not exist." Rung 2 is the catalog — that, not a map, is the existence authority.
Load page-map.md for any SDK question. It answers, per method: signature, what it resolves to, what it
rejects with, prerequisites, and what it will refuse to do. That last one matters most — it records
negative facts a docs page cannot express by omission, e.g. there is no sendCardMessage(),
which an agent would otherwise invent by symmetry with the three send methods that do exist.
Each row is marked D (backed by the RN docs) or T (recovered from the .d.ts because the RN
page is thin — RN-G15). Do not present a T row as documented; it is correct, and the docs gap
is real.
Ordering — the invariant
init() must resolve before login(). login() must resolve before you fetch or send.
Anything else fails quietly rather than throwing.
import { CometChat } from "@cometchat/chat-sdk-react-native";
const settings = new CometChat.AppSettingsBuilder()
.setRegion(REGION)
.subscribePresenceForAllUsers()
.autoEstablishSocketConnection(true)
.build();
await CometChat.init(APP_ID, settings);
await CometChat.login(UID, AUTH_KEY); // dev only; production passes an auth token
⚠️ login is variadic and untyped in the .d.ts (login(...args: any)), so TypeScript will
not catch a wrong call. The two real shapes are login(uid, authKey) and login(authToken).
Listener lifecycle — the defect this skill exists to prevent
useEffect(() => {
const id = "chat-screen";
CometChat.addMessageListener(id, new CometChat.MessageListener({
onTextMessageReceived: (m) => setMessages((prev) => [...prev, m]),
}));
return () => CometChat.removeMessageListener(id); // NOT optional
}, []);
addMessageListener returns void, not a subscription — the string id is your only handle. The
SDK holds the listener, not React, so it survives navigation and unmount. Omitting the cleanup is
the top cause of duplicate messages, and it worsens the longer the app runs.
Fetching is always a builder
Lists are paginated: new CometChat.XRequestBuilder().setLimit(n).build() then .fetchNext().
An empty array means the end — it does not throw. There is no bare getMessages().
Common pitfalls
- Dropping the listener cleanup — duplicate messages that grow over time.
- Calling a bare
sendMessage()— everything is namespaced underCometChat. - Inventing
sendCardMessage()— card messages are receive-only. awaitingstartTyping— it returns void.- Treating
getLoggedinUser()returningnullas an error — it is the normal no-session answer. (Note the lowercasein.) - Shipping ban without unban —
CometChatGroupMembersshows active members only; wireBannedMembersRequestBuilder+unbanGroupMembertoo. - Registering a push token before
loginresolves — it belongs to no user.
Verify it works
- Every symbol appears in
catalogs/rn-sdk-v4.json. npm run verify:fences:rn-v5is green.- Every
add*Listenerhas a matchingremove*Listeneron the teardown path. - Pagination, error handling and the ban round trip are wired — not just the happy path.
Signals
- GitHub stars
- 109
- Forks
- 2
- Last commit
- Sep 2026
ahel review
K1binfo
installs-packages
Automated review, not a security audit. Ruleset v1+k2.
Advanced
- Catalog kind
- skill
- Gateway key
cometchat-react-native-sdk- Source
- github.com/cometchat/cometchat-skills