From db873c2792eb176819234361f6046cab5df65ca0 Mon Sep 17 00:00:00 2001 From: Natesh Relhan Date: Wed, 19 Aug 2026 17:23:49 +0530 Subject: [PATCH 1/2] Add README This repo had no README, so anyone arriving from a link landed on a bare file tree. Covers what the SDK does, how to install it alongside its data layer, what each directory in the repo is, and where the docs are. Co-Authored-By: Claude Opus 5 (1M context) --- README.md | 81 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..beb3d5e --- /dev/null +++ b/README.md @@ -0,0 +1,81 @@ +# LikeMinds Chat SDK for React + +Drop-in chat for React web apps. Group chatrooms, 1:1 DMs, polls, voice notes, reactions and +moderation, with every component overridable. + +[![npm](https://img.shields.io/npm/v/@likeminds.community/likeminds-chat-reactjs.svg)](https://www.npmjs.com/package/@likeminds.community/likeminds-chat-reactjs) +[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](LICENSE) + +**Docs:** https://docs.likeminds.io/ + +## What you get + +Group chatrooms and 1:1 DMs with request, approve, reject, block and rate limits · emoji reactions · +reply, edit, delete, multi-select · @-mentions · polls, including instant, deferred, multi-select, +anonymous and user-added options · voice notes · images, video, GIFs via Giphy, PDFs and documents · +link previews · chatroom topics · search across chatrooms, conversations and members · +explore and discover chatrooms · secret chatrooms and invites · report and moderation · +push notifications · custom JSON widget messages. + +Mobile-responsive below 768px. + +## Install + +```bash +npm install @likeminds.community/likeminds-chat-reactjs +``` + +This is the UI layer. It depends on the data layer, which handles auth, networking, realtime and +media upload: + +```bash +npm install @likeminds.community/chat-js +``` + +Source for the data layer is at +[likeminds-chat-js-data](https://github.com/LikeMindsCommunity/likeminds-chat-js-data). + +## Three product shapes + +Chat ships in three shapes, selected by theme. Each has a runnable reference app in this repo: + +| Directory | What it is | +|---|---| +| `core/` | The publishable SDK | +| `community-chat/` | Group chatrooms only | +| `networking-chat/` | 1:1 DMs only | +| `community-hybrid-chat/` | Both in one app, plus routing and custom-action examples | +| `ai-chatbot/` | Chat against an AI bot participant | +| `ai-chatbot-webflow-integration/` | The AI chatbot embedded in a Webflow site | + +To run one: + +```bash +cd community-chat +npm install +npm run dev +``` + +## Customising + +The SDK ships roughly 40 exported components, 18 hooks and 12 contexts. Two override systems are +built in: + +- **Custom components** - swap any rendered component for your own +- **Custom callbacks** - intercept an action, run your logic, then optionally call through + +You do not need to fork the SDK to change behaviour. If you find something that cannot be overridden, +that is a bug worth reporting. + +## Built on + +React 18 · Vite 5 · MUI 5 · Firebase · AWS S3 and Cognito · emoji-mart · Giphy + +## Contributing + +See the org-wide [contributing guide](https://github.com/LikeMindsCommunity/.github/blob/master/.github/CONTRIBUTING.md). +Security issues go to **hi@likeminds.community**, not the issue tracker. + +## License + +Apache 2.0. See [LICENSE](LICENSE) and [NOTICE](NOTICE). From aa78ad6525885286cfb84bb98129b200858bfa19 Mon Sep 17 00:00:00 2001 From: Natesh Relhan Date: Wed, 19 Aug 2026 17:46:35 +0530 Subject: [PATCH 2/2] Fix contact email and org health file link The contributing-guide link pointed at /blob/master/, which only resolves via a redirect since the .github repo defaults to main. Contact address updated to natesh@likeminds.community. Co-Authored-By: Claude Opus 5 (1M context) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index beb3d5e..cb68bfb 100644 --- a/README.md +++ b/README.md @@ -73,8 +73,8 @@ React 18 · Vite 5 · MUI 5 · Firebase · AWS S3 and Cognito · emoji-mart · G ## Contributing -See the org-wide [contributing guide](https://github.com/LikeMindsCommunity/.github/blob/master/.github/CONTRIBUTING.md). -Security issues go to **hi@likeminds.community**, not the issue tracker. +See the org-wide [contributing guide](https://github.com/LikeMindsCommunity/.github/blob/main/.github/CONTRIBUTING.md). +Security issues go to **natesh@likeminds.community**, not the issue tracker. ## License