cometchat-android-v6
Entry-point dispatcher for CometChat Android UIKit v6 — routes to the correct skill based on project stack and task
Works with
---
name: cometchat-android-v6
description: Entry-point dispatcher for CometChat Android UIKit v6 — routes to the correct skill based on project stack and task
license: MIT
---
> **Companion skills:** cometchat-android-v6-core, cometchat-android-v6-events, cometchat-android-v6-kotlin-components, cometchat-android-v6-compose-components, cometchat-android-v6-kotlin-theming, cometchat-android-v6-compose-theming, cometchat-android-v6-kotlin-customization, cometchat-android-v6-compose-customization, cometchat-android-v6-kotlin-placement, cometchat-android-v6-compose-placement, cometchat-android-v6-builder-settings, cometchat-android-v6-features, cometchat-android-v6-extensions, cometchat-android-v6-push, cometchat-android-v6-production, cometchat-android-v6-troubleshooting, cometchat-android-v6-testing
## Purpose
This is the entry-point skill for the CometChat Android UIKit v6. It detects the project's UI stack (Kotlin Views, Jetpack Compose, or both) and routes to the correct specialized skill.
## Use this skill when
- The user mentions "CometChat" in an Android/Kotlin project
- The user wants to add chat, messaging, or calling features to an Android app
- You need to determine which CometChat skill to activate
- The user asks a general CometChat question without specifying a stack
## Do not use this skill when
- You already know which specific skill to use (go directly to it)
- The project is React, React Native, iOS, Flutter, or Web (this skill is Android-only)
## 1. Project Detection
Detect the UI stack by inspecting the project's Gradle files:
```kotlin
// Check build.gradle.kts or build.gradle for dependencies:
// Jetpack Compose stack
implementation("com.cometchat:chatuikit-compose-android:6.x")
// Kotlin Views stack
implementation("com.cometchat:chatuikit-kotlin-android:6.x")
// Core only (shared module, no UI)
implementation("com.cometchat:chatuikit-core-android:6.x")
```
Also check for module includes in `settings.gradle`:
- `:chatuikit-compose` → Compose stack
- `:chatuikit-kotlin` → Kotlin Views stack
- `:chatuikit-core` → Core module
## 2. Architecture Overview
v6 uses a 3-module architecture:
| Module | Package | Purpose |
|---|---|---|
| `chatuikit-core` | `com.cometchat.uikit.core` | Shared: init, login, ViewModels, events, data layer |
| `chatuikit-kotlin` | `com.cometchat.uikit.kotlin` | Kotlin Views UI: custom Views, RecyclerView, XML themes |
| `chatuikit-compose` | `com.cometchat.uikit.compose` | Compose UI: @Composable functions, CompositionLocal themes |
Both UI modules depend on `chatuikit-core`. The core module holds all business logic.
## 3. Routing Table
| User wants to... | Route to skill |
|---|---|
| Add CometChat to a project / Gradle setup | `cometchat-android-v6-core` |
| Initialize the SDK / login / logout | `cometchat-android-v6-core` |
| Configure UIKitSettings in detail | `cometchat-android-v6-builder-settings` |
| Use a component (Kotlin Views) | `cometchat-android-v6-kotlin-components` |
| Use a component (Jetpack Compose) | `cometchat-android-v6-compose-components` |
| Place components in Activities/Fragments | `cometchat-android-v6-kotlin-placement` |
| Place components in Compose screens | `cometchat-android-v6-compose-placement` |
| Change colors/fonts (Kotlin Views) | `cometchat-android-v6-kotlin-theming` |
| Change colors/fonts (Compose) | `cometchat-android-v6-compose-theming` |
| Customize bubble rendering (Kotlin Views) | `cometchat-android-v6-kotlin-customization` |
| Customize bubble rendering (Compose) | `cometchat-android-v6-compose-customization` |
| Use AI features, reactions, polls, stickers | `cometchat-android-v6-features` |
| Extend with custom DataSources / message types | `cometchat-android-v6-extensions` |
| Listen to chat/call/user events | `cometchat-android-v6-events` |
| Add push notifications / FCM / VoIP | `cometchat-android-v6-push` |
| Prepare for production release | `cometchat-android-v6-production` |
| Debug issues | `cometchat-android-v6-troubleshooting` |
| Write tests | `cometchat-android-v6-testing` |
## 4. Quick-Start Decision Tree
1. **New project?** → `cometchat-android-v6-core` (Gradle setup + init)
2. **Which UI stack?**
- Jetpack Compose → `cometchat-compose-*` skills
- Kotlin Views (XML layouts) → `cometchat-kotlin-*` skills
- Both → Use the appropriate stack-specific skill for each task
3. **What task?**
- Show a component → `*-components`
- Style/theme → `*-theming`
- Customize bubbles → `*-customization`
- Place in navigation → `*-placement`
## Hard rules
- ALWAYS detect the project stack before routing to a stack-specific skill
- NEVER mix Kotlin Views APIs with Compose APIs in the same code example
- NEVER reference v5 Java UIKit APIs — v6 is Kotlin-only
- When both stacks are present, ask the user which stack they're working with before proceeding
- Route to the most specific skill possible — don't try to answer from this dispatcher skillMore Mobile skills
animation-vocabulary
emilkowalski/skills
Reverse-lookup glossary that turns a vague description of a web animation or motion effect into its exact term ("the bouncy thing when a popover opens" → Pop in; "the iOS rubber-band scroll" → Rubber-banding). Use when the user asks "what's it called when…", or describes a motion effect without knowing its name and wants the right word to prompt an AI or designer with. For naming an effect, not designing or building one.
xcode-project-setup
firebase/agent-skills
Safely modifies Xcode projects (.pbxproj) to add Swift Packages and link files. Use this skill whenever an iOS project needs dependencies installed (e.g. Firebase, Alamofire).
cross-border-ecommerce
nexscope-ai/ecommerce-skills
Cross-border e-commerce expansion advisor. Scores target markets on 8 weighted dimensions (market size, ecommerce penetration, competition, regulatory complexity, logistics infrastructure, payment ecosystem, cultural distance, IP protection), compares 5 fulfillment models with cost and transit data, provides country-by-country tax/duty compliance guides (EU VAT/IOSS, UK VAT, US sales tax, CA GST, AU GST, JP consumption tax), maps local payment preferences by market, and builds a phased expansion roadmap. No API key required.

