{"id":"1208a072-ffa2-40e5-bff9-e390204c18b6","shortId":"YXP3NF","kind":"skill","title":"cometchat-flutter-v6-features","tagline":"Enable and configure features in CometChat Flutter UIKit v6 — calls, reactions, smart replies, conversation starters, stickers, mentions, rich text formatting, message translation, link preview, and AI features. Covers what's auto-enabled, what needs UIKitSettings flags, what's e","description":"# CometChat Flutter UIKit v6 — Features\n\nHow to enable, configure, and disable features in `cometchat_chat_uikit`.\n\n## 1. Feature Categories\n\nEvery feature falls into one of three categories:\n\n| Category | What it means | Example features | How to enable |\n|---|---|---|---|\n| **Auto-enabled** | Works out of the box when you render the standard components | Text/media messages, typing indicators, read receipts, reactions, message editing/deletion, threaded replies, @mentions | Just render `CometChatMessageHeader` + `CometChatMessageList` + `CometChatMessageComposer` |\n| **UIKitSettings flag** | Set a property on `UIKitSettingsBuilder` before `CometChatUIKit.init()` | Voice/video calls (`enableCalls: true`), presence/typing (`subscriptionType`) | Set the flag → init |\n| **Extension** | Backend extension, pure boolean toggle. CLI flips via the dashboard API. | Polls, stickers, message translation, link preview, collaborative document, collaborative whiteboard, image moderation, thumbnail generation | `cometchat apply-feature <id> --app-id <X>` → restart app |\n| **AI feature** | Backend AI feature requiring an OpenAI API key on the app's AI settings | Smart replies, conversation starters, conversation summary | `cometchat apply-feature <id> --app-id <X> --openai-key sk-...` → restart app |\n| **Dashboard-only** | Third-party API key / multi-field config the user must enter themselves | Giphy, Stipop, Tenor, Chatwoot, Intercom, Disappearing Messages, Message Shortcuts | Open https://app.cometchat.com → Extensions → enter config → enable |\n\n## 2. Auto-Enabled Features\n\nThese work immediately when you render the standard message components:\n\n| Feature | Component | Notes |\n|---|---|---|\n| Text messages | `CometChatMessageList` + `CometChatMessageComposer` | Default message type |\n| Image/video/audio/file messages | `CometChatMessageComposer` attachment options | Media picker built in |\n| Read receipts | `CometChatMessageList` | Blue double-check. Disable with `disableReceipts: true` |\n| Typing indicators | `CometChatMessageHeader` subtitle | Requires `subscriptionType` set in UIKitSettings |\n| Reactions | `CometChatMessageList` | Long-press any message. Disable with `disableReactions: true` |\n| Message editing/deletion | `CometChatMessageList` long-press menu | Own messages only |\n| Threaded replies | `CometChatMessageList` | Controlled by `hideReplyInThreadOption` |\n| Reply (quote) | `CometChatMessageList` | Swipe-to-reply via `enableSwipeToReply: true` (default) |\n| @Mentions | `CometChatMessageComposer` | Type `@` to trigger. Uses `CometChatMentionsFormatter` |\n| Rich text (markdown) | `CometChatMessageComposer` | Bold, italic, strikethrough, code, lists, blockquote, links via WYSIWYG toolbar |\n| Group action messages | `CometChatMessageList` | Member joined/left/kicked. Hide with `hideGroupActionMessages: true` |\n\n## 3. UIKitSettings Features\n\nSet these on `UIKitSettingsBuilder` before calling `CometChatUIKit.init()`:\n\n### Calls\n\n```dart\nfinal settings = (UIKitSettingsBuilder()\n      ..appId = 'YOUR_APP_ID'\n      ..region = 'us'\n      ..authKey = 'YOUR_AUTH_KEY'\n      ..subscriptionType = CometChatSubscriptionType.allUsers\n      ..enableCalls = true  // ← enables voice & video calls\n      ..callingConfiguration = CallingConfiguration(\n           outgoingCallConfiguration: CometChatOutgoingCallConfiguration(...),\n           incomingCallConfiguration: CometChatIncomingCallConfiguration(...),\n           callButtonsConfiguration: CallButtonsConfiguration(...),\n           groupSessionSettingsBuilder: sessionSettingsBuilder,\n         ))\n    .build();\n```\n\nWhen `enableCalls` is `true`, the UIKit:\n1. Initializes `CometChatUIKitCalls` after chat SDK init\n2. Registers call message templates (call bubbles in message list)\n3. Shows voice/video call buttons in `CometChatMessageHeader`\n\nFor detailed call implementation, see the `cometchat-flutter-v6-calls` skill.\n\n### Presence & Typing\n\n```dart\n..subscriptionType = CometChatSubscriptionType.allUsers\n```\n\nOptions: `allUsers`, `roles`, `friends`. Controls which users' presence and typing events you receive.\n\n### Date/Time Formatting\n\n```dart\n..dateTimeFormatterCallback = (DateTime dateTime) => 'custom format'\n```\n\n## 4. Backend Toggle Features (CLI)\n\nThese are backend extensions / AI features. Flutter projects don't write `.cometchat/state.json`, so call the CLI in stateless mode:\n\n```bash\n# Pure boolean extensions:\ncometchat apply-feature polls --app-id <your-app-id>\ncometchat apply-feature link-preview --app-id <your-app-id>\n\n# AI features (require OpenAI key first time):\ncometchat apply-feature smart-replies --app-id <your-app-id> --openai-key sk-...\n```\n\nRequires `cometchat auth login` once per machine. Once enabled, the UIKit auto-wires the UI.\n\nFor dashboard-only extensions (Giphy, Stipop, Tenor, Chatwoot, Intercom — they need third-party API keys / webhooks), use https://app.cometchat.com → Extensions.\n\n| Extension | UI surface when enabled | Extension directory |\n|---|---|---|\n| Polls | \"Create Poll\" option in composer attachment menu | `extensions/polls/` |\n| Stickers | Sticker picker button next to composer | `extensions/stickers/` |\n| Smart Replies | Chip suggestions above composer after incoming message | AI view: `views/ai_smart_replies/` |\n| Conversation Starters | Suggested messages when chat is empty | AI view: `views/ai_conversation_starter/` |\n| Conversation Summary | Summary panel above composer | AI view: `views/ai_conversation_summary/` |\n| Message Translation | \"Translate\" option in message long-press menu | `extensions/message_translation/` |\n| Link Preview | Rich preview card for URLs in messages | `extensions/link_preview/` |\n| Collaborative Document | \"Document\" option in composer attachment menu | `extensions/collaborative_document/` |\n| Collaborative Whiteboard | \"Whiteboard\" option in composer attachment menu | `extensions/collaborative_whiteboard/` |\n| Image Moderation | Blurs inappropriate images automatically | `extensions/image_moderation/` |\n| Thumbnail Generation | Auto-generates thumbnails for images/videos | `extensions/thumbnail_generation/` |\n\n## 5. Calls\n\nVoice and video calling for 1:1 and group conversations. Built into `cometchat_chat_uikit` — no separate package.\n\n```dart\n// Enable in UIKitSettings\n..enableCalls = true\n\n// Call buttons appear automatically in CometChatMessageHeader\nCometChatMessageHeader(\n  user: user,\n  group: group,\n  hideVoiceCallButton: false,  // default\n  hideVideoCallButton: false,  // default\n)\n```\n\n`CallingConfiguration` bundles all call component configs:\n\n```dart\nCallingConfiguration(\n  outgoingCallConfiguration: CometChatOutgoingCallConfiguration(...),\n  incomingCallConfiguration: CometChatIncomingCallConfiguration(...),\n  callButtonsConfiguration: CallButtonsConfiguration(...),\n  groupSessionSettingsBuilder: sessionSettingsBuilder,\n)\n```\n\nFor the full call flow, init sequence, and gotchas, see the `cometchat-flutter-v6-calls` skill.\n\n## 6. AI Features\n\nAI features require enabling the corresponding extension in the CometChat dashboard. The UIKit provides built-in views for each.\n\n### Smart Replies\n\nSuggested reply chips shown above the composer after receiving a message.\n\n```dart\nCometChatMessageList(\n  user: user,\n  group: group,\n  enableSmartReplies: true,\n  smartRepliesDelayDuration: 10000,  // ms before showing suggestions\n  smartRepliesKeywords: ['what', 'when', 'why', 'who', 'where', 'how', '?'],\n)\n```\n\n### Conversation Starters\n\nSuggested messages shown when the chat is empty to help start a conversation.\n\n```dart\nCometChatMessageList(\n  user: user,\n  group: group,\n  enableConversationStarters: true,\n)\n```\n\n### Conversation Summary\n\nA summary of the conversation shown in a panel. Available via the AI option sheet in the message header.\n\n### AI Assistant\n\nFull AI chat assistant with chat history. Uses Clean Architecture + BLoC at `chat_ui/src/ai_assistant_chat_history/`. The chat history button appears in `CometChatMessageHeader` for AI-type users.\n\nRelated props on `CometChatMessageHeader`:\n- `hideChatHistoryButton` — hide the AI chat history button\n- `hideNewChatButton` — hide the new AI chat button\n- `chatHistoryButtonClick` — custom callback for chat history tap\n- `newChatButtonClick` — custom callback for new chat tap\n\n## 7. Rich Text & Formatters\n\nThe composer supports rich text formatting via the WYSIWYG toolbar (bold, italic, strikethrough, inline code, ordered/bullet lists, blockquote, links, code blocks).\n\n### Text Formatters\n\nPass `textFormatters` to both `CometChatMessageList` and `CometChatMessageComposer` for consistent rendering:\n\n```dart\n// Available formatters (in shared_ui/src/formatter/)\n// - CometChatMentionsFormatter  — @mention users\n// - CometChatUrlFormatter       — auto-link URLs\n// - CometChatPhoneNumberFormatter — auto-link phone numbers\n// - CometChatEmailFormatter     — auto-link emails\n// - MarkdownTextFormatter       — render markdown in bubbles\n\nCometChatMessageList(\n  user: user,\n  group: group,\n  textFormatters: [\n    CometChatMentionsFormatter(),\n    CometChatUrlFormatter(),\n  ],\n)\n\nCometChatMessageComposer(\n  user: user,\n  group: group,\n  textFormatters: [\n    CometChatMentionsFormatter(),\n  ],\n)\n```\n\n### Mentions\n\n`CometChatMentionsFormatter` is the primary formatter for @mentions. Type `@` in the composer to trigger the user suggestion list.\n\nRelated props:\n- `disableMentions` — disable @mention suggestions on both list and composer\n- `disableMentionAll` — disable the @all mention option (composer)\n- `mentionAllLabel` / `mentionAllLabelId` — customize the @all label\n\n### Rich Text Toolbar\n\nThe composer's WYSIWYG toolbar is the active formatting system. Configure via:\n\n```dart\nCometChatMessageComposer(\n  user: user,\n  group: group,\n  richTextConfiguration: RichTextConfiguration(...),\n  richTextToolbarView: (context) => CustomToolbar(),\n  onRichTextFormatApplied: (formatType) { },\n)\n```\n\n## 8. Reactions\n\nReactions are auto-enabled. Users long-press a message to add emoji reactions.\n\n### Disabling Reactions\n\n```dart\nCometChatMessageList(\n  user: user,\n  group: group,\n  disableReactions: true,  // hides reaction UI entirely\n)\n```\n\n### Customizing Reactions\n\n```dart\nCometChatMessageList(\n  user: user,\n  group: group,\n  favoriteReactions: ['👍', '❤️', '😂', '😮', '😢', '🙏'],\n  addReactionIcon: Icon(Icons.add_reaction),\n  onReactionClick: (reaction) { },\n  onReactionLongPress: (reaction) { },\n  onReactionListItemClick: (reaction) { },\n  reactionsRequestBuilder: ReactionsRequestBuilder()..limit = 10,\n  hideReactionOption: true,  // hide \"React\" from long-press menu\n)\n```\n\n## 9. Disabling Features\n\nMost features can be hidden or disabled via component props.\n\n### CometChatMessageHeader\n\n| Prop | Type | Effect |\n|---|---|---|\n| `hideVoiceCallButton` | `bool?` | Hide voice call button |\n| `hideVideoCallButton` | `bool?` | Hide video call button |\n| `hideChatHistoryButton` | `bool?` | Hide AI chat history button |\n| `hideNewChatButton` | `bool?` | Hide new AI chat button |\n| `usersStatusVisibility` | `bool?` | Show/hide online status indicator |\n\n### CometChatMessageList\n\n| Prop | Type | Default | Effect |\n|---|---|---|---|\n| `disableReactions` | `bool` | `false` | Disable all reaction UI |\n| `disableReceipts` | `bool` | `false` | Hide read/delivered receipts |\n| `disableSoundForMessages` | `bool` | `false` | Mute message sounds |\n| `hideDeletedMessages` | `bool` | `false` | Hide deleted message placeholders |\n| `hideReplies` | `bool` | `true` | Hide reply count on messages |\n| `hideThreadView` | `bool?` | — | Hide thread reply indicator |\n| `hideDateSeparator` | `bool` | `false` | Hide date separators |\n| `hideStickyDate` | `bool` | `false` | Hide sticky date header |\n| `hideGroupActionMessages` | `bool` | `false` | Hide \"X joined\" / \"X left\" messages |\n| `hideReplyInThreadOption` | `bool` | `false` | Remove \"Reply in Thread\" from long-press menu |\n| `hideReplyOption` | `bool` | `false` | Remove \"Reply\" from long-press menu |\n| `hideCopyMessageOption` | `bool` | `false` | Remove \"Copy\" from long-press menu |\n| `hideDeleteMessageOption` | `bool` | `false` | Remove \"Delete\" from long-press menu |\n| `hideEditMessageOption` | `bool` | `false` | Remove \"Edit\" from long-press menu |\n| `hideMessageInfoOption` | `bool` | `false` | Remove \"Message Info\" from long-press menu |\n| `hideMessagePrivatelyOption` | `bool` | `false` | Remove \"Message Privately\" from long-press menu |\n| `hideReactionOption` | `bool` | `false` | Remove \"React\" from long-press menu |\n| `hideTranslateMessageOption` | `bool` | `false` | Remove \"Translate\" from long-press menu |\n| `hideShareMessageOption` | `bool` | `false` | Remove \"Share\" from long-press menu |\n| `hideSuggestedMessages` | `bool` | `false` | Hide AI suggested messages |\n| `enableSmartReplies` | `bool` | `false` | Enable smart reply suggestions |\n| `enableConversationStarters` | `bool` | `false` | Enable conversation starter suggestions |\n| `enableSwipeToReply` | `bool` | `true` | Enable swipe-to-reply gesture |\n\n### CometChatMessageComposer\n\n| Prop | Type | Effect |\n|---|---|---|\n| `hideVoiceRecordingButton` | `bool?` | Hide voice recording button |\n| `hideSendButton` | `bool?` | Hide send button |\n| `hideAttachmentButton` | `bool?` | Hide attachment (paperclip) button |\n| `hideStickersButton` | `bool?` | Hide stickers button |\n| `hidePollsOption` | `bool?` | Hide \"Create Poll\" from attachment menu |\n| `hideCollaborativeDocumentOption` | `bool?` | Hide \"Document\" from attachment menu |\n| `hideCollaborativeWhiteboardOption` | `bool?` | Hide \"Whiteboard\" from attachment menu |\n| `hideAudioAttachmentOption` | `bool?` | Hide audio from attachment menu |\n| `hideFileAttachmentOption` | `bool?` | Hide file from attachment menu |\n| `hideImageAttachmentOption` | `bool?` | Hide image from attachment menu |\n| `hideVideoAttachmentOption` | `bool?` | Hide video from attachment menu |\n| `hideTakePhotoOption` | `bool?` | Hide \"Take Photo\" from attachment menu |\n| `disableTypingEvents` | `bool` | Stop sending typing indicators |\n| `disableSoundForMessages` | `bool` | Mute send message sound |\n| `disableMentions` | `bool?` | Disable @mention suggestions |\n| `disableMentionAll` | `bool` | Disable @all mention |\n\n## Extensions Directory\n\nAll extension implementations live under `chat_ui/src/extensions/`:\n\n```\nextensions/\n├── collaborative/                  # Shared collaborative bubble\n├── collaborative_document/         # Document extension\n├── collaborative_whiteboard/       # Whiteboard extension\n├── image_moderation/               # Image moderation filter\n├── link_preview/                   # Link preview bubble\n├── message_translation/            # Translation bubble + option\n├── polls/                          # Poll creation + bubble\n├── stickers/                       # Sticker keyboard + bubble\n├── thumbnail_generation/           # Thumbnail config\n├── extension_constants.dart        # Extension ID constants\n├── extension_moderator.dart        # Extension moderator\n└── extension.dart                  # Base extension class\n```\n\n## Quick Reference — Enabling Everything\n\n```dart\nfinal settings = (UIKitSettingsBuilder()\n      ..appId = 'YOUR_APP_ID'\n      ..region = 'us'\n      ..authKey = 'YOUR_AUTH_KEY'\n      ..subscriptionType = CometChatSubscriptionType.allUsers\n      ..enableCalls = true)\n    .build();\n\nawait CometChatUIKit.init(uiKitSettings: settings);\n\n// Then in your messages screen:\nCometChatMessageList(\n  user: user,\n  group: group,\n  enableSmartReplies: true,\n  enableConversationStarters: true,\n  enableSwipeToReply: true,\n  textFormatters: [CometChatMentionsFormatter()],\n)\n\nCometChatMessageComposer(\n  user: user,\n  group: group,\n  textFormatters: [CometChatMentionsFormatter()],\n)\n\nCometChatMessageHeader(\n  user: user,\n  group: group,\n  // Call buttons shown automatically when enableCalls = true\n)\n```\n\nDashboard extensions (polls, stickers, translation, link preview, collaborative doc/whiteboard) are auto-wired once enabled in the CometChat dashboard — no code changes needed.","tags":["cometchat","flutter","features","skills","agent-skills","ai-agent","chat","claude-code","cursor","messaging","nextjs","react"],"capabilities":["skill","source-cometchat","skill-cometchat-flutter-v6-features","topic-agent-skills","topic-ai-agent","topic-chat","topic-claude-code","topic-cometchat","topic-cursor","topic-messaging","topic-nextjs","topic-react","topic-react-native","topic-ui-kit"],"categories":["cometchat-skills"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/cometchat/cometchat-skills/cometchat-flutter-v6-features","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add cometchat/cometchat-skills","source_repo":"https://github.com/cometchat/cometchat-skills","install_from":"skills.sh"}},"qualityScore":"0.463","qualityRationale":"deterministic score 0.46 from registry signals: · indexed on github topic:agent-skills · 27 github stars · SKILL.md body (16,048 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-05-18T19:04:51.584Z","embedding":null,"createdAt":"2026-05-07T13:05:11.458Z","updatedAt":"2026-05-18T19:04:51.584Z","lastSeenAt":"2026-05-18T19:04:51.584Z","tsv":"'1':62,407,691,692 '10':1126 '10000':805 '2':234,414 '3':357,424 '4':469 '5':684 '6':760 '7':921 '8':1073 '9':1136 'action':348 'activ':1055 'add':1087 'addreactionicon':1113 'ai':31,167,170,181,478,515,606,617,626,761,763,854,861,864,886,896,904,1168,1176,1360 'ai-typ':885 'allus':449 'api':143,175,208,567 'app':163,166,179,194,201,374,503,513,530,1562 'app-id':162,193,502,512,529 'app.cometchat.com':229,571 'appear':712,881 'appid':372,1560 'appli':160,191,499,507,524 'apply-featur':159,190,498,506,523 'architectur':872 'assist':862,866 'attach':262,586,656,665,1404,1418,1425,1432,1439,1446,1453,1460,1468 'audio':1437 'auth':380,538,1568 'authkey':378,1566 'auto':37,83,236,548,678,969,974,980,1078,1627 'auto-en':36,82,235,1077 'auto-gener':677 'auto-link':968,973,979 'auto-wir':547,1626 'automat':673,713,1612 'avail':851,959 'await':1575 'backend':133,169,470,476 'base':1549 'bash':493 'bloc':873 'block':945 'blockquot':342,942 'blue':271 'blur':670 'bold':337,935 'bool':1154,1160,1166,1173,1180,1191,1198,1204,1210,1217,1225,1231,1237,1244,1253,1265,1275,1285,1295,1305,1316,1327,1337,1347,1357,1364,1371,1378,1391,1397,1402,1408,1413,1421,1428,1435,1442,1449,1456,1463,1471,1477,1483,1488 'boolean':136,495 'box':89 'bubbl':420,987,1505,1523,1527,1532,1536 'build':400,1574 'built':266,696,778 'built-in':777 'bundl':728 'button':428,592,711,880,899,906,1158,1164,1171,1178,1395,1400,1406,1411,1610 'call':15,123,365,367,389,416,419,427,433,441,487,685,689,710,730,746,758,1157,1163,1609 'callback':909,916 'callbuttonsconfigur':396,397,739,740 'callingconfigur':390,391,727,734 'card':644 'categori':64,72,73 'chang':1637 'chat':60,411,614,699,824,865,868,875,878,897,905,911,919,1169,1177,1499 'chathistorybuttonclick':907 'chatwoot':222,560 'check':274 'chip':599,787 'class':1551 'clean':871 'cli':138,473,489 'code':340,939,944,1636 'collabor':150,152,650,659,1502,1504,1506,1510,1623 'cometchat':2,11,46,59,158,189,438,497,505,522,537,698,755,772,1633 'cometchat-flutter-v6-calls':437,754 'cometchat-flutter-v6-features':1 'cometchat/state.json':485 'cometchatemailformatt':978 'cometchatincomingcallconfigur':395,738 'cometchatmentionsformatt':332,964,994,1002,1004,1596,1603 'cometchatmessagecompos':112,255,261,327,336,954,996,1061,1386,1597 'cometchatmessagehead':110,281,430,715,716,883,892,1149,1604 'cometchatmessagelist':111,254,270,289,301,311,317,350,797,833,952,988,1093,1107,1185,1584 'cometchatoutgoingcallconfigur':393,736 'cometchatphonenumberformatt':972 'cometchatsubscriptiontype.allusers':383,447,1571 'cometchatuikit.init':121,366,1576 'cometchatuikitcal':409 'cometchaturlformatt':967,995 'compon':95,248,250,731,1147 'compos':585,595,602,625,655,664,791,926,1014,1031,1038,1049 'config':213,232,732,1540 'configur':8,54,1058 'consist':956 'constant':1544 'context':1069 'control':312,452 'convers':19,185,187,609,620,695,817,831,840,846,1374 'copi':1278 'correspond':768 'count':1221 'cover':33 'creat':581,1415 'creation':1531 'custom':467,908,915,1041,1104 'customtoolbar':1070 'dart':368,445,463,704,733,796,832,958,1060,1092,1106,1556 'dashboard':142,203,554,773,1616,1634 'dashboard-on':202,553 'date':1234,1241 'date/time':461 'datetim':465,466 'datetimeformattercallback':464 'default':256,325,723,726,1188 'delet':1213,1288 'detail':432 'directori':579,1493 'disabl':56,275,295,1024,1033,1090,1137,1145,1193,1484,1489 'disablement':1023,1482 'disablementional':1032,1487 'disablereact':297,1098,1190 'disablereceipt':277,1197 'disablesoundformessag':1203,1476 'disabletypingev':1470 'disappear':224 'doc/whiteboard':1624 'document':151,651,652,1423,1507,1508 'doubl':273 'double-check':272 'e':45 'edit':1298 'editing/deletion':104,300 'effect':1152,1189,1389 'email':982 'emoji':1088 'empti':616,826 'enabl':6,38,53,81,84,233,237,386,544,577,705,766,1079,1366,1373,1380,1554,1630 'enablecal':124,384,402,708,1572,1614 'enableconversationstart':838,1370,1591 'enablesmartrepli':802,1363,1589 'enableswipetorepli':323,1377,1593 'enter':217,231 'entir':1103 'event':458 'everi':65 'everyth':1555 'exampl':77 'extens':132,134,230,477,496,556,572,573,578,769,1492,1495,1501,1509,1513,1542,1546,1550,1617 'extension.dart':1548 'extension_constants.dart':1541 'extension_moderator.dart':1545 'extensions/collaborative_document':658 'extensions/collaborative_whiteboard':667 'extensions/image_moderation':674 'extensions/link_preview':649 'extensions/message_translation':639 'extensions/polls':588 'extensions/stickers':596 'extensions/thumbnail_generation':683 'fall':67 'fals':722,725,1192,1199,1205,1211,1232,1238,1245,1254,1266,1276,1286,1296,1306,1317,1328,1338,1348,1358,1365,1372 'favoritereact':1112 'featur':5,9,32,50,57,63,66,78,161,168,171,192,238,249,359,472,479,500,508,516,525,762,764,1138,1140 'field':212 'file':1444 'filter':1518 'final':369,1557 'first':520 'flag':42,114,130 'flip':139 'flow':747 'flutter':3,12,47,439,480,756 'format':25,462,468,930,1056 'formatt':924,947,960,1008 'formattyp':1072 'friend':451 'full':745,863 'generat':157,676,679,1538 'gestur':1385 'giphi':219,557 'gotcha':751 'group':347,694,719,720,800,801,836,837,991,992,999,1000,1064,1065,1096,1097,1110,1111,1587,1588,1600,1601,1607,1608 'groupsessionsettingsbuild':398,741 'header':860,1242 'help':828 'hidden':1143 'hide':353,894,901,1100,1129,1155,1161,1167,1174,1200,1212,1219,1226,1233,1239,1246,1359,1392,1398,1403,1409,1414,1422,1429,1436,1443,1450,1457,1464 'hideattachmentbutton':1401 'hideaudioattachmentopt':1434 'hidechathistorybutton':893,1165 'hidecollaborativedocumentopt':1420 'hidecollaborativewhiteboardopt':1427 'hidecopymessageopt':1274 'hidedatesepar':1230 'hidedeletedmessag':1209 'hidedeletemessageopt':1284 'hideeditmessageopt':1294 'hidefileattachmentopt':1441 'hidegroupactionmessag':355,1243 'hideimageattachmentopt':1448 'hidemessageinfoopt':1304 'hidemessageprivatelyopt':1315 'hidenewchatbutton':900,1172 'hidepollsopt':1412 'hidereactionopt':1127,1326 'hiderepli':1216 'hidereplyinthreadopt':314,1252 'hidereplyopt':1264 'hidesendbutton':1396 'hidesharemessageopt':1346 'hidestickersbutton':1407 'hidestickyd':1236 'hidesuggestedmessag':1356 'hidetakephotoopt':1462 'hidethreadview':1224 'hidetranslatemessageopt':1336 'hidevideoattachmentopt':1455 'hidevideocallbutton':724,1159 'hidevoicecallbutton':721,1153 'hidevoicerecordingbutton':1390 'histori':869,879,898,912,1170 'icon':1114 'icons.add':1115 'id':164,195,375,504,514,531,1543,1563 'imag':154,668,672,1451,1514,1516 'image/video/audio/file':259 'images/videos':682 'immedi':241 'implement':434,1496 'inappropri':671 'incom':604 'incomingcallconfigur':394,737 'indic':99,280,1184,1229,1475 'info':1309 'init':131,413,748 'initi':408 'inlin':938 'intercom':223,561 'ital':338,936 'join':1248 'joined/left/kicked':352 'key':176,198,209,381,519,534,568,1569 'keyboard':1535 'label':1044 'left':1250 'limit':1125 'link':28,148,343,510,640,943,970,975,981,1519,1521,1621 'link-preview':509 'list':341,423,941,1020,1029 'live':1497 'login':539 'long':291,303,636,1082,1133,1261,1271,1281,1291,1301,1312,1323,1333,1343,1353 'long-press':290,302,635,1081,1132,1260,1270,1280,1290,1300,1311,1322,1332,1342,1352 'machin':542 'markdown':335,985 'markdowntextformatt':983 'mean':76 'media':264 'member':351 'mention':22,107,326,965,1003,1010,1025,1036,1485,1491 'mentionalllabel':1039 'mentionalllabelid':1040 'menu':305,587,638,657,666,1135,1263,1273,1283,1293,1303,1314,1325,1335,1345,1355,1419,1426,1433,1440,1447,1454,1461,1469 'messag':26,97,103,146,225,226,247,253,257,260,294,299,307,349,417,422,605,612,629,634,648,795,820,859,1085,1207,1214,1223,1251,1308,1319,1362,1480,1524,1582 'mode':492 'moder':155,669,1515,1517,1547 'ms':806 'multi':211 'multi-field':210 'must':216 'mute':1206,1478 'need':40,563,1638 'new':903,918,1175 'newchatbuttonclick':914 'next':593 'note':251 'number':977 'one':69 'onlin':1182 'onreactionclick':1117 'onreactionlistitemclick':1121 'onreactionlongpress':1119 'onrichtextformatappli':1071 'open':228 'openai':174,197,518,533 'openai-key':196,532 'option':263,448,583,632,653,662,855,1037,1528 'ordered/bullet':940 'outgoingcallconfigur':392,735 'packag':703 'panel':623,850 'paperclip':1405 'parti':207,566 'pass':948 'per':541 'phone':976 'photo':1466 'picker':265,591 'placehold':1215 'poll':144,501,580,582,1416,1529,1530,1618 'presenc':443,455 'presence/typing':126 'press':292,304,637,1083,1134,1262,1272,1282,1292,1302,1313,1324,1334,1344,1354 'preview':29,149,511,641,643,1520,1522,1622 'primari':1007 'privat':1320 'project':481 'prop':890,1022,1148,1150,1186,1387 'properti':117 'provid':776 'pure':135,494 'quick':1552 'quot':316 'react':1130,1330 'reaction':16,102,288,1074,1075,1089,1091,1101,1105,1116,1118,1120,1122,1195 'reactionsrequestbuild':1123,1124 'read':100,268 'read/delivered':1201 'receipt':101,269,1202 'receiv':460,793 'record':1394 'refer':1553 'region':376,1564 'regist':415 'relat':889,1021 'remov':1255,1267,1277,1287,1297,1307,1318,1329,1339,1349 'render':92,109,244,957,984 'repli':18,106,184,310,315,321,528,598,784,786,1220,1228,1256,1268,1368,1384 'requir':172,283,517,536,765 'restart':165,200 'rich':23,333,642,922,928,1045 'richtextconfigur':1066,1067 'richtexttoolbarview':1068 'role':450 'screen':1583 'sdk':412 'see':435,752 'send':1399,1473,1479 'separ':702,1235 'sequenc':749 'sessionsettingsbuild':399,742 'set':115,128,182,285,360,370,1558,1578 'share':962,1350,1503 'sheet':856 'shortcut':227 'show':425,808 'show/hide':1181 'shown':788,821,847,1611 'sk':199,535 'skill':442,759 'skill-cometchat-flutter-v6-features' 'smart':17,183,527,597,783,1367 'smart-repli':526 'smartrepliesdelaydur':804 'smartreplieskeyword':810 'sound':1208,1481 'source-cometchat' 'standard':94,246 'start':829 'starter':20,186,610,818,1375 'stateless':491 'status':1183 'sticker':21,145,589,590,1410,1533,1534,1619 'sticki':1240 'stipop':220,558 'stop':1472 'strikethrough':339,937 'subscriptiontyp':127,284,382,446,1570 'subtitl':282 'suggest':600,611,785,809,819,1019,1026,1361,1369,1376,1486 'summari':188,621,622,841,843 'support':927 'surfac':575 'swipe':319,1382 'swipe-to-repli':318,1381 'system':1057 'take':1465 'tap':913,920 'templat':418 'tenor':221,559 'text':24,252,334,923,929,946,1046 'text/media':96 'textformatt':949,993,1001,1595,1602 'third':206,565 'third-parti':205,564 'thread':105,309,1227,1258 'three':71 'thumbnail':156,675,680,1537,1539 'time':521 'toggl':137,471 'toolbar':346,934,1047,1052 'topic-agent-skills' 'topic-ai-agent' 'topic-chat' 'topic-claude-code' 'topic-cometchat' 'topic-cursor' 'topic-messaging' 'topic-nextjs' 'topic-react' 'topic-react-native' 'topic-ui-kit' 'translat':27,147,630,631,1340,1525,1526,1620 'trigger':330,1016 'true':125,278,298,324,356,385,404,709,803,839,1099,1128,1218,1379,1573,1590,1592,1594,1615 'type':98,258,279,328,444,457,887,1011,1151,1187,1388,1474 'ui':551,574,1102,1196 'ui/src/ai_assistant_chat_history':876 'ui/src/extensions':1500 'ui/src/formatter':963 'uikit':13,48,61,406,546,700,775 'uikitset':41,113,287,358,707,1577 'uikitsettingsbuild':119,363,371,1559 'url':646,971 'us':377,1565 'use':331,570,870 'user':215,454,717,718,798,799,834,835,888,966,989,990,997,998,1018,1062,1063,1080,1094,1095,1108,1109,1585,1586,1598,1599,1605,1606 'usersstatusvis':1179 'v6':4,14,49,440,757 'via':140,322,344,852,931,1059,1146 'video':388,688,1162,1458 'view':607,618,627,780 'views/ai_conversation_starter':619 'views/ai_conversation_summary':628 'views/ai_smart_replies':608 'voic':387,686,1156,1393 'voice/video':122,426 'webhook':569 'whiteboard':153,660,661,1430,1511,1512 'wire':549,1628 'work':85,240 'write':484 'wysiwyg':345,933,1051 'x':1247,1249","prices":[{"id":"d438b81f-f25c-4f3c-8d5d-b9487cf568e1","listingId":"1208a072-ffa2-40e5-bff9-e390204c18b6","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"cometchat","category":"cometchat-skills","install_from":"skills.sh"},"createdAt":"2026-05-07T13:05:11.458Z"}],"sources":[{"listingId":"1208a072-ffa2-40e5-bff9-e390204c18b6","source":"github","sourceId":"cometchat/cometchat-skills/cometchat-flutter-v6-features","sourceUrl":"https://github.com/cometchat/cometchat-skills/tree/main/skills/cometchat-flutter-v6-features","isPrimary":false,"firstSeenAt":"2026-05-07T13:05:11.458Z","lastSeenAt":"2026-05-18T19:04:51.584Z"}],"details":{"listingId":"1208a072-ffa2-40e5-bff9-e390204c18b6","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"cometchat","slug":"cometchat-flutter-v6-features","github":{"repo":"cometchat/cometchat-skills","stars":27,"topics":["agent-skills","ai-agent","chat","claude-code","cometchat","cursor","messaging","nextjs","react","react-native","ui-kit"],"license":null,"html_url":"https://github.com/cometchat/cometchat-skills","pushed_at":"2026-05-18T05:04:24Z","description":"Add CometChat chat to any React, Next.js, React Native, Angular, Android, iOS, or Flutter project through your AI coding agent. Works with Claude Code, Cursor, Codex, VS Code Copilot, Windsurf, Cline, Kiro, and 50+ more agents.","skill_md_sha":"441de0ec984bd750b33c75b5da7407fd5f1d35d0","skill_md_path":"skills/cometchat-flutter-v6-features/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/cometchat/cometchat-skills/tree/main/skills/cometchat-flutter-v6-features"},"layout":"multi","source":"github","category":"cometchat-skills","frontmatter":{"name":"cometchat-flutter-v6-features","license":"MIT","description":"Enable and configure features in CometChat Flutter UIKit v6 — calls, reactions, smart replies, conversation starters, stickers, mentions, rich text formatting, message translation, link preview, and AI features. Covers what's auto-enabled, what needs UIKitSettings flags, what's enabled by `cometchat apply-feature <id>`, and what needs manual dashboard configuration (third-party API keys).","compatibility":"cometchat_chat_uikit ^6.0.0-beta2"},"skills_sh_url":"https://skills.sh/cometchat/cometchat-skills/cometchat-flutter-v6-features"},"updatedAt":"2026-05-18T19:04:51.584Z"}}