@mobileai/react-native 0.9.13 → 0.9.15
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 +43 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# AI Support That Resolves — Not Deflects
|
|
2
2
|
|
|
3
|
-
> **Drop in one React Native component and your app gets AI support that answers questions, navigates users to the right screen, fills forms, and resolves issues end-to-end — with live human backup when needed. No
|
|
3
|
+
> **Drop in one React Native component and your app gets AI support that answers questions, navigates users to the right screen, fills forms, and resolves issues end-to-end — with live human backup when needed. No custom API connectors required — the app UI is already the integration.**
|
|
4
4
|
|
|
5
5
|
**Two names, one package — pick whichever you prefer:**
|
|
6
6
|
|
|
@@ -16,14 +16,6 @@ npm install react-native-agentic-ai
|
|
|
16
16
|
<img src="./assets/demo.gif" alt="AI Support Agent navigating the app and resolving user issues end-to-end" width="350" />
|
|
17
17
|
</p>
|
|
18
18
|
|
|
19
|
-
### 🧪 AI-Powered Testing — Test Your App in English, Not Code
|
|
20
|
-
|
|
21
|
-
<p align="center">
|
|
22
|
-
<img src="./assets/mcp-testing.gif" alt="AI-Powered Testing via Model Context Protocol — finding bugs in React Native app without test code" width="700" />
|
|
23
|
-
</p>
|
|
24
|
-
|
|
25
|
-
> *Google Antigravity running 5 checks on the emulator and finding 5 real bugs — zero test code, zero selectors, just English.*
|
|
26
|
-
|
|
27
19
|
---
|
|
28
20
|
|
|
29
21
|
[](https://www.npmjs.com/package/@mobileai/react-native)
|
|
@@ -208,10 +200,52 @@ Full bidirectional voice AI powered by the Gemini Live API. Users speak their su
|
|
|
208
200
|
|
|
209
201
|
> 💡 **Speech-to-text in text mode:** Install `expo-speech-recognition` for a mic button in the chat bar — letting users dictate instead of typing. Separate from voice mode.
|
|
210
202
|
|
|
203
|
+
#### 🍎 Siri & Spotlight — Trigger Actions Hands-Free (iOS 16+)
|
|
204
|
+
|
|
205
|
+
Every `useAction` you register automatically becomes a **Siri shortcut** and **Spotlight action**. One config plugin added at build time — no Swift required — and users can say:
|
|
206
|
+
|
|
207
|
+
> *"Hey Siri, track my order in MyApp"*
|
|
208
|
+
> *"Hey Siri, checkout in MyApp"*
|
|
209
|
+
> *"Hey Siri, cancel my last order in MyApp"*
|
|
210
|
+
|
|
211
|
+
<details>
|
|
212
|
+
<summary><b>Setup — Expo Config Plugin</b></summary>
|
|
213
|
+
|
|
214
|
+
```json
|
|
215
|
+
// app.json
|
|
216
|
+
{
|
|
217
|
+
"expo": {
|
|
218
|
+
"plugins": [
|
|
219
|
+
["@mobileai/react-native/withAppIntents", {
|
|
220
|
+
"scanDirectory": "src",
|
|
221
|
+
"appScheme": "myapp"
|
|
222
|
+
}]
|
|
223
|
+
]
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
```
|
|
227
|
+
|
|
228
|
+
After `npx expo prebuild`, every registered `useAction` is available in Siri and Spotlight automatically.
|
|
229
|
+
|
|
230
|
+
**Or generate manually:**
|
|
231
|
+
|
|
232
|
+
```bash
|
|
233
|
+
# Scan useAction calls → intent-manifest.json
|
|
234
|
+
npx @mobileai/react-native generate-intents src
|
|
235
|
+
|
|
236
|
+
# Generate Swift AppIntents code
|
|
237
|
+
npx @mobileai/react-native generate-swift intent-manifest.json myapp
|
|
238
|
+
```
|
|
239
|
+
|
|
240
|
+
</details>
|
|
241
|
+
|
|
242
|
+
> ⚠️ iOS 16+ only. Android equivalent (Google Assistant App Actions) is on the roadmap.
|
|
243
|
+
|
|
211
244
|
---
|
|
212
245
|
|
|
213
246
|
### Supercharge Your Dev Workflow
|
|
214
247
|
|
|
248
|
+
|
|
215
249
|
#### 🔌 MCP Bridge — Test Your App in English, Not Code
|
|
216
250
|
|
|
217
251
|
Your app becomes MCP-compatible with one prop. Connect any AI — Antigravity, Claude Desktop, CI/CD pipelines — to remotely read and control the running app. Find bugs without writing a single test.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mobileai/react-native",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.15",
|
|
4
4
|
"description": "Build autonomous AI agents for React Native and Expo apps. Provides AI-native UI traversal, tool calling, and structured reasoning.",
|
|
5
5
|
"main": "./lib/module/index.js",
|
|
6
6
|
"source": "./src/index.ts",
|