react-native-agentic-ai 0.0.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 +23 -0
- package/package.json +22 -0
package/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# react-native-agentic-ai
|
|
2
|
+
|
|
3
|
+
> The AI Agent Runtime for React Native
|
|
4
|
+
|
|
5
|
+
Give Gemini (or any LLM) the ability to **see, understand, and control** your React Native app screens.
|
|
6
|
+
|
|
7
|
+
🚧 **Under active development** — first stable release coming soon.
|
|
8
|
+
|
|
9
|
+
## Concept
|
|
10
|
+
|
|
11
|
+
Instead of screenshot-based computer vision, `react-native-agentic-ai` builds a **Semantic Screen Graph** — a structured JSON representation of your app's interactive elements. This gives AI models a fast, precise, and secure "god view" of your app.
|
|
12
|
+
|
|
13
|
+
## Features (Coming Soon)
|
|
14
|
+
|
|
15
|
+
- 📱 **Screen Registration** — Declaratively expose screens to the AI agent
|
|
16
|
+
- 🎯 **Action System** — Built-in + custom actions (navigate, tap, type, scroll)
|
|
17
|
+
- 🤖 **Gemini Integration** — Native function calling support
|
|
18
|
+
- 🔒 **Safety Layer** — Confirmation dialogs, rate limiting, scope control
|
|
19
|
+
- 🌍 **i18n** — English & Arabic support
|
|
20
|
+
|
|
21
|
+
## License
|
|
22
|
+
|
|
23
|
+
MIT
|
package/package.json
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "react-native-agentic-ai",
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"description": "The AI Agent Runtime for React Native — give Gemini (or any LLM) the ability to see, understand, and control your app screens",
|
|
5
|
+
"main": "src/index.ts",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"react-native",
|
|
8
|
+
"ai",
|
|
9
|
+
"agent",
|
|
10
|
+
"gemini",
|
|
11
|
+
"llm",
|
|
12
|
+
"automation",
|
|
13
|
+
"screen-control",
|
|
14
|
+
"function-calling"
|
|
15
|
+
],
|
|
16
|
+
"author": "Mohamed Salah",
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "https://github.com/mohamedsalah/react-native-ai-agent"
|
|
21
|
+
}
|
|
22
|
+
}
|