stream-chat-react-native-core 9.7.3-beta.1 → 9.7.3-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +22 -0
- package/lib/commonjs/version.json +1 -1
- package/lib/module/version.json +1 -1
- package/package.json +1 -1
- package/src/version.json +1 -1
package/README.md
CHANGED
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
- [Stream Chat API](https://getstream.io/chat/) product overview
|
|
20
20
|
- [Register](https://getstream.io/chat/trial/) to get an API key for Stream Chat
|
|
21
21
|
- [React Native Chat Tutorial](https://getstream.io/chat/react-native-chat/tutorial/)
|
|
22
|
+
- [AI Agent Skills](#-build-with-ai-agents) for Claude Code, Cursor, and Codex
|
|
22
23
|
- [Chat UI Kit](https://getstream.io/chat/ui-kit/)
|
|
23
24
|
- [Documentation](https://getstream.io/chat/docs/sdk/reactnative)
|
|
24
25
|
- [Release Notes](https://github.com/GetStream/stream-chat-react-native/releases)
|
|
@@ -28,6 +29,7 @@
|
|
|
28
29
|
- [Official React Native SDK for Stream Chat](#official-react-native-sdk-for-stream-chat)
|
|
29
30
|
- [Contents](#contents)
|
|
30
31
|
- [📖 React Native Chat Tutorial](#-react-native-chat-tutorial)
|
|
32
|
+
- [🤖 Build with AI Agents](#-build-with-ai-agents)
|
|
31
33
|
- [Free for Makers](#free-for-makers)
|
|
32
34
|
- [🔮 Example Apps](#-example-apps)
|
|
33
35
|
- [💬 Keep in mind](#-keep-in-mind)
|
|
@@ -39,6 +41,26 @@
|
|
|
39
41
|
|
|
40
42
|
The best place to start is the [React Native Chat Tutorial](https://getstream.io/chat/react-native-chat/tutorial/). It teaches you how to use this SDK and also shows how to make frequently required changes.
|
|
41
43
|
|
|
44
|
+
## 🤖 Build with AI Agents
|
|
45
|
+
|
|
46
|
+
If you build with an AI coding agent, our [agent skills](https://getstream.io/agent-skills/docs/installation/) teach it how to use this SDK correctly. Install them once:
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
curl -fsSL https://getstream.io/cli.sh | bash
|
|
50
|
+
getstream init
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
Then reach for the [`/stream-react-native`](https://getstream.io/agent-skills/docs/skills/stream-react-native/) skill:
|
|
54
|
+
|
|
55
|
+
```
|
|
56
|
+
/stream-react-native create a new Expo chat app
|
|
57
|
+
/stream-react-native upgrade stream-chat-react-native to v9
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
It can scaffold a new Expo or React Native CLI app with the SDK wired up, add Stream to an app you already have, audit an existing integration, or migrate between SDK major versions (including from Sendbird). Works with Claude Code, Cursor, Codex, and any other agent that reads the universal `.agents` location.
|
|
61
|
+
|
|
62
|
+
Contributing to this repository with an agent instead? See [AGENTS.md](./AGENTS.md) for repository structure, commands, and conventions.
|
|
63
|
+
|
|
42
64
|
## Free for Makers
|
|
43
65
|
|
|
44
66
|
Stream is free for most side and hobby projects. To qualify your project/company needs to have < 5 team members and < $10k in monthly revenue.
|
package/lib/module/version.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stream-chat-react-native-core",
|
|
3
3
|
"description": "The official React Native and Expo components for Stream Chat, a service for building chat applications",
|
|
4
|
-
"version": "9.7.3-beta.
|
|
4
|
+
"version": "9.7.3-beta.2",
|
|
5
5
|
"author": {
|
|
6
6
|
"company": "Stream.io Inc",
|
|
7
7
|
"name": "Stream.io Inc"
|
package/src/version.json
CHANGED